/* ============================================================
   THE KITTEN CANNABIS COMPANY — "Midnight Dispensary" theme
   ============================================================ */

:root {
    --ink: #0e0b12;
    --ink-2: #120e18;
    --panel: #18121f;
    --panel-2: #201827;
    --cream: #f5efe6;
    --muted: #a79f92;
    --leaf: #6fbf73;
    --leaf-deep: #3e7c46;
    --whisker: #e8c37b;
    --danger: #ff6b6b;
    --radius: 16px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Inter", system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--ink);
    color: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
}

.container {
    width: min(1180px, 90%);
    margin-inline: auto;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

::selection {
    background: var(--leaf-deep);
    color: #fff;
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: none;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding: 18px 0;
    transition: background 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
    background: rgba(14, 11, 18, 0.85);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(111, 191, 115, 0.15);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.brand-mark {
    font-size: 1.6rem;
    filter: drop-shadow(0 0 8px rgba(232, 195, 123, .5));
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1;
}

.brand-text span {
    display: block;
    color: var(--leaf);
    font-size: 0.62rem;
    letter-spacing: 0.34em;
}

.main-nav {
    display: flex;
    gap: 26px;
}

.main-nav a {
    font-size: 0.95rem;
    color: var(--muted);
    transition: color 0.2s ease;
    position: relative;
}

.main-nav a:hover {
    color: var(--cream);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    width: 0;
    background: var(--leaf);
    transition: width 0.25s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-btn {
    position: relative;
    background: var(--panel);
    border: 1px solid rgba(167, 159, 146, 0.2);
    color: var(--cream);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.15rem;
    transition: transform 0.15s ease, border-color 0.2s ease;
}

.icon-btn:hover {
    border-color: var(--leaf);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--leaf-deep);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    min-width: 19px;
    height: 19px;
    padding: 0 4px;
    border-radius: 999px;
    display: grid;
    place-items: center;
}

.music-icon {
    font-size: 1.3rem;
}

.music-off .music-icon {
    opacity: 0.4;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("../assets/img/hero.jpg") center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.13);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 11, 18, 0.55) 0%, rgba(14, 11, 18, 0.72) 70%, var(--ink) 98%),
        radial-gradient(circle at 75% 80%, rgba(62, 124, 70, 0.25), transparent 55%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

@keyframes floatUp {
    0% {
        transform: translateY(20px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-120vh) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 140px 0 110px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--whisker);
    margin-bottom: 18px;
    border: 1px solid rgba(232, 195, 123, 0.35);
    padding: 6px 14px;
    border-radius: 999px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    font-weight: 900;
    line-height: 1.04;
    margin-bottom: 22px;
}

.hero-title em {
    font-style: italic;
    color: var(--leaf);
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 540px;
    margin-bottom: 34px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--leaf), var(--leaf-deep));
    color: #07130a;
    box-shadow: 0 10px 30px rgba(111, 191, 115, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 16px 40px rgba(111, 191, 115, 0.5);
}

.btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(245, 239, 230, 0.35);
}

.btn-ghost:hover {
    border-color: var(--leaf);
}

.btn.full {
    width: 100%;
}

.hero-stats {
    list-style: none;
    display: flex;
    gap: 44px;
    flex-wrap: wrap;
}

.hero-stats li {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--whisker);
}

.hero-stats span {
    font-size: 0.82rem;
    color: var(--muted);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 96px 0;
}

.section:nth-of-type(even) {
    background: var(--ink-2);
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.section-head h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-lead {
    color: var(--muted);
    font-size: 1.05rem;
}

/* ============================================================
   STORY
   ============================================================ */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.story-media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.story-media img {
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

.story-media figcaption {
    padding: 12px 18px;
    font-size: 0.84rem;
    color: var(--muted);
    background: var(--panel);
    font-style: italic;
}

.story-body p {
    margin-bottom: 18px;
    color: var(--muted);
}

.story-body strong {
    color: var(--cream);
}

.story-body em {
    color: var(--leaf);
    font-style: italic;
}

.story-body blockquote {
    border-left: 3px solid var(--leaf);
    padding: 6px 0 6px 22px;
    margin-top: 26px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--cream);
}

.story-body cite {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    font-style: normal;
    color: var(--whisker);
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--panel);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(167, 159, 146, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(111, 191, 115, 0.4);
}

.product-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(14, 11, 18, 0.8);
    backdrop-filter: blur(4px);
    color: var(--whisker);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid rgba(232, 195, 123, 0.35);
}

.product-sale {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--danger);
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 999px;
}

.product-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.product-cat {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--leaf);
}

.product-rating {
    color: var(--whisker);
    font-size: 0.9rem;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-blurb {
    color: var(--muted);
    font-size: 0.94rem;
    margin-bottom: 18px;
    flex: 1;
}

.product-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--leaf);
}

.product-price .was {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 0.95rem;
    margin-right: 6px;
    font-weight: 400;
}

.add-btn {
    background: var(--leaf-deep);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s ease, transform 0.15s ease;
}

.add-btn:hover {
    background: var(--leaf);
    color: #07130a;
    transform: translateY(-2px);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    counter-reset: step;
}

.step {
    background: var(--panel);
    border-radius: var(--radius);
    padding: 34px 28px;
    border: 1px solid rgba(167, 159, 146, 0.12);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(111, 191, 115, 0.12), transparent 70%);
}

.step-num {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--leaf);
    display: block;
    margin-bottom: 16px;
}

