 :root{
    --cream:#FBF7F0;
    --cream-deep:#F3ECDF;
    --ink:#1F2430;
    --ink-soft:#4B5060;
    --gold:#C79A3C;
    --gold-deep:#A87F2C;
    --line:#E7DFCE;
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;overflow-x:hidden;}
  html,body{margin:0;padding:0;}
  body{
    font-family:'Inter',sans-serif;
    color:var(--ink);
    background:var(--cream);
    overflow-x:hidden;
    max-width:100vw;
  }
  body.no-scroll{overflow:hidden;}
  a{text-decoration:none;color:inherit;}
  ul{list-style:none;margin:0;padding:0;}
  img{max-width:100%;display:block;}
  button{font-family:inherit;}

  /* ================= SUB NAVBAR ================= */
  .sub-nav{background:var(--ink);color:#D9D4C7;font-size:0.78rem;letter-spacing:0.02em;}
  .sub-nav-inner{
    max-width:1320px;margin:0 auto;padding:0.55rem 2rem;
    display:flex;align-items:center;justify-content:space-between;gap:1rem;
  }
  .sub-nav-location{display:flex;align-items:center;gap:0.5rem;min-width:0;}
  .sub-nav-location i{font-size:14px;line-height:1;flex-shrink:0;color:var(--gold);}
  .sub-nav-location span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}

  .sub-nav-socials{display:flex;align-items:center;gap:0.55rem;flex-shrink:0;}
  .sub-nav-socials a{
    width:26px;height:26px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;color:#fff;
    box-shadow:0 2px 6px rgba(0,0,0,.28);
    transition:transform .22s ease, box-shadow .22s ease, filter .22s ease;
  }
  .sub-nav-socials a i{font-size:14px;line-height:1;}
  .sub-nav-socials a:hover{transform:translateY(-2px) scale(1.1);box-shadow:0 6px 14px rgba(0,0,0,.45);filter:brightness(1.08);}
  .sub-nav-socials a.ig{background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);}
  .sub-nav-socials a.fb{background:#1877F2;}
  .sub-nav-socials a.pin{background:#E60023;}
  .sub-nav-socials a.wa{background:#25D366;}

  /* ================= MAIN NAVBAR ================= */
  .navbar{background:var(--cream);border-bottom:1px solid var(--line);position:sticky;top:0;z-index:60;}
  .navbar-inner{
    max-width:1320px;margin:0 auto;padding:0.85rem 2rem;
    display:flex;align-items:center;justify-content:space-between;gap:1.5rem;
  }
  .brand{display:flex;align-items:center;gap:0.75rem;flex-shrink:0;min-width:0;}
  .brand-logo{width:135px;flex-shrink:0;object-fit:contain;transition:transform .3s ease;}
  .brand:hover .brand-logo{transform:rotate(-6deg) scale(1.05);}
  .brand-text{line-height:1.15;min-width:0;}
  .brand-text .name{
    font-family:'Playfair Display',serif;font-weight:700;font-size:1.12rem;
    letter-spacing:0.03em;color:var(--ink);white-space:nowrap;
  }
  .brand-text .tag{font-size:0.6rem;letter-spacing:0.24em;color:var(--ink-soft);font-weight:600;white-space:nowrap;}

  .nav-links{display:flex;align-items:center;gap:2rem;font-size:0.92rem;font-weight:500;}
  .nav-links a{position:relative;padding-bottom:6px;color:var(--ink-soft);transition:color .2s ease;white-space:nowrap;}
  .nav-links a:hover{color:var(--ink);}
  .nav-links a.active{color:var(--gold-deep);}
  .nav-links a.active::after{
    content:"";position:absolute;left:0;right:0;bottom:0;height:2px;
    background:var(--gold);border-radius:2px;
  }

  .navbar-actions{display:flex;align-items:center;gap:1.1rem;flex-shrink:0;}
  .icon-btn{
    display:flex;align-items:center;justify-content:center;width:22px;height:22px;
    color:var(--ink);cursor:pointer;transition:color .2s ease, transform .2s ease;
  }
  .icon-btn:hover{color:var(--gold-deep);transform:translateY(-1px);}
  .icon-btn i{font-size:20px;line-height:1;}

  .btn-cta{
    background:var(--gold);color:#fff;font-weight:600;font-size:0.88rem;
    padding:0.65rem 1.3rem;border-radius:6px;white-space:nowrap;
    transition:background .2s ease;
  }
  .btn-cta:hover{background:var(--gold-deep);}

  .menu-toggle{
    display:none;flex-direction:column;justify-content:center;gap:5px;
    width:40px;height:40px;cursor:pointer;background:none;border:none;padding:0;
    align-items:center;border-radius:8px;transition:background .2s ease;
  }
  .menu-toggle:hover{background:var(--cream-deep);}
  .menu-toggle span{
    display:block;width:23px;height:2px;background:var(--ink);border-radius:2px;
    transition:transform .35s cubic-bezier(.22,.61,.36,1), opacity .2s ease;
  }
  .menu-toggle.active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
  .menu-toggle.active span:nth-child(2){opacity:0;}
  .menu-toggle.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

  /* ================= SIDEBAR ================= */
  .sidebar-overlay{
    position:fixed;inset:0;background:rgba(18,14,9,0.55);
    -webkit-backdrop-filter:blur(3px);backdrop-filter:blur(3px);
    opacity:0;visibility:hidden;transition:opacity .35s ease, visibility .35s ease;
    z-index:100;
  }
  .sidebar-overlay.open{opacity:1;visibility:visible;}

  .sidebar{
    position:fixed;top:0;right:0;bottom:0;height:100dvh;
    width:min(88vw, 380px);background:var(--cream);z-index:101;
    transform:translateX(105%);transition:transform .42s cubic-bezier(.22,.61,.36,1);
    display:flex;flex-direction:column;box-shadow:-22px 0 60px rgba(0,0,0,.3);
    overflow-y:auto;overscroll-behavior:contain;-webkit-overflow-scrolling:touch;
  }
  .sidebar.open{transform:translateX(0);}

  .sidebar-head{
    display:flex;align-items:center;justify-content:space-between;gap:0.8rem;
    padding:1rem 1.1rem 1rem 1.3rem;border-bottom:1px solid var(--line);
    flex-shrink:0;position:sticky;top:0;background:var(--cream);z-index:2;
  }
  .sidebar-head .brand-logo{width:38px;height:38px;}
  .sidebar-head .brand-text .name{font-size:0.98rem;}
  .sidebar-head .brand-text .tag{font-size:0.55rem;}

  .sidebar-close{
    width:40px;height:40px;border-radius:50%;border:none;background:var(--gold);color:#fff;
    display:flex;align-items:center;justify-content:center;cursor:pointer;flex-shrink:0;
    box-shadow:0 4px 12px rgba(199,154,60,.4);
    transition:background .25s ease, transform .3s ease, box-shadow .25s ease;
    position:relative;z-index:3;
  }
  .sidebar-close:hover{background:var(--gold-deep);transform:rotate(90deg) scale(1.05);box-shadow:0 6px 18px rgba(199,154,60,.55);}
  .sidebar-close:active{transform:rotate(90deg) scale(0.95);}
  .sidebar-close i{font-size:18px;line-height:1;}

  .sidebar-nav{display:flex;flex-direction:column;padding:0.5rem 0;flex:0 0 auto;}
  .sidebar-nav a{
    display:flex;align-items:center;gap:0.85rem;padding:0.78rem 1.3rem;
    font-size:0.96rem;font-weight:600;color:var(--ink-soft);
    border-left:3px solid transparent;
    transition:color .22s ease, background .22s ease, padding-left .25s ease, border-color .22s ease;
  }
  .sidebar-nav a .idx{
    font-size:0.64rem;font-weight:700;letter-spacing:.1em;
    color:var(--gold-deep);opacity:.6;min-width:18px;
  }
  .sidebar-nav a:hover,.sidebar-nav a.active{
    color:var(--ink);background:var(--cream-deep);border-left-color:var(--gold);
    padding-left:1.55rem;
  }
  .sidebar-nav a.active .idx{opacity:1;}

  .sidebar.open .sidebar-nav a{animation:sideLinkIn .5s cubic-bezier(.22,.61,.36,1) both;}
  .sidebar.open .sidebar-nav a:nth-child(1){animation-delay:.06s;}
  .sidebar.open .sidebar-nav a:nth-child(2){animation-delay:.11s;}
  .sidebar.open .sidebar-nav a:nth-child(3){animation-delay:.16s;}
  .sidebar.open .sidebar-nav a:nth-child(4){animation-delay:.21s;}
  .sidebar.open .sidebar-nav a:nth-child(5){animation-delay:.26s;}
  .sidebar.open .sidebar-nav a:nth-child(6){animation-delay:.31s;}
  .sidebar.open .sidebar-nav a:nth-child(7){animation-delay:.36s;}

  @keyframes sideLinkIn{
    from{opacity:0;transform:translateX(26px);}
    to{opacity:1;transform:translateX(0);}
  }

  .sidebar-extra{
    padding:1.1rem 1.3rem 1.6rem;border-top:1px solid var(--line);
    background:var(--cream-deep);flex:0 0 auto;margin-top:auto;
  }
  .sidebar-cta{width:100%;justify-content:center;margin-bottom:1rem;font-size:0.9rem;padding:0.78rem 1.2rem;}
  .sidebar-contact{display:flex;flex-direction:column;gap:0.55rem;margin-bottom:1rem;}
  .sidebar-contact .row{
    display:flex;align-items:flex-start;gap:0.6rem;font-size:0.82rem;
    color:var(--ink-soft);line-height:1.4;
  }
  .sidebar-contact .row i{font-size:14px;line-height:1;flex-shrink:0;color:var(--gold-deep);margin-top:3px;}
  .sidebar-socials{display:flex;gap:0.5rem;}
  .sidebar-socials a{
    width:32px;height:32px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;color:#fff;
    box-shadow:0 3px 8px rgba(0,0,0,.18);transition:transform .22s ease;
  }
  .sidebar-socials a i{font-size:15px;line-height:1;}
  .sidebar-socials a:hover{transform:translateY(-3px) scale(1.08);}
  .sidebar-socials a.ig{background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);}
  .sidebar-socials a.fb{background:#1877F2;}
  .sidebar-socials a.pin{background:#E60023;}
  .sidebar-socials a.wa{background:#25D366;}

  /* ================= HERO ================= */
  .hero{position:relative;min-height:640px;display:flex;align-items:center;overflow:hidden;background:#0f0c08;}
  .hero-slides{position:absolute;inset:0;z-index:0;}
  .hero-slide{
    position:absolute;inset:0;background-size:cover;background-position:center;
    opacity:0;transform:scale(1.06);transition:opacity 1.1s ease;
    will-change:opacity, transform;
  }
  .hero-slide.active{opacity:1;animation:heroZoom 8s ease-out forwards;}
  @keyframes heroZoom{from{transform:scale(1.06);}to{transform:scale(1);}}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgb(0 0 0) 0%, rgb(20 16 10 / 76%) 32%, rgb(20 16 10 / 68%) 58%, rgb(20 16 10 / 32%) 78%, rgba(20, 16, 10, 0) 100%);
}
  .hero-inner{max-width:1320px;width:100%;margin:0 auto;padding:4rem 2rem;position:relative;z-index:2;}
  .hero-content{max-width:560px;color:#F7F3EA;}
  .eyebrow{
    display:flex;align-items:center;gap:0.8rem;font-size:0.78rem;
    font-weight:600;letter-spacing:0.18em;color:var(--gold);margin-bottom:1.4rem;
  }
  .eyebrow::after{content:"";height:1px;width:56px;background:var(--gold);opacity:0.7;flex-shrink:0;}
  .hero-content h1{
    font-family:'Playfair Display',serif;font-weight:600;
    font-size:clamp(2.2rem, 5vw, 3.6rem);line-height:1.1;
    margin:0 0 1.4rem 0;color:#FBF7F0;
  }
  .hero-content p{
    font-size:1.02rem;line-height:1.7;color:#E4DECF;
    margin:0 0 2.1rem 0;max-width:460px;
  }
  .hero-ctas{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:2.6rem;}
  .btn-primary{
    background:var(--gold);color:#fff;font-weight:600;font-size:0.94rem;
    padding:0.9rem 1.6rem;border-radius:6px;
    display:inline-flex;align-items:center;justify-content:center;gap:0.5rem;
    transition:background .2s ease, transform .2s ease;
  }
  .btn-primary:hover{background:var(--gold-deep); transform:translateY(-1px);}
  .btn-primary i{font-size:16px;line-height:1;}
  .btn-secondary{
    background:transparent;border:1.5px solid rgba(247,243,234,0.55);
    color:#F7F3EA;font-weight:600;font-size:0.94rem;padding:0.9rem 1.6rem;border-radius:6px;
    display:inline-flex;align-items:center;justify-content:center;
    transition:border-color .2s ease, background .2s ease;
  }
  .btn-secondary:hover{background:rgba(247,243,234,0.1); border-color:#F7F3EA;}

  .hero-trust{display:flex;flex-wrap:wrap;gap:1.6rem;font-size:0.82rem;color:#DCD5C4;font-weight:500;}
  .hero-trust span{display:flex;align-items:center;gap:0.5rem;}
  .hero-trust i{font-size:16px;line-height:1;color:var(--gold);flex-shrink:0;}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgb(255 255 255);
    border: 1.5px solid rgba(255,255,255,0.35);
    color: #ffb100;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    padding: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background .28s ease, border-color .28s ease, transform .28s ease, color .28s ease;
}
  .hero-nav i{font-size:20px;line-height:1;}
  .hero-nav:hover{background:var(--gold);border-color:var(--gold);color:#fff;transform:translateY(-50%) scale(1.08);}
  .hero-nav:active{transform:translateY(-50%) scale(0.96);}
  .hero-prev{left:1.5rem;}
  .hero-next{right:1.5rem;}

  .hero-dots{
    position:absolute;bottom:1.8rem;left:50%;transform:translateX(-50%);
    display:flex;gap:0.55rem;z-index:4;
  }
  .hero-dot{
    width:9px;height:9px;border-radius:50%;border:1.5px solid rgba(255,255,255,0.65);
    background:transparent;cursor:pointer;padding:0;
    transition:width .35s cubic-bezier(.22,.61,.36,1), border-radius .35s ease, background .25s ease, border-color .25s ease;
  }
  .hero-dot.active{width:30px;border-radius:6px;background:var(--gold);border-color:var(--gold);}

  /* ================= SECTION HEADINGS (shared) ================= */
  .cat-eyebrow{
    font-size:0.78rem;font-weight:700;letter-spacing:0.18em;
    color:var(--gold-deep);margin-bottom:0.7rem;
  }
  .cat-heading-row{display:flex;align-items:center;gap:1.2rem;margin-bottom:2.4rem;}
  .cat-heading-row h2{
    font-family:'Playfair Display',serif;font-weight:600;
    font-size:clamp(1.4rem, 2.9vw, 2.1rem);
    color:var(--ink);
    margin:0;
    line-height:1.2;
  }

  /* ================= CATEGORY SECTION ================= */
.categories {
    background: var(--cream);
    padding: 2.5rem 2rem 2rem;
}
  .categories-inner{max-width:1320px;margin:0 auto;}

  .cat-grid{display:grid;grid-template-columns:repeat(4, 1fr);gap:1.4rem;}
  .cat-card{
    position:relative;aspect-ratio:4/3;border-radius:10px;overflow:hidden;
    background-size:cover;background-position:center;
    display:flex;align-items:flex-end;isolation:isolate;
    transition:transform .3s ease, box-shadow .3s ease;
  }
  .cat-card::after{
    content:"";position:absolute;inset:0;z-index:1;
    background:linear-gradient(180deg, rgba(15,12,8,0) 45%, rgba(15,12,8,0.78) 100%);
  }
  .cat-card:hover{transform:translateY(-4px);box-shadow:0 14px 28px rgba(31,36,48,0.18);}
  .cat-card-label{
    position:relative;z-index:2;width:100%;
    display:flex;align-items:center;justify-content:space-between;gap:0.6rem;
    padding:0.95rem 1.1rem;color:#fff;
  }
  .cat-card-label span{font-family:'Playfair Display',serif;font-size:1.05rem;font-weight:600;}
  .cat-card-label i{font-size:16px;line-height:1;flex-shrink:0;color:#fff;transition:transform .25s ease;}
  .cat-card:hover .cat-card-label i{transform:translateX(4px);}

  /* ============================================================ */
  /* ================= POPULAR PICKS (SLIDER) =================== */
  /* ============================================================ */
  .picks{background:var(--cream-deep);padding:2.5rem 2rem 2rem;}
  .picks-inner{max-width:1320px;margin:0 auto;}
  .picks-head{
    display:flex;align-items:flex-end;justify-content:space-between;
    gap:1.2rem;margin-bottom:2.4rem;
  }
  .picks-head-left{min-width:0;}
  .picks-head-left .cat-heading-row{margin-bottom:0;}
  .view-all{
    display:flex;align-items:center;gap:0.45rem;font-size:0.92rem;font-weight:600;
    color:var(--ink);flex-shrink:0;padding-bottom:0.3rem;transition:color .2s ease;
  }
  .view-all i{font-size:15px;line-height:1;transition:transform .2s ease;}
  .view-all:hover{color:var(--gold-deep);}
  .view-all:hover i{transform:translateX(3px);}

  .picks-slider{position:relative;--pv:5;--gap:1.1rem;}
  .picks-viewport{
    overflow:hidden;
    padding:0.6rem 0.5rem;
    margin:-0.6rem -0.5rem;
  }
  .picks-track{
    display:flex;gap:var(--gap);position:relative;
    transition:transform .68s cubic-bezier(.22,.61,.36,1);
    will-change:transform;
  }
  .picks-track .product-card{
    flex:0 0 calc((100% - (var(--pv) - 1) * var(--gap)) / var(--pv));
    min-width:0;
  }

  .picks-nav{
    position:absolute;top:calc(50% - 1.4rem);transform:translateY(-50%);
    width:44px;height:44px;border-radius:50%;
    background:#fff;border:1px solid var(--line);color:var(--ink);
    display:flex;align-items:center;justify-content:center;
    cursor:pointer;z-index:6;padding:0;
    box-shadow:0 6px 18px rgba(31,36,48,.14);
    transition:background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  }
  .picks-nav i{font-size:18px;line-height:1;}
  .picks-nav:hover{background:var(--gold);color:#fff;border-color:var(--gold);}
  .picks-nav:active{transform:translateY(-50%) scale(0.94);}
  .picks-prev{left:-1.1rem;}
  .picks-next{right:-1.1rem;}

  .picks-dots{display:flex;justify-content:center;gap:0.5rem;margin-top:1.7rem;}
  .picks-dot{
    width:9px;height:9px;border-radius:50%;
    border:1.5px solid var(--gold);background:transparent;
    padding:0;cursor:pointer;
    transition:width .35s cubic-bezier(.22,.61,.36,1), border-radius .35s ease, background .25s ease;
  }
  .picks-dot.active{width:26px;border-radius:5px;background:var(--gold);}

  /* ---------- Product card ---------- */
  .product-card{
    background:#fff;border-radius:10px;overflow:hidden;border:1px solid var(--line);
    display:flex;flex-direction:column;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .product-card:hover{transform:translateY(-4px);box-shadow:0 14px 26px rgba(31,36,48,0.12);}
  .product-media{aspect-ratio:1/1;background-size:cover;background-position:center;}
  .product-body{
    padding:1rem 1rem 1.15rem;display:flex;flex-direction:column;
    gap:0.5rem;flex:1;
  }
  .product-title{
    font-size:0.93rem;font-weight:600;color:var(--ink);
    line-height:1.35;min-height:2.5em;
  }
  .product-price{
    font-family:'Playfair Display',serif;font-weight:600;
    font-size:1.05rem;color:var(--gold-deep);
  }
  .product-rating{display:flex;align-items:center;gap:0.35rem;}
  .product-rating .stars{display:flex;gap:1px;}
  .product-rating i{font-size:13px;line-height:1;}
  .star-fill{color:var(--gold);}
  .star-empty{color:#DCD4C0;}
  .product-rating .count{font-size:0.78rem;color:var(--ink-soft);}
  .product-actions{display:flex;flex-direction:column;gap:0.55rem;margin-top:0.35rem;}
  .btn-add{
    background:var(--gold);color:#fff;font-weight:600;font-size:0.85rem;
    padding:0.65rem 0.8rem;border-radius:6px;
    display:flex;align-items:center;justify-content:center;gap:0.45rem;
    transition:background .2s ease;
  }
  .btn-add i{font-size:14px;line-height:1;flex-shrink:0;}
  .btn-add:hover{background:var(--gold-deep);}
  .btn-view{
    background:#fff;border:1.3px solid var(--line);color:var(--ink);
    font-weight:600;font-size:0.85rem;padding:0.62rem 0.8rem;border-radius:6px;
    text-align:center;transition:border-color .2s ease, color .2s ease;
  }
  .btn-view:hover{border-color:var(--gold); color:var(--gold-deep);}

  /* ================= CUSTOM ART BANNER ================= */
  .custom-art{background:var(--cream);padding:2rem 2rem 3rem;}
  .custom-art-card{
    max-width:1320px;margin:0 auto;position:relative;min-height:380px;
    background:var(--cream-deep);border-radius:18px;overflow:hidden;
    display:flex;align-items:center;border:1px solid var(--line);
  }
  .custom-art-media{
    position:absolute;top:0;right:0;bottom:0;width:62%;
    background-size:cover;background-position:center;
  }
  .custom-art-media::before{
    content:"";position:absolute;inset:0;
    background:linear-gradient(90deg, var(--cream-deep) 0%, var(--cream-deep) 8%, rgba(243,236,223,0.55) 28%, rgba(243,236,223,0) 55%);
  }
  .custom-art-content{position:relative;z-index:2;flex:0 0 50%;padding:3.4rem 2.5rem 3.4rem 3.2rem;}
  .custom-art-content .cat-eyebrow{margin-bottom:0.9rem;}
  .custom-art-content h2{
    font-family:'Playfair Display',serif;font-weight:600;
    font-size:clamp(1.5rem, 3vw, 2.3rem);color:var(--ink);
    line-height:1.15;margin:0 0 1rem 0;
  }
  .custom-art-content p{
    font-size:1rem;line-height:1.65;color:var(--ink-soft);
    margin:0 0 1.9rem 0;max-width:380px;
  }

  /* ============================================ */
  /* ============ WHY CHOOSE US ================= */
  /* ============================================ */
.why-choose {
    background: linear-gradient(180deg, #ffefd3 0%, var(--cream-deep) 100%);
    padding: 2rem 2rem 4.5rem;
    position: relative;
    overflow: hidden;
}
  .why-choose .categories-inner{position:relative;z-index:2;}
  .why-choose .cat-heading-row{margin-bottom:2rem;}

  .why-grid{display:grid;grid-template-columns:repeat(4, 1fr);gap:1.5rem;margin-top:0;}

  .why-item{
    position:relative;background:#fff;border:1px solid var(--line);border-radius:16px;
    padding:2.4rem 1.5rem 2rem;text-align:center;overflow:hidden;
    display:flex;flex-direction:column;align-items:center;
    transition:transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease, border-color .35s ease;
    isolation:isolate;min-width:0;
  }
  .why-item::before{
    content:"";position:absolute;top:0;left:0;right:0;height:3px;
    background:linear-gradient(90deg, var(--gold), var(--gold-deep));
    transform:scaleX(0);transform-origin:left center;
    transition:transform .45s cubic-bezier(.22,.61,.36,1);
  }
  .why-item::after{
    content:"";position:absolute;inset:auto -30% -60% -30%;height:70%;
    background:radial-gradient(ellipse at center, rgba(199,154,60,0.10) 0%, rgba(199,154,60,0) 70%);
    opacity:0;transition:opacity .4s ease;z-index:-1;pointer-events:none;
  }
  .why-item:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 44px rgba(31,36,48,0.14);
    border-color:rgba(199,154,60,0.45);
  }
  .why-item:hover::before{transform:scaleX(1);}
  .why-item:hover::after{opacity:1;}

  .why-num{
    position:absolute;top:1.1rem;right:1.15rem;
    font-family:'Playfair Display',serif;font-size:1.4rem;font-weight:700;
    font-style:italic;color:var(--gold);opacity:0.28;line-height:1;
    transition:opacity .3s ease, transform .3s ease;pointer-events:none;
  }
  .why-item:hover .why-num{opacity:0.55;transform:scale(1.08);}

  .why-icon{
    width:82px;height:82px;margin:0 auto 1.4rem;border-radius:50%;
    background:linear-gradient(135deg, #FBF3E2 0%, var(--cream-deep) 100%);
    border:1px solid var(--line);
    display:flex;align-items:center;justify-content:center;
    color:var(--gold-deep);position:relative;flex-shrink:0;
    transition:transform .4s cubic-bezier(.22,.61,.36,1), background .4s ease, color .4s ease, border-color .4s ease, box-shadow .4s ease;
  }
  .why-icon::after{
    content:"";position:absolute;inset:-6px;border-radius:50%;
    border:1.5px dashed rgba(199,154,60,0.35);
    opacity:0;transform:scale(0.85);transition:opacity .4s ease, transform .4s ease;
  }
  .why-icon i{font-size:32px;line-height:1;display:inline-block;}
  .why-item:hover .why-icon{
    transform:scale(1.08) rotate(-5deg);
    background:linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    color:#fff;border-color:transparent;
    box-shadow:0 10px 22px rgba(199,154,60,0.35);
  }
  .why-item:hover .why-icon::after{opacity:1;transform:scale(1);}

  .why-title{
    font-family:'Playfair Display',serif;font-weight:600;font-size:1.1rem;
    color:var(--ink);margin:0 0 0.6rem 0;transition:color .3s ease;
  }
  .why-item:hover .why-title{color:var(--gold-deep);}

  .why-desc{
    font-size:0.88rem;line-height:1.6;color:var(--ink-soft);
    max-width:230px;margin:0 auto;
  }

  .why-divider{
    width:36px;height:2px;background:var(--gold);border-radius:2px;
    margin:0.85rem auto 0.85rem;opacity:0.6;
    transition:width .35s ease, opacity .35s ease;
  }
  .why-item:hover .why-divider{width:56px;opacity:1;}

  /* ================= OUR WORK (DESKTOP + MOBILE SLIDER) ================= */
  .our-work{background:var(--cream);padding:2.5rem 2rem 2rem;}

  .work-slider{position:relative;--pv:4;--gap:1.4rem;}

  .work-viewport{
    overflow:hidden;
    padding:0.6rem 0.5rem;
    margin:-0.6rem -0.5rem;
  }
  .work-track{
    display:flex;gap:var(--gap);position:relative;
    transition:transform .68s cubic-bezier(.22,.61,.36,1);
    will-change:transform;
  }
  .work-track .work-card{
    flex:0 0 calc((100% - (var(--pv) - 1) * var(--gap)) / var(--pv));
    min-width:0;
  }

  .work-card{
    display:flex;flex-direction:column;gap:0.9rem;
  }
  .work-media{
    position:relative;aspect-ratio:4/3;border-radius:10px;overflow:hidden;
    background:var(--cream-deep);border:1px solid var(--line);
  }
  .work-media img{
    width:100%;height:100%;object-fit:cover;
    transition:transform .4s ease;
  }
  .work-card:hover .work-media img{transform:scale(1.05);}
  .work-caption{
    font-size:0.88rem;font-weight:600;color:var(--ink-soft);
  }

  .work-nav{
    position:absolute;top:calc(50% - 1.4rem);transform:translateY(-50%);
    width:44px;height:44px;border-radius:50%;
    background:#fff;border:1px solid var(--line);color:var(--ink);
    display:flex;align-items:center;justify-content:center;
    cursor:pointer;z-index:6;padding:0;
    box-shadow:0 6px 18px rgba(31,36,48,.14);
    transition:background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  }
  .work-nav i{font-size:18px;line-height:1;}
  .work-nav:hover{background:var(--gold);color:#fff;border-color:var(--gold);}
  .work-nav:active{transform:translateY(-50%) scale(0.94);}
  .work-prev{left:-1.1rem;}
  .work-next{right:-1.1rem;}

  .work-dots{display:flex;justify-content:center;gap:0.5rem;margin-top:1.7rem;}
  .work-dot{
    width:9px;height:9px;border-radius:50%;
    border:1.5px solid var(--gold);background:transparent;
    padding:0;cursor:pointer;
    transition:width .35s cubic-bezier(.22,.61,.36,1), border-radius .35s ease, background .25s ease;
  }
  .work-dot.active{width:26px;border-radius:5px;background:var(--gold);}

  /* ============================================ */
  /* =============== TESTIMONIALS =============== */
  /* ============================================ */
  .testimonials{
    background:var(--cream-deep);
    padding:2.5rem 2rem 2rem;
    position:relative;overflow:hidden;
  }
  .testimonials::before{
    content:"";position:absolute;top:-120px;right:-120px;
    width:420px;height:420px;border-radius:50%;
    background:radial-gradient(circle, rgba(199,154,60,0.14) 0%, rgba(199,154,60,0) 70%);
    pointer-events:none;
  }
  .testimonials .categories-inner{position:relative;z-index:2;}

  .testi-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:1.2rem;
    margin-bottom:2.4rem;
  }
  .testi-head-left{
    flex:1;
    min-width:0;
  }
  .testi-head-left .cat-heading-row{
    margin-bottom:0;
  }
  .testi-nav-group{
    display:flex;
    align-items:center;
    gap:0.6rem;
    flex-shrink:0;
    padding-bottom:0.3rem;
  }

  .testi-slider{position:relative;--pv:3;--gap:1.4rem;}
  .testi-viewport{overflow:hidden;padding:0.6rem 0.5rem;margin:-0.6rem -0.5rem;}
  .testi-track{
    display:flex;gap:var(--gap);position:relative;
    transition:transform .68s cubic-bezier(.22,.61,.36,1);
    will-change:transform;
  }
  .testi-card{
    flex:0 0 calc((100% - (var(--pv) - 1) * var(--gap)) / var(--pv));
    min-width:0;
    background:#fff;border:1px solid var(--line);border-radius:16px;
    padding:1.9rem 1.6rem 1.6rem;
    display:flex;flex-direction:column;gap:0.8rem;
    position:relative;overflow:hidden;isolation:isolate;
    transition:transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease, border-color .35s ease;
  }
  .testi-card::before{
    content:"";position:absolute;top:0;left:0;right:0;height:3px;
    background:linear-gradient(90deg, var(--gold), var(--gold-deep));
    transform:scaleX(0);transform-origin:left center;
    transition:transform .45s cubic-bezier(.22,.61,.36,1);
  }
  .testi-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(31,36,48,0.13);
    border-color:rgba(199,154,60,0.45);
  }
  .testi-card:hover::before{transform:scaleX(1);}

  .testi-quote-icon{
    font-size:2.4rem;line-height:1;
    color:var(--gold);opacity:0.32;
    transition:opacity .35s ease, transform .35s ease;
  }
  .testi-card:hover .testi-quote-icon{opacity:0.6;transform:scale(1.06);}

  .testi-stars{display:flex;gap:3px;}
  .testi-stars i{font-size:0.95rem;line-height:1;color:var(--gold);}
  .testi-stars i.bi-star{color:#DCD4C0;}

  .testi-text{
    font-size:0.93rem;line-height:1.72;color:var(--ink-soft);
    margin:0;flex:1;
  }
  .testi-person{
    display:flex;align-items:center;gap:0.8rem;
    padding-top:0.95rem;border-top:1px solid var(--line);
  }
  .testi-avatar{
    width:46px;height:46px;border-radius:50%;flex-shrink:0;
    background:linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    color:#fff;display:flex;align-items:center;justify-content:center;
    font-family:'Playfair Display',serif;font-weight:700;font-size:1rem;
    letter-spacing:.02em;box-shadow:0 6px 14px rgba(199,154,60,.32);
  }
  .testi-name{font-weight:700;font-size:0.92rem;color:var(--ink);line-height:1.3;}
  .testi-role{font-size:0.76rem;color:var(--ink-soft);margin-top:3px;line-height:1.3;}

  .testi-nav{
    width:46px;height:46px;border-radius:50%;
    border:1px solid var(--line);background:#fff;color:var(--ink);
    display:flex;align-items:center;justify-content:center;
    cursor:pointer;padding:0;flex-shrink:0;
    box-shadow:0 5px 16px rgba(31,36,48,.09);
    transition:background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  }
  .testi-nav i{font-size:17px;line-height:1;}
  .testi-nav:hover{background:var(--gold);color:#fff;border-color:var(--gold);transform:translateY(-2px);}
  .testi-nav:active{transform:translateY(0) scale(0.95);}

  .testi-dots{
    display:flex;
    justify-content:center;
    gap:0.5rem;
    margin-top:1.7rem;
  }
  .testi-dot{
    width:9px;height:9px;border-radius:50%;
    border:1.5px solid var(--gold);background:transparent;
    padding:0;cursor:pointer;
    transition:width .35s cubic-bezier(.22,.61,.36,1), border-radius .35s ease, background .25s ease;
  }
  .testi-dot.active{width:26px;border-radius:5px;background:var(--gold);}

  /* ================= FOOTER ================= */
  .footer{background:var(--ink);color:#C8C3B4;padding:4.5rem 2rem 0;}
  .footer-inner{max-width:1320px;margin:0 auto;}
  .footer-grid{
    display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;
    gap:2.4rem;padding-bottom:3rem;
    border-bottom:1px solid rgba(255,255,255,0.1);
  }
  .footer-col-brand{display:flex;flex-direction:column;gap:1.2rem;}
  .footer-brand{display:flex;align-items:center;gap:0.8rem;}
  .footer-brand-logo{width:165px;flex-shrink:0;object-fit:contain; padding: 10px; background-color: #faf7f0; border-radius: 10px;}
  .footer-brand-text .name{
    font-family:'Playfair Display',serif;font-weight:700;font-size:1.1rem;
    letter-spacing:0.03em;color:#F7F3EA;
  }
  .footer-brand-text .tag{font-size:0.6rem;letter-spacing:0.24em;color:var(--gold);font-weight:600;margin-top:2px;}
  .footer-desc{font-size:0.88rem;line-height:1.65;color:#B4AF9F;max-width:320px;}
  .footer-socials{display:flex;align-items:center;gap:0.6rem;flex-wrap:wrap;}
  .footer-socials a{
    display:flex;align-items:center;justify-content:center;
    width:36px;height:36px;border-radius:50%;color:#fff;
    box-shadow:0 3px 10px rgba(0,0,0,.3);
    transition:transform .22s ease, filter .22s ease;
  }
  .footer-socials a i{font-size:16px;line-height:1;}
  .footer-socials a:hover{transform:translateY(-3px) scale(1.08);filter:brightness(1.1);}
  .footer-socials a.fb{background:#1877F2;}
  .footer-socials a.ig{background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);}
  .footer-socials a.yt{background:#FF0000;}
  .footer-socials a.pin{background:#E60023;}

  .footer-heading{
    font-family:'Playfair Display',serif;font-weight:600;font-size:1rem;
    color:#F7F3EA;margin:0 0 1.3rem 0;
  }
  .footer-chevron{display:none;font-size:20px;line-height:1;color:var(--gold);transition:transform .35s cubic-bezier(.22,.61,.36,1);flex-shrink:0;}

  .footer-links{display:flex;flex-direction:column;gap:0.85rem;}
  .footer-links a{font-size:0.88rem;color:#B4AF9F;transition:color .2s ease;}
  .footer-links a:hover{color:var(--gold);}

  .footer-contact{display:flex;flex-direction:column;gap:0.95rem;}
  .footer-contact-item{
    display:flex;align-items:flex-start;gap:0.7rem;font-size:0.88rem;
    color:#B4AF9F;line-height:1.5;
  }
  .footer-contact-item i{font-size:16px;line-height:1;flex-shrink:0;color:var(--gold);margin-top:3px;}

  .footer-bottom{
    max-width:1320px;margin:0 auto;padding:1.5rem 0;
    display:flex;align-items:center;justify-content:space-between;
    gap:1rem;flex-wrap:wrap;font-size:0.82rem;color:#8A8676;
  }
  .footer-bottom-tags{display:flex;align-items:center;gap:0.6rem;}

  /* ============================================ */
  /* ============ FLOATING ACTION BUTTONS ======= */
  /* ============================================ */
  .float-btn{
    position:fixed;
    bottom:140px;
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    z-index:90;
    cursor:pointer;
    box-shadow:0 8px 22px rgba(0,0,0,.28);
    transition:transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease, opacity .3s ease, visibility .3s ease;
    -webkit-tap-highlight-color:transparent;
  }
  .float-btn i{
    font-size:26px;
    line-height:1;
    position:relative;
    z-index:2;
  }
  .float-btn:hover{
    transform:translateY(-4px) scale(1.08);
    box-shadow:0 14px 30px rgba(0,0,0,.35);
  }
  .float-btn:active{transform:translateY(-2px) scale(0.97);}

  .float-wa{
    right:24px;
    background:linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  }
  .float-wa::before,
  .float-wa::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50%;
    background:#25D366;
    z-index:0;
    pointer-events:none;
  }
  .float-wa::before{
    animation:waRing 2.4s ease-out infinite;
  }
  .float-wa::after{
    animation:waRing 2.4s ease-out 1.2s infinite;
  }
  @keyframes waRing{
    0%{transform:scale(1);opacity:.55;}
    80%{transform:scale(1.9);opacity:0;}
    100%{transform:scale(1.9);opacity:0;}
  }

  .float-call{
    left:24px;
    background:linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  }
  .float-call::before,
  .float-call::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50%;
    border:2px solid var(--gold);
    z-index:0;
    pointer-events:none;
    animation:callWave 2.6s ease-out infinite;
  }
  .float-call::after{animation-delay:1.3s;}

  @keyframes callWave{
    0%{transform:scale(1);opacity:.85;}
    100%{transform:scale(2.05);opacity:0;}
  }
  .float-call i{
    animation:ringBell 2.6s ease-in-out infinite;
  }
  @keyframes ringBell{
    0%,45%,100%{transform:rotate(0);}
    5%{transform:rotate(-18deg);}
    10%{transform:rotate(18deg);}
    15%{transform:rotate(-14deg);}
    20%{transform:rotate(14deg);}
    25%{transform:rotate(-9deg);}
    30%{transform:rotate(9deg);}
    35%{transform:rotate(-4deg);}
    40%{transform:rotate(4deg);}
  }

  .float-top{
    right:24px;
    bottom:26px;
    width:44px;
    height:44px;
    background:linear-gradient(135deg, #2a3140 0%, var(--ink) 100%);
    opacity:0;
    visibility:hidden;
    transform:translateY(12px) scale(.9);
    pointer-events:none;
    box-shadow:0 6px 16px rgba(0,0,0,.24);
  }
  .float-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0) scale(1);
    pointer-events:auto;
  }
  .float-top:hover{
    transform:translateY(-4px) scale(1.08);
    box-shadow:0 12px 26px rgba(0,0,0,.3);
  }
  .float-top:active{
    transform:translateY(-2px) scale(0.97);
  }
  .float-top i{
    animation:none;
    font-size:19px;
  }

  /* ============================================ */
  /* ================= RESPONSIVE =============== */
  /* ============================================ */

  @media (max-width: 1180px){
    .cat-grid{grid-template-columns:repeat(3, 1fr);}
    .picks-slider{--pv:4;}
    .work-slider{--pv:3;}
    .testi-slider{--pv:2;}
  }

  @media (max-width: 980px){
    .nav-links{display:none;}
    .menu-toggle{display:flex;}
    .sub-nav-inner{padding:0.55rem 1.25rem;}
    .navbar-inner{padding:0.8rem 1.25rem;}
    .hero{min-height:560px;}

    .custom-art-content{flex:0 0 56%; padding:2.6rem 2rem;}
    .custom-art-media{width:56%;}

    .why-grid{grid-template-columns:repeat(2, 1fr); gap:1.4rem;}
    .why-item{padding:2.1rem 1.4rem 1.8rem;}

    .picks-slider{--pv:3;}
    .work-slider{--pv:2;}

    .footer-grid{grid-template-columns:1fr 1fr; row-gap:2.4rem;}
  }

  @media (max-width: 720px){
    .sub-nav-location span{display:none;}
    .btn-cta{display:none;}

    .cat-heading-row{
      flex-wrap:wrap;
      gap:0.4rem 0.7rem;
      margin-bottom:1.5rem;
    }
    .cat-heading-row h2{
      font-size:1.05rem;
      line-height:1.25;
      word-break:break-word;
      overflow-wrap:break-word;
    }

    .float-btn{
      width:52px;
      height:52px;
      bottom:118px;
    }
    .float-btn i{font-size:23px;}
    .float-wa{right:16px;}
    .float-call{left:16px;}
    .float-top{
      right:16px;
      bottom:18px;
      width:42px;
      height:42px;
    }
    .float-top i{font-size:18px;}

    .hero{min-height:auto;}
    .hero-overlay{
      background:linear-gradient(180deg, rgba(20,16,10,0.94) 0%, rgba(20,16,10,0.82) 45%, rgba(20,16,10,0.65) 100%);
    }
    .hero-inner{padding:2.5rem 1.25rem 4rem;}
    .hero-content{max-width:100%;}
    .eyebrow{font-size:0.68rem;letter-spacing:0.16em;margin-bottom:1rem;gap:0.6rem;}
    .eyebrow::after{width:36px;}
    .hero-content h1{font-size:1.75rem;line-height:1.2;margin:0 0 0.9rem 0;letter-spacing:-0.01em;}
    .hero-content p{font-size:0.9rem;line-height:1.6;max-width:100%;margin:0 0 1.5rem 0;}

    .hero-ctas{
      display:grid;grid-template-columns:1fr 1fr;gap:0.6rem;
      margin-bottom:1.7rem;flex-wrap:nowrap;
    }
    .btn-primary,.btn-secondary{
      padding:0.75rem 0.7rem;font-size:0.82rem;width:100%;
      white-space:nowrap;text-align:center;gap:0.3rem;
    }
    .btn-primary i{font-size:14px;}

    .hero-trust{gap:0.7rem 1.1rem;font-size:0.75rem;}
    .hero-trust i{font-size:14px;}

    .hero-nav{
      width:40px;height:40px;top:auto;bottom:1.4rem;transform:none;
    }
    .hero-nav:hover{transform:scale(1.08);}
    .hero-nav:active{transform:scale(0.96);}
    .hero-nav i{font-size:17px;}
    .hero-prev{left:1.1rem;}
    .hero-next{right:1.1rem;}
    .hero-dots{bottom:2rem;left:50%;}

    .categories{padding:3.2rem 1.25rem 3.5rem;}
    .cat-grid{grid-template-columns:repeat(2, 1fr); gap:1rem;}

    .picks{padding:3rem 1rem 3.4rem;}
    .picks-head{flex-wrap:wrap;gap:0.6rem;align-items:center;margin-bottom:1.6rem;}
    .picks-slider{--pv:2;--gap:0.7rem;}
    .picks-viewport{padding:0.5rem 0.35rem;margin:-0.5rem -0.35rem;}
    .picks-nav{
      width:36px;height:36px;top:calc(50% - 1.5rem);
    }
    .picks-nav i{font-size:15px;}
    .picks-prev{left:-0.35rem;}
    .picks-next{right:-0.35rem;}
    .picks-dots{margin-top:1.3rem;gap:0.4rem;}

    .product-body{padding:0.65rem 0.65rem 0.75rem;gap:0.32rem;}
    .product-title{font-size:0.76rem;line-height:1.3;min-height:2.1em;}
    .product-price{font-size:0.88rem;}
    .product-rating{gap:0.25rem;}
    .product-rating i{font-size:10px;}
    .product-rating .count{font-size:0.68rem;}
    .product-actions{gap:0.35rem;margin-top:0.15rem;}
    .btn-add,.btn-view{font-size:0.7rem;padding:0.48rem 0.4rem;border-radius:5px;}
    .btn-add i{font-size:11px;}
    .picks-head-left .cat-heading-row h2{font-size:1rem;}

    .custom-art{padding:0 1.25rem 2.5rem;}
    .custom-art-card{flex-direction:column;align-items:stretch;min-height:0;border-radius:14px;}
    .custom-art-media{position:relative;width:100%;aspect-ratio:16/10;}
    .custom-art-media::before{background:linear-gradient(0deg, var(--cream-deep) 0%, rgba(243,236,223,0) 22%);}
    .custom-art-content{flex:none;padding:2rem 1.5rem 2.2rem;}
    .custom-art-content p{max-width:100%;}
    .custom-art-content h2{font-size:1.25rem;}

    .why-choose{padding:2.4rem 1.1rem 3.4rem;overflow:hidden;}
    .why-choose .cat-heading-row{margin-bottom:1.5rem;}
    .why-grid{
      grid-template-columns:repeat(2, 1fr);
      gap:0.7rem;
      margin-top:0;
    }
    .why-item{
      padding:1.4rem 0.75rem 1.2rem;
      text-align:center;
      align-items:center;
      border-radius:12px;
    }
    .why-icon{
      margin:0 auto 0.85rem;
      width:54px;
      height:54px;
    }
    .why-icon i{font-size:22px;}
    .why-num{font-size:1rem;top:0.7rem;right:0.75rem;}
    .why-title{font-size:0.88rem;margin-bottom:0.35rem;line-height:1.25;}
    .why-divider{margin:0.5rem auto;width:24px;height:2px;}
    .why-desc{font-size:0.72rem;line-height:1.5;max-width:100%;}

    /* OUR WORK — mobile slider */
    .our-work{padding:2.4rem 1.25rem 3.8rem;}
    .work-slider{--pv:1;--gap:0.9rem;}
    .work-viewport{padding:0.5rem 0.35rem;margin:-0.5rem -0.35rem;}
    .work-nav{width:38px;height:38px;top:calc(50% - 1.5rem);}
    .work-nav i{font-size:16px;}
    .work-prev{left:-0.4rem;}
    .work-next{right:-0.4rem;}
    .work-media{border-radius:12px;}
    .work-caption{text-align:center;font-size:0.9rem;margin-top:0.2rem;}
    .work-dots{margin-top:1.3rem;gap:0.4rem;}

    .testimonials{padding:3rem 1.25rem 3.6rem;}
    .testi-head{flex-wrap:wrap;gap:0.6rem;align-items:center;margin-bottom:1.6rem;}
    .testi-head-left{flex:1 1 auto;min-width:0;}
    .testi-head-left .cat-heading-row{margin-bottom:0;}
    .testi-nav-group{padding-bottom:0;}
    .testi-slider{--pv:1;--gap:1rem;}
    .testi-viewport{padding:0.5rem 0.35rem;margin:-0.5rem -0.35rem;}
    .testi-card{padding:1.6rem 1.3rem 1.4rem;border-radius:14px;}
    .testi-quote-icon{font-size:2rem;}
    .testi-text{font-size:0.88rem;line-height:1.66;}
    .testi-avatar{width:42px;height:42px;font-size:0.92rem;}
    .testi-name{font-size:0.88rem;}
    .testi-role{font-size:0.72rem;}
    .testi-nav{width:40px;height:40px;}
    .testi-nav i{font-size:15px;}
    .testi-dots{margin-top:1.4rem;}

    .footer{padding:3.2rem 1.25rem 0;}
    .footer-grid{grid-template-columns:1fr; gap:0; row-gap:0; padding-bottom:1.2rem;}
    .footer-col-brand{padding-bottom:2rem;border-bottom:1px solid rgba(255,255,255,0.08);}
    .footer-col{border-bottom:1px solid rgba(255,255,255,0.08);}
    .footer-col:last-child{border-bottom:none;}
    .footer-col .footer-heading{
      display:flex;align-items:center;justify-content:space-between;gap:0.8rem;
      cursor:pointer;margin:0;padding:1.15rem 0;font-size:1.02rem;
      user-select:none;-webkit-tap-highlight-color:transparent;
      transition:color .25s ease;
    }
    .footer-col .footer-heading:hover{color:var(--gold);}
    .footer-chevron{display:block;}
    .footer-col.open .footer-chevron{transform:rotate(180deg);}

    .footer-links,.footer-contact{
      max-height:0;overflow:hidden;opacity:0;padding-bottom:0;
      transition:max-height .45s cubic-bezier(.22,.61,.36,1), opacity .3s ease, padding .35s ease;
    }
    .footer-col.open .footer-links,
    .footer-col.open .footer-contact{
      max-height:420px;opacity:1;padding-bottom:1.3rem;
    }
    .footer-col.open .footer-heading{color:var(--gold);}

    .footer-desc{max-width:100%;}
    .footer-bottom{flex-direction:column;align-items:flex-start;gap:0.6rem;padding:1.4rem 0 1.8rem;}
  }

  @media (max-width: 576px){
    .brand-text .name{font-size:0.92rem;letter-spacing:0.02em;}
    .brand-text .tag{font-size:0.52rem;letter-spacing:0.18em;}
    .brand-logo{width:95px;}
    .navbar-actions{gap:0.6rem;}
    .icon-btn i{font-size:18px;}
.navbar-inner {
    padding: 0.2rem .55rem;
}
.sub-nav-location span {
    display: block;
    font-size: 10px;
}
    .sub-nav-socials{gap:0.4rem;}
    .sub-nav-socials a{width:23px;height:23px;}
    .sub-nav-socials a i{font-size:12px;}

    .float-btn{width:48px;height:48px;bottom:104px;}
    .float-btn i{font-size:21px;}
    .float-wa{right:14px;}
    .float-call{left:14px;}
    .float-top{right:14px;bottom:14px;width:40px;height:40px;}
    .float-top i{font-size:17px;}

    .hero-inner{padding:2.2rem 1.1rem 3.6rem;}
    .hero-content h1{font-size:1rem;}
    .hero-content p{font-size:0.65rem;}
        .hero-trust{gap:0.7rem 1.1rem;font-size:0.60rem;}
    .eyebrow{font-size:0.62rem;}

    .hero-ctas{grid-template-columns:1fr 1fr;gap:0.5rem;}
    .btn-primary,.btn-secondary{padding:0.7rem 0.5rem;font-size:0.75rem;gap:0.25rem;}
    .btn-primary i{font-size:12px;}

    .hero-nav{width:36px;height:36px;}
    .hero-nav i{font-size:15px;}
    .hero-prev{left:0.8rem;}
    .hero-next{right:0.8rem;}
    .hero-dots{bottom:1.8rem;}

    .cat-card-label span{font-size:0.88rem;}
    .cat-card-label{padding:0.65rem 0.75rem;}
    .cat-heading-row h2{font-size:0.96rem;}

    .picks{padding:2.6rem 0.9rem 3rem;}
    .picks-slider{--gap:0.6rem;}
    .picks-nav{width:34px;height:34px;}
    .picks-nav i{font-size:14px;}
    .product-body{padding:0.6rem 0.6rem 0.7rem;gap:0.28rem;}
    .product-title{font-size:0.72rem;min-height:2em;}
    .product-price{font-size:0.84rem;}
    .product-rating i{font-size:9px;}
    .product-rating .count{font-size:0.62rem;}
    .btn-add,.btn-view{font-size:0.66rem;padding:0.44rem 0.35rem;}
    .btn-add i{font-size:10px;}

    .custom-art-content h2{font-size:1.18rem;}
    .custom-art-content{padding:1.7rem 1.2rem 1.9rem;}

    .why-choose{padding:2.2rem 0.9rem 3rem;}
    .why-grid{gap:0.55rem;}
    .why-item{padding:1.2rem 0.55rem 1rem;border-radius:10px;}
    .why-icon{width:46px;height:46px;margin-bottom:0.7rem;}
    .why-icon i{font-size:19px;}
    .why-num{font-size:0.85rem;top:0.55rem;right:0.55rem;}
    .why-title{font-size:0.8rem;margin-bottom:0.3rem;}
    .why-divider{width:20px;margin:0.4rem auto;}
    .why-desc{font-size:0.67rem;line-height:1.45;}

    .work-nav{width:38px;height:38px;}
    .work-nav i{font-size:16px;}
    .work-prev{left:-0.5rem;}
    .work-next{right:-0.5rem;}
    .work-caption{font-size:0.85rem;}

    .testimonials{padding:2.6rem 0.9rem 3.2rem;}
    .testi-card{padding:1.4rem 1.1rem 1.2rem;}
    .testi-text{font-size:0.84rem;}
    .testi-nav{width:38px;height:38px;}
    .testi-nav i{font-size:14px;}
    .testi-dots{margin-top:1.2rem;}

    .footer-brand-logo{width:44px;height:44px;}
    .footer-col .footer-heading{font-size:0.96rem;padding:1rem 0;}

    .sidebar-nav a{padding:0.7rem 1.15rem;font-size:0.92rem;}
    .sidebar-head{padding:0.9rem 1rem 0.9rem 1.15rem;}
    .sidebar-close{width:38px;height:38px;}
    .sidebar-close i{font-size:17px;}
    .sidebar-extra{padding:1rem 1.15rem 1.4rem;}
  }

  @media (max-height: 700px) and (max-width: 980px){
    .sidebar-nav a{padding:0.6rem 1.2rem;font-size:0.9rem;}
    .sidebar-head{padding:0.75rem 1rem 0.75rem 1.2rem;}
    .sidebar-head .brand-logo{width:34px;height:34px;}
    .sidebar-close{width:36px;height:36px;}
    .sidebar-close i{font-size:16px;}
    .sidebar-extra{padding:0.9rem 1.2rem 1.2rem;}
    .sidebar-contact{gap:0.4rem;margin-bottom:0.8rem;}
    .sidebar-contact .row{font-size:0.78rem;}
    .sidebar-cta{margin-bottom:0.8rem;padding:0.7rem 1rem;}
    .sidebar-socials a{width:30px;height:30px;}
    .sidebar-socials a i{font-size:14px;}
  }

  @media (prefers-reduced-motion: reduce){
    *,*::before,*::after{
      animation-duration:0.01ms !important;
      transition-duration:0.01ms !important;
    }
    .float-call i{animation:none;}
    .float-wa::before,.float-wa::after,
    .float-call::before,.float-call::after{animation:none;opacity:0;}
  }