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

    :root {
      --rose:        #c9626a;
      --rose-light:  #e8a0a5;
      --rose-pale:   #fdf0f1;
      --gold:        #c9a96e;
      --gold-light:  #e8d5b0;
      --cream:       #faf6f0;
      --ink:         #2a1f1f;
      --ink-soft:    #5c4848;
      --white:       #ffffff;
      --border:      rgba(201,98,106,0.18);
      --shadow:      0 8px 40px rgba(42,31,31,0.10);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--ink);
      overflow-x: hidden;
    }

    /* ─── SCROLLBAR ─── */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--cream); }
    ::-webkit-scrollbar-thumb { background: var(--rose-light); border-radius: 10px; }

    /* ─── ANNOUNCEMENT BAR ─── */
    .announcement {
      background: var(--rose);
      color: #fff;
      text-align: center;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 9px 20px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
    }

    /* ─── NAVBAR ─── */
    nav {
      position: sticky; top: 0; z-index: 1000;
      background: rgba(250,246,240,0.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      padding: 0 5vw;
      display: flex; align-items: center; justify-content: space-between;
      height: 68px;
      transition: box-shadow .3s;
    }
    nav.scrolled { box-shadow: 0 4px 30px rgba(42,31,31,0.08); }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px; font-weight: 600; letter-spacing: 3px;
      color: var(--rose); text-decoration: none;
    }
    .nav-logo span { color: var(--gold); }

    .nav-links {
      display: flex; gap: 36px; list-style: none;
    }
    .nav-links a {
      font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--ink-soft); text-decoration: none; font-weight: 500;
      position: relative; padding-bottom: 3px;
      transition: color .2s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 0; height: 1.5px; background: var(--rose);
      transition: width .3s;
    }
    .nav-links a:hover { color: var(--rose); }
    .nav-links a:hover::after { width: 100%; }

    .nav-icons { display: flex; gap: 20px; align-items: center; }
    .nav-icons a {
      color: var(--ink-soft); font-size: 17px;
      text-decoration: none; transition: color .2s;
      position: relative;
    }
    .nav-icons a:hover { color: var(--rose); }
    .cart-badge {
      position: absolute; top: -7px; right: -9px;
      background: var(--rose); color: #fff;
      font-size: 9px; width: 16px; height: 16px;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-weight: 700;
    }

    /* hamburger */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

    /* ─── HERO ─── */
    .hero {
      min-height: 92vh;
      display: grid; grid-template-columns: 1fr 1fr;
      overflow: hidden;
    }

    .hero-left {
      display: flex; flex-direction: column;
      justify-content: center; padding: 80px 6vw 80px 8vw;
      position: relative; z-index: 2;
    }

    .hero-tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
      color: var(--rose); font-weight: 500; margin-bottom: 24px;
      opacity: 0; animation: fadeUp .8s .2s forwards;
    }
    .hero-tag::before {
      content: ''; width: 30px; height: 1px; background: var(--rose);
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(44px, 5.5vw, 80px);
      font-weight: 400; line-height: 1.1;
      color: var(--ink); margin-bottom: 24px;
      opacity: 0; animation: fadeUp .8s .4s forwards;
    }
    .hero-title em {
      font-style: italic; color: var(--rose);
    }

    .hero-subtitle {
      font-size: 15px; line-height: 1.8; color: var(--ink-soft);
      max-width: 420px; margin-bottom: 44px;
      opacity: 0; animation: fadeUp .8s .6s forwards;
    }

    .hero-ctas {
      display: flex; gap: 16px; flex-wrap: wrap;
      opacity: 0; animation: fadeUp .8s .8s forwards;
    }
    .btn-primary {
      background: var(--rose); color: #fff;
      padding: 14px 34px; border: none; cursor: pointer;
      font-family: 'DM Sans', sans-serif; font-size: 12px;
      letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
      text-decoration: none; display: inline-block;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
      transition: background .25s, transform .2s;
    }
    .btn-primary:hover { background: #b8555d; transform: translateY(-2px); }

    .btn-outline {
      background: transparent; color: var(--ink);
      padding: 13px 34px;
      border: 1.5px solid var(--ink); cursor: pointer;
      font-family: 'DM Sans', sans-serif; font-size: 12px;
      letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
      text-decoration: none; display: inline-block;
      transition: border-color .25s, color .25s, transform .2s;
    }
    .btn-outline:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px); }

    .hero-stats {
      display: flex; gap: 40px; margin-top: 56px;
      opacity: 0; animation: fadeUp .8s 1s forwards;
    }
    .hero-stat span {
      display: block; font-family: 'Cormorant Garamond', serif;
      font-size: 36px; font-weight: 600; color: var(--rose);
    }
    .hero-stat p { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-soft); margin-top: 2px; }

    .hero-right {
      position: relative; overflow: hidden;
    }
    .hero-slides { display: flex; height: 100%; transition: transform .7s cubic-bezier(.77,0,.18,1); }
    .hero-slide {
      min-width: 100%; height: 100%;
      background-size: cover; background-position: center top;
      position: relative;
    }
    .hero-slide::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(250,246,240,.25) 0%, transparent 60%);
    }

    .hero-dots {
      position: absolute; bottom: 28px; right: 28px;
      display: flex; gap: 8px; z-index: 10;
    }
    .hero-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: rgba(255,255,255,.5); cursor: pointer;
      transition: background .3s, transform .3s;
    }
    .hero-dot.active { background: #fff; transform: scale(1.4); }

    /* decorative element */
    .hero-deco {
      position: absolute; top: 40px; left: -30px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 180px; font-weight: 300; line-height: 1;
      color: rgba(201,98,106,.06); letter-spacing: -10px;
      pointer-events: none; z-index: 1;
      user-select: none;
    }

    /* ─── SECTION COMMON ─── */
    .section { padding: 90px 8vw; }
    .section-label {
      font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
      color: var(--rose); font-weight: 600; margin-bottom: 10px;
      display: flex; align-items: center; gap: 10px;
    }
    .section-label::after { content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--rose-light); }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(32px, 4vw, 54px); font-weight: 400;
      line-height: 1.2; color: var(--ink); margin-bottom: 50px;
    }
    .section-title em { font-style: italic; color: var(--rose); }

    /* ─── MARQUEE ─── */
    .marquee-wrap {
      background: var(--rose); overflow: hidden;
      padding: 14px 0;
    }
    .marquee-track {
      display: flex; gap: 0;
      animation: marquee 22s linear infinite;
      white-space: nowrap;
    }
    .marquee-item {
      display: inline-flex; align-items: center; gap: 20px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px; font-weight: 300; letter-spacing: 3px;
      color: rgba(255,255,255,.9); padding: 0 30px;
    }
    .marquee-item i { font-size: 10px; color: var(--gold-light); }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ─── CATEGORIES ─── */
    .cat-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 14px; height: 540px;
    }
    .cat-card {
      position: relative; overflow: hidden; cursor: pointer;
      border-radius: 4px;
    }
    .cat-card:first-child { grid-row: 1 / 3; }
    .cat-card img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .6s cubic-bezier(.25,.46,.45,.94);
    }
    .cat-card:hover img { transform: scale(1.07); }
    .cat-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(42,31,31,.65) 0%, transparent 55%);
      display: flex; flex-direction: column;
      justify-content: flex-end; padding: 22px 20px;
    }
    .cat-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px; font-weight: 400; color: #fff;
      letter-spacing: 1px; margin-bottom: 4px;
    }
    .cat-count { font-size: 11px; letter-spacing: 1.5px; color: rgba(255,255,255,.7); text-transform: uppercase; }
    .cat-arrow {
      position: absolute; top: 16px; right: 16px;
      width: 34px; height: 34px; border-radius: 50%;
      background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 13px;
      opacity: 0; transform: translateY(-6px);
      transition: opacity .3s, transform .3s;
    }
    .cat-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }

    /* ─── NEW ARRIVALS ─── */
    .arrivals-section { background: var(--white); }
    .arrivals-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 50px;
    }
    .view-all {
      font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
      color: var(--rose); text-decoration: none; font-weight: 500;
      border-bottom: 1px solid var(--rose-light);
      padding-bottom: 2px; transition: border-color .2s;
    }
    .view-all:hover { border-color: var(--rose); }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .product-card {
      cursor: pointer; position: relative;
      transition: transform .3s;
    }
    .product-card:hover { transform: translateY(-5px); }

    .prod-img {
      position: relative; width: 100%;
      padding-bottom: 130%; overflow: hidden;
      border-radius: 4px;
    }
    .prod-img-wrap {
      position: absolute; inset: 0;
    }
    .prod-img-wrap img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover;
      transition: opacity .4s ease;
    }
    .prod-img-wrap .img1 { opacity: 1; z-index: 2; }
    .prod-img-wrap .img2 { opacity: 0; z-index: 1; }
    .product-card:hover .img1 { opacity: 0; }
    .product-card:hover .img2 { opacity: 1; }

    .discount-badge {
      position: absolute; top: 12px; left: 12px;
      background: var(--rose); color: #fff;
      font-size: 10px; font-weight: 700; letter-spacing: 1px;
      padding: 3px 8px; z-index: 10; border-radius: 2px;
    }

    .fav-btn {
      position: absolute; top: 12px; right: 12px; 
      width: 34px; height: 34px; border-radius: 50%;
      background: rgba(255,255,255,.85); backdrop-filter: blur(6px);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; color: #aaa; cursor: pointer;
      z-index: 10; transition: color .2s, background .2s;
      opacity: 0; transform: scale(.8);
      transition: opacity .3s, transform .3s, color .2s;
    }
    .product-card:hover .fav-btn { opacity: 1; transform: scale(1); }
    .fav-btn.active, .fav-btn:hover { color: var(--rose); }

    .quick-view {
      position: absolute; bottom: 12px; left: 12px; right: 12px;
      background: rgba(42,31,31,.82); backdrop-filter: blur(8px);
      color: #fff; text-align: center;
      font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
      padding: 10px; cursor: pointer; font-weight: 500;
      opacity: 0; transform: translateY(8px);
      transition: opacity .3s, transform .3s;
      z-index: 10; border-radius: 2px;
    }
    .product-card:hover .quick-view { opacity: 1; transform: translateY(0); }

    .prod-body { padding: 14px 2px 0; }
    .prod-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px; font-weight: 400;
      color: var(--ink); margin-bottom: 5px; line-height: 1.3;
    }
    .prod-price {
      font-size: 14px; font-weight: 500; color: var(--rose);
      display: flex; align-items: center; gap: 7px; margin-bottom: 6px;
    }
    .prod-price s { color: #bbb; font-size: 12px; font-weight: 400; }
    .rating { font-size: 11px; color: var(--gold); letter-spacing: 1px; }
    .action-buttons {
      display: flex; gap: 8px; margin-top: 10px;
    }
    .add-cart, .buy-now {
      flex: 1; padding: 9px 0; border: none; cursor: pointer;
      font-family: 'DM Sans', sans-serif; font-size: 11px;
      letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
      border-radius: 2px; transition: background .2s, transform .1s;
    }
    .add-cart {
      background: var(--rose-pale); color: var(--rose);
      border: 1px solid var(--rose-light);
    }
    .add-cart:hover { background: var(--rose); color: #fff; }
    .buy-now { background: var(--rose); color: #fff; }
    .buy-now:hover { background: #b8555d; }

    /* ─── PROMO BANNER ─── */
    .promo-banner {
      display: grid; grid-template-columns: 1fr 1fr;
      min-height: 420px; overflow: hidden;
    }
    .promo-img {
      position: relative; overflow: hidden;
    }
    .promo-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .6s ease;
    }
    .promo-img:hover img { transform: scale(1.04); }

    .promo-content {
      background: var(--rose);
      display: flex; flex-direction: column;
      justify-content: center; padding: 60px 7vw;
    }
    .promo-tag {
      font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
      color: rgba(255,255,255,.7); margin-bottom: 16px; font-weight: 500;
    }
    .promo-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 3.5vw, 54px); font-weight: 300;
      color: #fff; line-height: 1.15; margin-bottom: 18px;
    }
    .promo-title strong { font-weight: 600; display: block; }
    .promo-text { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 34px; max-width: 360px; }
    .btn-white {
      background: #fff; color: var(--rose);
      padding: 14px 34px; border: none; cursor: pointer;
      font-family: 'DM Sans', sans-serif; font-size: 12px;
      letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
      text-decoration: none; display: inline-block;
      transition: background .2s, transform .2s;
    }
    .btn-white:hover { background: var(--cream); transform: translateY(-2px); }

    /* ─── FEATURES STRIP ─── */
    .features {
      background: var(--ink);
      display: grid; grid-template-columns: repeat(4, 1fr);
      padding: 44px 8vw;
    }
    .feature {
      text-align: center; padding: 10px 20px;
      border-right: 1px solid rgba(255,255,255,.1);
    }
    .feature:last-child { border-right: none; }
    .feature i {
      font-size: 22px; color: var(--gold-light); margin-bottom: 12px;
    }
    .feature h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px; font-weight: 400; color: #fff; margin-bottom: 5px;
    }
    .feature p { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.5; }

    /* ─── TESTIMONIALS ─── */
    .testimonials-section { background: var(--rose-pale); }
    .test-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .test-card {
      background: #fff; padding: 32px 28px;
      border-radius: 4px; border: 1px solid var(--border);
      position: relative;
    }
    .test-card::before {
      content: '\201C';
      font-family: 'Cormorant Garamond', serif;
      font-size: 80px; line-height: 1;
      color: var(--rose-light); position: absolute;
      top: 10px; left: 20px;
    }
    .test-text {
      font-size: 14px; line-height: 1.8; color: var(--ink-soft);
      padding-top: 36px; margin-bottom: 20px;
    }
    .test-author { display: flex; align-items: center; gap: 12px; }
    .test-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      object-fit: cover; border: 2px solid var(--rose-light);
    }
    .test-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px; font-weight: 600; color: var(--ink);
    }
    .test-loc { font-size: 11px; color: var(--ink-soft); letter-spacing: 1px; }

    /* ─── INSTAGRAM ─── */
    .insta-section { background: var(--white); }
    .insta-grid {
      display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
    }
    .insta-item {
      position: relative; overflow: hidden;
      padding-bottom: 100%; cursor: pointer;
    }
    .insta-item img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .5s ease;
    }
    .insta-item:hover img { transform: scale(1.08); }
    .insta-overlay {
      position: absolute; inset: 0;
      background: rgba(201,98,106,.6);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: opacity .3s;
    }
    .insta-item:hover .insta-overlay { opacity: 1; }
    .insta-overlay i { font-size: 26px; color: #fff; }

    /* ─── NEWSLETTER ─── */
    .newsletter {
      background: var(--ink);
      padding: 80px 8vw; text-align: center;
    }
    .newsletter h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(30px, 3.5vw, 50px); font-weight: 300;
      color: #fff; margin-bottom: 12px;
    }
    .newsletter h2 em { font-style: italic; color: var(--gold-light); }
    .newsletter p {
      font-size: 14px; color: rgba(255,255,255,.6);
      margin-bottom: 36px;
    }
    .news-form {
      display: flex; max-width: 480px; margin: 0 auto; gap: 0;
    }
    .news-form input {
      flex: 1; padding: 14px 20px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.15);
      border-right: none; color: #fff; font-size: 13px;
      font-family: 'DM Sans', sans-serif;
      outline: none; transition: border-color .2s;
    }
    .news-form input::placeholder { color: rgba(255,255,255,.35); }
    .news-form input:focus { border-color: var(--rose-light); }
    .news-form button {
      background: var(--rose); color: #fff;
      padding: 14px 28px; border: none; cursor: pointer;
      font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
      font-family: 'DM Sans', sans-serif; font-weight: 600;
      transition: background .2s;
    }
    .news-form button:hover { background: #b8555d; }

    /* ─── FOOTER ─── */
    footer {
      background: #1a1212; padding: 70px 8vw 30px;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px; margin-bottom: 50px;
    }
    .footer-brand .logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px; font-weight: 600; letter-spacing: 3px;
      color: var(--rose); margin-bottom: 14px; display: block;
    }
    .footer-brand .logo span { color: var(--gold); }
    .footer-brand p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 22px; }
    .social-links { display: flex; gap: 12px; }
    .social-links a {
      width: 36px; height: 36px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,.15);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.5); font-size: 14px;
      text-decoration: none; transition: border-color .2s, color .2s;
    }
    .social-links a:hover { border-color: var(--rose); color: var(--rose); }

    .footer-col h5 {
      font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
      color: rgba(255,255,255,.4); margin-bottom: 20px; font-weight: 600;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul a {
      font-size: 13px; color: rgba(255,255,255,.55);
      text-decoration: none; transition: color .2s;
    }
    .footer-col ul a:hover { color: var(--rose-light); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 12px; color: rgba(255,255,255,.3);
    }

    /* ─── TOAST ─── */
    #toast {
      position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px);
      background: var(--ink); color: #fff;
      padding: 12px 28px; border-radius: 100px;
      font-size: 13px; z-index: 9999;
      transition: transform .4s cubic-bezier(.34,1.56,.64,1);
      pointer-events: none;
      border-left: 3px solid var(--rose);
    }
    #toast.show { transform: translateX(-50%) translateY(0); }

    /* ─── MOBILE DRAWER (NEW) ─── */
    .drawer-overlay {
      position: fixed; inset: 0;
      background: rgba(42,31,31,.5);
      z-index: 8000;
      opacity: 0; pointer-events: none;
      transition: opacity .35s ease;
    }
    .drawer-overlay.open { opacity: 1; pointer-events: all; }

    .mobile-drawer {
      position: fixed; top: 0; left: -100%;
      width: 80vw; max-width: 320px;
      height: 100vh;
      background: var(--cream);
      z-index: 9000;
      display: flex; flex-direction: column;
      transition: left .35s cubic-bezier(.77,0,.18,1);
      box-shadow: 4px 0 30px rgba(42,31,31,.15);
    }
    .mobile-drawer.open { left: 0; }

    .drawer-header {
      display: flex; align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
      border-bottom: 1px solid var(--border);
      background: var(--white);
      flex-shrink: 0;
    }
    .drawer-header img {
      height: 36px; object-fit: contain;
    }
    .drawer-header i {
      font-size: 18px; color: var(--ink-soft);
      cursor: pointer; padding: 4px;
      transition: color .2s;
    }
    .drawer-header i:hover { color: var(--rose); }

    .drawer-body {
      flex: 1; overflow-y: auto;
      padding-bottom: 20px;
    }
    .drawer-body::-webkit-scrollbar { width: 3px; }
    .drawer-body::-webkit-scrollbar-thumb { background: var(--rose-light); border-radius: 10px; }

    /* User section */
    .drawer-user { padding: 18px 20px; }

    .drawer-login-btn {
      display: flex; align-items: center; gap: 12px;
      background: var(--rose); color: #fff;
      padding: 12px 18px; border-radius: 6px;
      text-decoration: none; font-size: 14px; font-weight: 500;
      transition: background .2s;
    }
    .drawer-login-btn:hover { background: #b8555d; }
    .drawer-login-btn i { font-size: 20px; }

    .drawer-profile { }
    .drawer-profile-link {
      display: flex; align-items: center; gap: 12px;
      text-decoration: none; color: var(--ink);
      padding: 10px 0;
    }
    .drawer-profile-link i { font-size: 32px; color: var(--rose); }
    .drawer-profile-link strong { display: block; font-size: 15px; color: var(--ink); }
    .drawer-profile-link small { font-size: 12px; color: var(--ink-soft); }

    /* Divider */
    .drawer-divider {
      height: 1px; background: var(--border);
      margin: 4px 0;
    }

    /* Links */
    .mobile-drawer .drawer-links {
      list-style: none; padding: 8px 0;
    }
    .mobile-drawer .drawer-links li a {
      display: flex; align-items: center; gap: 14px;
      padding: 13px 20px;
      font-size: 14px; color: var(--ink-soft);
      text-decoration: none; font-weight: 400;
      transition: background .2s, color .2s;
    }
    .mobile-drawer .drawer-links li a i {
      width: 18px; text-align: center;
      font-size: 14px; color: var(--rose);
    }
    .mobile-drawer .drawer-links li a:hover {
      background: var(--rose-pale);
      color: var(--rose);
    }

    /* Extra links */
    .drawer-extra {
      padding: 8px 0;
    }
    .drawer-extra a {
      display: flex; align-items: center; gap: 14px;
      padding: 12px 20px;
      font-size: 13px; color: var(--ink-soft);
      text-decoration: none;
      transition: background .2s, color .2s;
    }
    .drawer-extra a i {
      width: 18px; text-align: center;
      font-size: 13px; color: var(--rose-light);
    }
    .drawer-extra a:hover {
      background: var(--rose-pale); color: var(--rose);
    }
    .drawer-extra a.logout-link {
      color: #c0392b;
    }
    .drawer-extra a.logout-link i { color: #c0392b; }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Scroll reveal */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1100px) {
      .cat-grid { grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto; height: auto; }
      .cat-card:first-child { grid-row: auto; }
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .features { grid-template-columns: repeat(2, 1fr); }
      .feature:nth-child(2) { border-right: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-right { height: 60vw; }
      .hero-left { padding: 50px 6vw; order: 2; }
      .hero-right { order: 1; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .cat-grid { grid-template-columns: 1fr 1fr; height: auto; }
      .promo-banner { grid-template-columns: 1fr; }
      .promo-img { height: 280px; }
      .test-grid { grid-template-columns: 1fr; }
      .insta-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
      .hero-stats { gap: 24px; }
      .news-form { flex-direction: column; }
      .news-form input { border-right: 1px solid rgba(255,255,255,.15); }
    }
    @media (max-width: 480px) {
      .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .insta-grid { grid-template-columns: repeat(2, 1fr); }
      .features { grid-template-columns: 1fr; }
      .feature { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
    }