.step h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.step p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    background: var(--panel);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid rgba(167, 159, 146, 0.12);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 195, 123, 0.4);
}

.review-card .stars {
    color: var(--whisker);
    letter-spacing: 3px;
}

.review-card p {
    color: var(--cream);
    font-size: 1rem;
    font-style: italic;
    flex: 1;
}

.review-card footer {
    color: var(--muted);
    font-size: 0.85rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--panel);
    border-radius: 14px;
    border: 1px solid rgba(167, 159, 146, 0.12);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item[open] {
    border-color: rgba(111, 191, 115, 0.4);
}

.faq-item summary {
    cursor: pointer;
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1.02rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--leaf);
    transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 24px 20px;
    color: var(--muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 44px;
    align-items: start;
}

.order-form {
    background: var(--panel);
    border-radius: var(--radius);
    padding: 34px;
    border: 1px solid rgba(167, 159, 146, 0.12);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.order-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-form label.full {
    grid-column: 1 / -1;
}

.order-form span {
    font-size: 0.83rem;
    color: var(--muted);
    letter-spacing: 0.04em;
}

.order-form input,
.order-form select,
.order-form textarea {
    background: var(--ink);
    border: 1px solid rgba(167, 159, 146, 0.2);
    color: var(--cream);
    border-radius: 10px;
    padding: 13px 15px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    outline: none;
    border-color: var(--leaf);
}

.order-form .btn {
    grid-column: 1 / -1;
}

.form-status {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.9rem;
    color: var(--leaf);
    min-height: 1.2em;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.contact-info ul {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info li {
    color: var(--muted);
}

.contact-info strong {
    color: var(--cream);
}

.contact-media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-media img {
    aspect-ratio: 16/10;
    object-fit: cover;
    width: 100%;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #0a0810;
    border-top: 1px solid rgba(111, 191, 115, 0.15);
    padding: 64px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .brand-mark {
    font-size: 2rem;
}

.footer-brand p {
    color: var(--muted);
    margin-top: 12px;
    max-width: 240px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4,
.footer-news h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--muted);
    font-size: 0.93rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--leaf);
}

.footer-news p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.news-form {
    display: flex;
    gap: 10px;
}

.news-form input {
    flex: 1;
    background: var(--ink);
    border: 1px solid rgba(167, 159, 146, 0.2);
    color: var(--cream);
    border-radius: 999px;
    padding: 12px 18px;
    font-family: inherit;
}

.news-form input:focus {
    outline: none;
    border-color: var(--leaf);
}

.news-form .btn {
    padding: 12px 22px;
}

.footer-legal {
    border-top: 1px solid rgba(167, 159, 146, 0.12);
    padding-top: 26px;
    text-align: center;
}

.footer-legal p {
    color: var(--muted);
    font-size: 0.87rem;
}

.footer-legal .fine-print {
    font-size: 0.77rem;
    margin-top: 6px;
    opacity: 0.7;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-backdrop,
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(6, 4, 9, 0.66);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 150;
}

.cart-backdrop.show,
.modal-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 92vw);
    background: var(--ink-2);
    z-index: 151;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    transform: translateX(105%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    border-bottom: 1px solid rgba(167, 159, 146, 0.15);
}

.cart-head h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-empty {
    color: var(--muted);
    text-align: center;
    margin-top: 40px;
}

.cart-line {
    display: flex;
    gap: 14px;
    align-items: center;
    background: var(--panel);
    border-radius: 12px;
    padding: 12px;
}

.cart-line img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-line-info {
    flex: 1;
}

.cart-line-info .name {
    font-weight: 600;
    font-size: 0.95rem;
}

.cart-line-info .price {
    color: var(--leaf);
    font-size: 0.85rem;
}

.qty-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 1px solid rgba(167, 159, 146, 0.3);
    background: transparent;
    color: var(--cream);
    font-size: 1rem;
    line-height: 1;
}

.qty-btn:hover {
    border-color: var(--leaf);
}

.qty-val {
    min-width: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.1rem;
}

.remove-btn:hover {
    color: var(--danger);
}

.cart-foot {
    padding: 20px 24px;
    border-top: 1px solid rgba(167, 159, 146, 0.15);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
}

.cart-total strong {
    font-family: var(--font-display);
    color: var(--leaf);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%) scale(0.97);
    width: min(560px, 92vw);
    max-height: 88vh;
    overflow-y: auto;
    background: var(--ink-2);
    border-radius: var(--radius);
    border: 1px solid rgba(111, 191, 115, 0.2);
    z-index: 152;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: var(--shadow);
}

.modal.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
}

.modal-content img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.modal-body {
    padding: 26px;
}

.modal-body .product-cat {
    margin-bottom: 6px;
}

.modal-body h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.modal-body .desc {
    color: var(--muted);
    margin-bottom: 18px;
}

.modal-body .modal-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.modal-body .product-price {
    font-size: 1.6rem;
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translate(-50%, 140%);
    background: var(--leaf-deep);
    color: #fff;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: var(--shadow);
    z-index: 250;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.toast.show {
    transform: translate(-50%, 0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {

    .product-grid,
    .review-grid,
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 820px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 80vw);
        background: var(--ink-2);
        flex-direction: column;
        padding: 100px 30px;
        gap: 22px;
        transform: translateX(105%);
        transition: transform 0.3s ease;
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 620px) {

    .product-grid,
    .review-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .order-form {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 24px;
    }

    .section {
        padding: 68px 0;
    }
}