﻿/* ═══════════════════════════════════════
   Ceylon Aroma — Frontend CSS
   ═══════════════════════════════════════ */

:root {
    --canopy:    #173C2C;
    --forest:    #2B6248;
    --sage:      #5D8A6C;
    --gold:      #C6862A;
    --gold-2:    #DFA84C;
    --cream:     #FAF6EC;
    --parchment: #F6F1E9;
    --ink:       #1A1A1A;
    --muted:     #6B6B6B;
    --border:    rgba(23,60,44,0.12);
    --radius:    8px;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Inter', system-ui, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
    --shadow-md: 0 8px 32px rgba(0,0,0,.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,.16);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--font-sans);color:var(--ink);background:var(--cream);line-height:1.6;overflow-x:hidden}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{cursor:pointer;border:none;background:none;font:inherit}
ul{list-style:none}

/* ── Typography ── */
h1,h2,h3,h4,h5{font-family:var(--font-serif);line-height:1.25;font-weight:700}
h1{font-size:clamp(2rem,5vw,3.5rem)}
h2{font-size:clamp(1.5rem,4vw,2.5rem)}
h3{font-size:clamp(1.25rem,3vw,1.75rem)}
h4{font-size:1.125rem}
p{max-width:70ch}
.section-label{font-size:.75rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);display:block;margin-bottom:.5rem}
.section-title{font-family:var(--font-serif);color:var(--canopy);margin-bottom:1rem}
.section-sub{color:var(--muted);max-width:52ch;font-size:.95rem}

/* ── Buttons ── */
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.75rem 1.75rem;border-radius:var(--radius);font-size:.9rem;font-weight:600;transition:all .2s;white-space:nowrap}
.btn-primary{background:var(--canopy);color:#fff}
.btn-primary:hover{background:var(--forest);transform:translateY(-1px)}
.btn-gold{background:var(--gold);color:#fff}
.btn-gold:hover{background:var(--gold-2)}
.btn-outline{border:2px solid var(--canopy);color:var(--canopy)}
.btn-outline:hover{background:var(--canopy);color:#fff}
.btn-outline-white{border:2px solid rgba(255,255,255,.6);color:#fff}
.btn-outline-white:hover{background:rgba(255,255,255,.15)}
.btn-sm{padding:.5rem 1.25rem;font-size:.8rem}
.btn-icon{width:2.5rem;height:2.5rem;padding:0;justify-content:center;border-radius:50%;border:1px solid var(--border)}
.btn-icon:hover{background:var(--canopy);color:#fff;border-color:var(--canopy)}

/* ── Topbar ── */
.topbar{background:var(--canopy);color:rgba(255,255,255,.82);font-size:.76rem;padding:.45rem 0;border-bottom:1px solid rgba(255,255,255,.08)}
.topbar-inner{max-width:1280px;margin:0 auto;padding:0 1.5rem;display:flex;align-items:center;justify-content:space-between;gap:1rem}
.topbar-usps{display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap}
.topbar-usp{display:flex;align-items:center;gap:.4rem;white-space:nowrap}
.topbar-usp svg{opacity:.75;flex-shrink:0}
.topbar-right{display:flex;align-items:center;gap:1rem;flex-shrink:0}
.topbar-lang{display:flex;align-items:center;gap:.35rem;opacity:.85}
.topbar-lang select{background:transparent;border:none;color:inherit;font:inherit;font-size:.76rem;cursor:pointer;outline:none;appearance:none}
.topbar-cta{display:inline-flex;align-items:center;gap:.4rem;background:var(--gold);color:#fff;font-size:.72rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;padding:.35rem .9rem;border-radius:4px;white-space:nowrap;transition:background .2s}
.topbar-cta:hover{background:var(--gold-2)}

/* ── Nav ── */
.nav{background:#fff;border-bottom:1px solid var(--border);position:sticky;top:0;z-index:100;transition:box-shadow .3s}
.nav.scrolled{box-shadow:0 4px 20px rgba(0,0,0,.08)}
.nav-inner{max-width:1280px;margin:0 auto;padding:.6rem 1.5rem;display:flex;align-items:center;gap:1.5rem}
.logo{display:flex;align-items:center;gap:.6rem;flex-shrink:0}
.logo-mark{width:40px;height:40px;display:flex;align-items:center;justify-content:center}
.logo-text{display:flex;flex-direction:column;line-height:1}
.logo-ceylon{font-family:var(--font-serif);font-style:italic;font-size:.65rem;color:var(--sage);letter-spacing:.06em}
.logo-aroma{font-family:var(--font-serif);font-size:1.45rem;font-weight:700;color:var(--canopy);letter-spacing:-.01em}
.nav-links{display:flex;align-items:center;gap:0;flex:1;justify-content:center}
.nav-link{display:inline-flex;align-items:center;gap:.3rem;padding:.5rem .7rem;font-size:.8rem;font-weight:600;color:var(--ink);letter-spacing:.02em;text-transform:uppercase;transition:color .2s;position:relative;white-space:nowrap}
.nav-link:hover,.nav-link.active{color:var(--canopy)}
.nav-link.active::after{content:'';position:absolute;bottom:-1px;left:.7rem;right:.7rem;height:2px;background:var(--gold);border-radius:2px}
/* Products dropdown */
.nav-dropdown{position:relative}
.nav-dropdown:hover .nav-dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}
.nav-dropdown-menu{position:absolute;top:calc(100% + .5rem);left:0;background:#fff;border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow-md);min-width:200px;padding:.5rem 0;opacity:0;visibility:hidden;transform:translateY(-8px);transition:all .2s;z-index:200}
.nav-dropdown-menu a{display:block;padding:.6rem 1.25rem;font-size:.82rem;font-weight:500;color:var(--ink);transition:background .15s,color .15s}
.nav-dropdown-menu a:hover{background:var(--parchment);color:var(--canopy)}
.nav-actions{display:flex;align-items:center;gap:.5rem;margin-left:auto;flex-shrink:0}
.nav-search-btn{width:2rem;height:2rem;display:flex;align-items:center;justify-content:center;border-radius:50%;color:var(--ink);transition:background .2s}
.nav-search-btn:hover{background:var(--parchment);color:var(--canopy)}
.hamburger{display:none;flex-direction:column;gap:5px;padding:.25rem;cursor:pointer}
.hamburger span{width:22px;height:2px;background:var(--ink);border-radius:2px;transition:all .3s}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Mobile nav overlay */
.mobile-overlay{position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:198;opacity:0;pointer-events:none;transition:opacity .3s}
.mobile-nav{position:fixed;top:0;right:-100%;width:min(360px,90vw);height:100%;background:#fff;z-index:199;overflow-y:auto;transition:right .3s;box-shadow:var(--shadow-lg)}
.mobile-overlay.open{opacity:1;pointer-events:all}
.mobile-nav.open{right:0}
.mobile-nav-header{display:flex;justify-content:space-between;align-items:center;padding:1.25rem 1.5rem;border-bottom:1px solid var(--border)}
.mobile-close{width:2rem;height:2rem;display:flex;align-items:center;justify-content:center;border-radius:50%;background:var(--parchment)}
.mobile-links{padding:1rem}
.mobile-link{display:block;padding:.875rem 1rem;font-size:1rem;font-weight:500;color:var(--ink);border-radius:var(--radius);border-bottom:1px solid var(--border)}
.mobile-link:last-child{border-bottom:none}
.mobile-link:hover{background:var(--parchment);color:var(--canopy)}
.mobile-actions{padding:1rem 1.5rem;display:flex;flex-direction:column;gap:.75rem;border-top:1px solid var(--border);margin-top:auto}

/* ── Hero ── */
.hero{min-height:90vh;display:grid;grid-template-columns:1fr 1fr}
.hero-left{background:var(--canopy);display:flex;flex-direction:column;justify-content:center;padding:5rem 4rem 5rem 6vw;position:relative;overflow:hidden}
.hero-left::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235D8A6C' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}
.hero-eyebrow{font-size:.75rem;font-weight:600;letter-spacing:.15em;text-transform:uppercase;color:var(--gold-2);margin-bottom:1.25rem;display:flex;align-items:center;gap:.75rem}
.hero-eyebrow::before{content:'';width:2rem;height:1px;background:var(--gold-2)}
.hero-title{font-family:var(--font-serif);font-size:clamp(2.5rem,4vw,3.75rem);color:#fff;line-height:1.15;margin-bottom:1.25rem}
.hero-title em{font-style:normal;color:var(--gold-2)}
.hero-desc{color:rgba(255,255,255,.75);font-size:1rem;line-height:1.7;margin-bottom:2.5rem;max-width:42ch}
.hero-cta{display:flex;gap:1rem;flex-wrap:wrap}
.hero-right{position:relative;background:var(--parchment);overflow:hidden;display:flex;align-items:center;justify-content:center}
.hero-right img{width:100%;height:100%;object-fit:cover}
.hero-right-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(23,60,44,.15) 0%,transparent 60%)}
.hero-badge{position:absolute;bottom:3rem;right:3rem;background:#fff;border-radius:12px;padding:1.25rem 1.5rem;box-shadow:var(--shadow-md);text-align:center;min-width:120px}
.hero-badge-num{font-family:var(--font-serif);font-size:2.5rem;font-weight:700;color:var(--canopy);line-height:1}
.hero-badge-label{font-size:.7rem;color:var(--muted);text-transform:uppercase;letter-spacing:.1em;margin-top:.25rem}
.hero-scroll{position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;gap:.5rem;color:var(--sage);font-size:.75rem;letter-spacing:.1em;text-transform:uppercase}
.scroll-line{width:1px;height:40px;background:linear-gradient(var(--sage),transparent);animation:scrollAnim 1.5s ease-in-out infinite}
@keyframes scrollAnim{0%{opacity:0;transform:scaleY(0)}50%{opacity:1}100%{opacity:0;transform:scaleY(1)}}

/* ── Stats Bar ── */
.stats-bar{background:var(--canopy)}
.stats-inner{max-width:1280px;margin:0 auto;padding:1.75rem 1.5rem;display:grid;grid-template-columns:repeat(5,1fr);gap:0}
.stat-item{text-align:center;padding:1.25rem 1rem;position:relative}
.stat-item+.stat-item::before{content:'';position:absolute;left:0;top:20%;bottom:20%;width:1px;background:rgba(255,255,255,.15)}
.stat-num{font-family:var(--font-serif);font-size:2.25rem;font-weight:700;color:#fff;line-height:1}
.stat-label{font-size:.72rem;color:rgba(255,255,255,.65);margin-top:.35rem;text-transform:uppercase;letter-spacing:.1em}
.stat-icon{width:36px;height:36px;margin:0 auto .75rem;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.12);border-radius:50%}
.stat-icon svg{opacity:.9}
﻿/* ── Section wrapper ── */
.section{padding:5rem 0}
.container{max-width:1280px;margin:0 auto;padding:0 1.5rem}
.section-head{margin-bottom:3rem}
.section-head.center{text-align:center}
.section-head.center .section-sub{margin:0 auto}

/* ── Categories ── */
.categories{background:var(--parchment)}
.cat-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:1.5rem}
.cat-card{display:flex;flex-direction:column;align-items:center;gap:1rem;padding:1.25rem .75rem;border-radius:12px;text-align:center;transition:transform .2s,box-shadow .2s;cursor:pointer;background:#fff;border:1px solid transparent}
.cat-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:var(--border)}
.cat-img-wrap{width:80px;height:80px;border-radius:50%;overflow:hidden;background:var(--parchment);display:flex;align-items:center;justify-content:center;border:3px solid transparent;transition:border-color .2s}
.cat-card:hover .cat-img-wrap{border-color:var(--gold)}
.cat-img-wrap img{width:100%;height:100%;object-fit:cover}
.cat-img-placeholder{width:100%;height:100%;background:linear-gradient(135deg,var(--sage) 0%,var(--canopy) 100%);display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.5rem}
.cat-name{font-size:.8rem;font-weight:600;color:var(--canopy);line-height:1.3}
.cat-count{font-size:.7rem;color:var(--muted)}

/* ── Why Choose ── */
.why-choose{background:#fff}
.features-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem}
.feature-card{padding:2rem 1.5rem;border-radius:12px;border:1px solid var(--border);transition:box-shadow .2s}
.feature-card:hover{box-shadow:var(--shadow-md)}
.feature-icon{width:52px;height:52px;background:var(--parchment);border-radius:10px;display:flex;align-items:center;justify-content:center;color:var(--canopy);margin-bottom:1.25rem}
.feature-title{font-size:1rem;font-weight:700;color:var(--canopy);margin-bottom:.5rem}
.feature-desc{font-size:.875rem;color:var(--muted);line-height:1.6}

/* ── Collections ── */
.collections{background:var(--parchment)}
.coll-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.coll-card{border-radius:14px;overflow:hidden;background:#fff;box-shadow:var(--shadow-sm);transition:transform .2s,box-shadow .2s;position:relative}
.coll-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.coll-img{height:220px;background:var(--parchment);position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center}
.coll-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.coll-card:hover .coll-img img{transform:scale(1.05)}
.coll-img-placeholder{width:100%;height:100%;background:linear-gradient(135deg,var(--forest) 0%,var(--canopy) 100%);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.3);font-size:3rem}
.coll-tag{position:absolute;top:1rem;left:1rem;background:var(--gold);color:#fff;font-size:.7rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;padding:.3rem .75rem;border-radius:4px}
.coll-body{padding:1.5rem}
.coll-name{font-family:var(--font-serif);font-size:1.125rem;color:var(--canopy);margin-bottom:.5rem}
.coll-desc{font-size:.85rem;color:var(--muted);margin-bottom:1rem}
.coll-link{font-size:.85rem;font-weight:600;color:var(--canopy);display:inline-flex;align-items:center;gap:.35rem;transition:gap .2s}
.coll-link:hover{gap:.6rem}

/* ── Products Section ── */
.products-section{background:#fff}
.product-tabs{display:flex;gap:.5rem;border-bottom:2px solid var(--border);margin-bottom:2.5rem;overflow-x:auto}
.tab-btn{padding:.75rem 1.5rem;font-size:.875rem;font-weight:600;color:var(--muted);border-bottom:2px solid transparent;margin-bottom:-2px;transition:color .2s,border-color .2s;white-space:nowrap}
.tab-btn.active{color:var(--canopy);border-bottom-color:var(--canopy)}
.tab-btn:hover{color:var(--canopy)}
.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:1.5rem}
.product-card{border-radius:12px;overflow:hidden;border:1px solid var(--border);transition:box-shadow .2s,transform .2s;background:#fff;position:relative}
.product-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}
.product-img{height:200px;background:var(--parchment);position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center}
.product-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.product-card:hover .product-img img{transform:scale(1.08)}
.product-img-placeholder{width:100%;height:100%;background:linear-gradient(135deg,var(--parchment) 0%,#e8e1d4 100%);display:flex;align-items:center;justify-content:center;font-size:3rem;color:var(--sage)}
.product-badge{position:absolute;top:.75rem;left:.75rem;font-size:.65rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;padding:.25rem .6rem;border-radius:4px}
.badge-featured{background:var(--canopy);color:#fff}
.badge-new{background:var(--sage);color:#fff}
.badge-bestseller{background:var(--gold);color:#fff}
.product-wish{position:absolute;top:.75rem;right:.75rem;width:32px;height:32px;background:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-sm);transition:background .2s}
.product-wish:hover,.product-wish.active{background:var(--gold);color:#fff}
.product-body{padding:1.25rem}
.product-category{font-size:.7rem;text-transform:uppercase;letter-spacing:.1em;color:var(--gold);margin-bottom:.35rem;font-weight:600}
.product-name{font-family:var(--font-serif);font-size:1rem;color:var(--canopy);margin-bottom:.5rem;line-height:1.35}
.product-desc{font-size:.8rem;color:var(--muted);line-height:1.5;margin-bottom:1rem}
.product-foot{display:flex;align-items:center;justify-content:space-between;gap:.5rem}
.product-inquiry{font-size:.8rem;font-weight:600;color:var(--canopy);padding:.5rem 1rem;border:1.5px solid var(--canopy);border-radius:var(--radius);transition:all .2s;display:inline-flex;align-items:center;gap:.35rem}
.product-inquiry:hover{background:var(--canopy);color:#fff}
.product-detail{font-size:.8rem;color:var(--muted);display:inline-flex;align-items:center;gap:.3rem;transition:color .2s}
.product-detail:hover{color:var(--canopy)}

/* ── Why Import / CTA ── */
.why-import{background:var(--parchment);position:relative;overflow:hidden}
.why-import-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.why-list{display:flex;flex-direction:column;gap:1.5rem;margin-top:2rem}
.why-item{display:flex;gap:1.25rem}
.why-icon{width:44px;height:44px;background:var(--canopy);border-radius:10px;display:flex;align-items:center;justify-content:center;color:var(--gold-2);flex-shrink:0}
.why-content strong{display:block;font-size:.95rem;color:var(--canopy);margin-bottom:.25rem}
.why-content p{font-size:.875rem;color:var(--muted);max-width:none}
.why-img{border-radius:16px;overflow:hidden;position:relative}
.why-img img{width:100%;height:480px;object-fit:cover}
.why-img-placeholder{width:100%;height:480px;background:linear-gradient(135deg,var(--sage) 0%,var(--canopy) 100%);display:flex;align-items:center;justify-content:center;font-size:5rem;color:rgba(255,255,255,.2);border-radius:16px}

.cta-section{background:var(--canopy);position:relative;overflow:hidden}
.cta-section::before{content:'';position:absolute;inset:0;background:radial-gradient(circle at 70% 50%,rgba(198,134,42,.15),transparent 60%)}
.cta-inner{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.cta-left .section-label{color:var(--gold-2)}
.cta-left h2{color:#fff}
.cta-left p{color:rgba(255,255,255,.75);font-size:1rem;margin:.75rem 0 2rem}
.cta-buttons{display:flex;gap:1rem;flex-wrap:wrap}
.cta-right-img{border-radius:16px;overflow:hidden}
.cta-right-img img{width:100%;height:380px;object-fit:cover}
.cta-right-img-placeholder{width:100%;height:380px;background:rgba(255,255,255,.08);border-radius:16px;display:flex;align-items:center;justify-content:center;font-size:5rem;color:rgba(255,255,255,.15)}

/* ── Export Process ── */
.export-process{background:#fff}
.process-steps{display:grid;grid-template-columns:repeat(5,1fr);gap:0;position:relative}
.process-steps::before{content:'';position:absolute;top:36px;left:10%;right:10%;height:2px;background:linear-gradient(to right,var(--sage) 0%,var(--gold) 100%);z-index:0}
.step-card{display:flex;flex-direction:column;align-items:center;text-align:center;padding:1.5rem 1rem;position:relative;z-index:1}
.step-num{width:72px;height:72px;border-radius:50%;background:#fff;border:3px solid var(--sage);display:flex;flex-direction:column;align-items:center;justify-content:center;margin-bottom:1.25rem;font-family:var(--font-serif);font-size:1.25rem;font-weight:700;color:var(--canopy);position:relative;transition:all .3s}
.step-card:hover .step-num{background:var(--canopy);border-color:var(--canopy);color:#fff;transform:scale(1.1)}
.step-title{font-size:.9rem;font-weight:700;color:var(--canopy);margin-bottom:.5rem}
.step-desc{font-size:.8rem;color:var(--muted);line-height:1.5}

/* ── Knowledge Centre ── */
.knowledge{background:var(--parchment)}
.blog-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.blog-card{background:#fff;border-radius:12px;overflow:hidden;border:1px solid var(--border);transition:box-shadow .2s,transform .2s}
.blog-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}
.blog-img{height:180px;overflow:hidden;position:relative;display:flex;align-items:center;justify-content:center;background:var(--parchment)}
.blog-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.blog-card:hover .blog-img img{transform:scale(1.05)}
.blog-img-placeholder{width:100%;height:100%;background:linear-gradient(135deg,var(--parchment) 0%,#ddd5c5 100%);display:flex;align-items:center;justify-content:center;font-size:2.5rem;color:var(--sage)}
.blog-cat{position:absolute;top:.75rem;left:.75rem;background:var(--canopy);color:#fff;font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;padding:.25rem .6rem;border-radius:4px}
.blog-body{padding:1.25rem}
.blog-meta{font-size:.75rem;color:var(--muted);margin-bottom:.5rem}
.blog-title{font-family:var(--font-serif);font-size:1rem;color:var(--canopy);margin-bottom:.75rem;line-height:1.4}
.blog-excerpt{font-size:.8rem;color:var(--muted);line-height:1.5;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.blog-foot{padding:1rem 1.25rem;border-top:1px solid var(--border);display:flex;align-items:center;justify-content:space-between}
.read-more{font-size:.8rem;font-weight:600;color:var(--canopy);display:inline-flex;align-items:center;gap:.3rem;transition:gap .2s}
.read-more:hover{gap:.5rem}
﻿/* ── Footer ── */
.footer{background:var(--canopy);color:rgba(255,255,255,.85)}
.footer-top{padding:4rem 0 2rem;border-bottom:1px solid rgba(255,255,255,.1)}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:3rem}
.footer-brand .logo-ceylon{color:var(--gold-2)}
.footer-brand .logo-aroma{color:#fff}
.footer-tagline{font-size:.875rem;color:rgba(255,255,255,.6);margin:1rem 0 1.5rem;line-height:1.6;max-width:30ch}
.footer-socials{display:flex;gap:.75rem}
.footer-social{width:36px;height:36px;border-radius:50%;border:1px solid rgba(255,255,255,.2);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.7);transition:all .2s}
.footer-social:hover{background:var(--gold);border-color:var(--gold);color:#fff}
.footer-col h5{font-family:var(--font-sans);font-size:.8rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--gold-2);margin-bottom:1.25rem}
.footer-links{display:flex;flex-direction:column;gap:.6rem}
.footer-links a{font-size:.875rem;color:rgba(255,255,255,.65);transition:color .2s;display:flex;align-items:center;gap:.5rem}
.footer-links a:hover{color:#fff}
.footer-contact-item{display:flex;gap:.75rem;font-size:.875rem;color:rgba(255,255,255,.65);margin-bottom:.75rem;align-items:flex-start}
.footer-contact-item svg{flex-shrink:0;margin-top:2px;color:var(--gold-2)}
.footer-bottom{padding:1.5rem 0;display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;font-size:.8rem;color:rgba(255,255,255,.45)}
.footer-bottom a{color:rgba(255,255,255,.6)}
.footer-bottom a:hover{color:#fff}

/* ── Contact / Inquiry form ── */
.contact-hero{background:var(--canopy);padding:5rem 0 3rem;color:#fff}
.contact-hero h1{color:#fff;margin-bottom:.75rem}
.contact-hero p{color:rgba(255,255,255,.75);max-width:50ch}
.form-section{padding:4rem 0}
.form-grid{display:grid;grid-template-columns:2fr 1fr;gap:3rem;align-items:start}
.form-card{background:#fff;border-radius:16px;padding:2.5rem;box-shadow:var(--shadow-md)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}
.form-group{display:flex;flex-direction:column;gap:.4rem;margin-bottom:1.25rem}
.form-group label{font-size:.8rem;font-weight:600;color:var(--canopy);text-transform:uppercase;letter-spacing:.06em}
.form-control{width:100%;padding:.75rem 1rem;border:1.5px solid var(--border);border-radius:var(--radius);font:inherit;font-size:.9rem;color:var(--ink);background:#fff;transition:border-color .2s,box-shadow .2s;outline:none}
.form-control:focus{border-color:var(--canopy);box-shadow:0 0 0 3px rgba(23,60,44,.08)}
textarea.form-control{resize:vertical;min-height:120px}
.form-check-group{display:grid;grid-template-columns:repeat(2,1fr);gap:.5rem}
.form-check{display:flex;align-items:center;gap:.5rem;font-size:.875rem;color:var(--ink);cursor:pointer}
.form-check input{accent-color:var(--canopy)}
.contact-info-card{background:#fff;border-radius:16px;padding:2rem;box-shadow:var(--shadow-sm)}
.contact-info-item{display:flex;gap:1rem;margin-bottom:1.5rem}
.contact-info-icon{width:42px;height:42px;background:var(--parchment);border-radius:10px;display:flex;align-items:center;justify-content:center;color:var(--canopy);flex-shrink:0}
.contact-info-text strong{display:block;font-size:.875rem;color:var(--canopy);margin-bottom:.2rem}
.contact-info-text span{font-size:.85rem;color:var(--muted)}

/* ── Products index ── */
.products-hero{background:var(--canopy);padding:4rem 0 3rem;color:#fff}
.products-hero h1{color:#fff}
.products-hero p{color:rgba(255,255,255,.75);max-width:50ch;margin-top:.75rem}
.products-layout{padding:3rem 0}
.products-sidebar{display:flex;flex-direction:column;gap:1.5rem}
.sidebar-card{background:#fff;border-radius:12px;padding:1.5rem;box-shadow:var(--shadow-sm)}
.sidebar-card h4{font-size:.8rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--canopy);margin-bottom:1rem}
.sidebar-cats{display:flex;flex-direction:column;gap:.4rem}
.sidebar-cat{display:flex;align-items:center;justify-content:space-between;padding:.5rem .75rem;border-radius:var(--radius);font-size:.875rem;color:var(--ink);transition:background .2s}
.sidebar-cat:hover,.sidebar-cat.active{background:var(--parchment);color:var(--canopy);font-weight:600}
.sidebar-cat-count{font-size:.75rem;background:var(--parchment);padding:.1rem .4rem;border-radius:4px;color:var(--muted)}
.search-input-wrap{position:relative}
.search-input-wrap input{width:100%;padding:.7rem .75rem .7rem 2.5rem;border:1.5px solid var(--border);border-radius:var(--radius);font:inherit;font-size:.875rem;outline:none}
.search-input-wrap input:focus{border-color:var(--canopy)}
.search-input-wrap svg{position:absolute;left:.75rem;top:50%;transform:translateY(-50%);color:var(--muted)}
.products-content-grid{display:grid;grid-template-columns:240px 1fr;gap:2rem;align-items:start}
.products-toolbar{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-bottom:2rem;flex-wrap:wrap}
.products-count{font-size:.875rem;color:var(--muted)}
.products-sort select{padding:.5rem .75rem;border:1.5px solid var(--border);border-radius:var(--radius);font:inherit;font-size:.875rem;outline:none;cursor:pointer}

/* ── Blog ── */
.blog-hero{background:var(--canopy);padding:4rem 0 3rem;color:#fff}
.blog-hero h1{color:#fff}
.blog-hero p{color:rgba(255,255,255,.75);max-width:50ch;margin-top:.75rem}
.blog-layout{padding:4rem 0}
.blog-layout .container{display:grid;grid-template-columns:1fr 280px;gap:3rem;align-items:start}
.blog-main-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem}
.blog-sidebar{display:flex;flex-direction:column;gap:1.5rem}
.blog-featured{grid-column:1/-1}
.blog-featured .blog-img{height:300px}
.blog-featured .blog-title{font-size:1.5rem}
.blog-cats-list{display:flex;flex-direction:column;gap:.35rem}
.blog-cats-list a{padding:.5rem .75rem;border-radius:var(--radius);font-size:.875rem;color:var(--ink);transition:background .2s}
.blog-cats-list a:hover,.blog-cats-list a.active{background:var(--parchment);color:var(--canopy);font-weight:600}

/* ── Single Product ── */
.product-hero{background:var(--parchment);padding:3rem 0}
.product-detail-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}
.product-gallery{position:sticky;top:80px}
.product-gallery-main{border-radius:16px;overflow:hidden;background:#fff;border:1px solid var(--border);margin-bottom:1rem;height:380px;display:flex;align-items:center;justify-content:center}
.product-gallery-main img{width:100%;height:100%;object-fit:cover}
.product-gallery-thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:.5rem}
.gallery-thumb{border-radius:8px;overflow:hidden;border:2px solid transparent;cursor:pointer;transition:border-color .2s;height:80px;display:flex;align-items:center;justify-content:center;background:#fff}
.gallery-thumb.active{border-color:var(--canopy)}
.gallery-thumb img{width:100%;height:100%;object-fit:cover}
.product-info{padding-top:1rem}
.product-cat-label{font-size:.75rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--gold);margin-bottom:.5rem}
.product-info h1{font-family:var(--font-serif);font-size:2rem;color:var(--canopy);margin-bottom:1rem}
.product-info p{color:var(--muted);line-height:1.7;margin-bottom:1.5rem}
.product-flags{display:flex;gap:.5rem;flex-wrap:wrap;margin-bottom:1.5rem}
.flag-pill{font-size:.7rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;padding:.25rem .75rem;border-radius:100px}
.flag-featured{background:rgba(23,60,44,.1);color:var(--canopy)}
.flag-bestseller{background:rgba(198,134,42,.1);color:var(--gold)}
.flag-new{background:rgba(93,138,108,.12);color:var(--forest)}
.flag-export{background:rgba(198,134,42,.15);color:#8B5E1C}
.product-actions{display:flex;gap:.75rem;flex-wrap:wrap;margin-bottom:2rem}
.product-related{padding:4rem 0;background:#fff}

/* ── Single blog ── */
.blog-post-hero{background:var(--canopy);padding:4rem 0 3rem}
.blog-post-hero h1{color:#fff;max-width:70%}
.blog-post-hero .blog-meta{color:rgba(255,255,255,.65);font-size:.875rem;margin-top:.75rem}
.blog-post-layout{padding:3rem 0}
.blog-post-layout .container{display:grid;grid-template-columns:1fr 300px;gap:3rem;align-items:start}
.blog-post-img{border-radius:12px;overflow:hidden;margin-bottom:2rem}
.blog-post-img img{width:100%;height:400px;object-fit:cover}
.blog-content{font-size:1rem;line-height:1.8;color:#333}
.blog-content h2,.blog-content h3{font-family:var(--font-serif);color:var(--canopy);margin:2rem 0 1rem}
.blog-content p{margin-bottom:1.25rem;max-width:100%}
.blog-content ul,.blog-content ol{padding-left:1.5rem;margin-bottom:1.25rem}
.blog-content li{margin-bottom:.5rem}
.blog-related{padding:4rem 0;background:var(--parchment)}

/* ── Pagination ── */
.pagination-wrap{display:flex;justify-content:center;gap:.5rem;margin-top:2.5rem;flex-wrap:wrap}
.page-btn{width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:var(--radius);border:1.5px solid var(--border);font-size:.875rem;font-weight:500;color:var(--ink);transition:all .2s}
.page-btn:hover,.page-btn.active{background:var(--canopy);border-color:var(--canopy);color:#fff}
.page-ellipsis{width:40px;height:40px;display:flex;align-items:center;justify-content:center;color:var(--muted)}

/* ── Alerts / Flash ── */
.alert{padding:1rem 1.5rem;border-radius:var(--radius);font-size:.875rem;margin-bottom:1.5rem;display:flex;align-items:center;gap:.75rem}
.alert-success{background:#ecfdf5;color:#065f46;border:1px solid #a7f3d0}
.alert-error{background:#fef2f2;color:#991b1b;border:1px solid #fca5a5}

/* ── Simple pages placeholder ── */
.simple-page{padding:6rem 0;text-align:center;min-height:60vh;display:flex;align-items:center;justify-content:center}
.simple-page h1{color:var(--canopy);margin-bottom:1rem}
.simple-page p{color:var(--muted);max-width:50ch;margin:0 auto 2rem}

/* ── Responsive ── */
@media(max-width:1100px){
    .cat-grid{grid-template-columns:repeat(4,1fr)}
    .features-grid{grid-template-columns:repeat(2,1fr)}
    .coll-grid{grid-template-columns:repeat(2,1fr)}
    .blog-grid{grid-template-columns:repeat(2,1fr)}
    .process-steps{grid-template-columns:repeat(3,1fr)}
    .process-steps::before{display:none}
    .footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
}
@media(max-width:900px){
    .hero{grid-template-columns:1fr;min-height:auto}
    .hero-left{padding:4rem 2rem}
    .hero-right{height:50vw}
    .stats-inner{grid-template-columns:repeat(2,1fr)}
    .why-import-grid,.cta-inner,.form-grid{grid-template-columns:1fr}
    .products-content-grid{grid-template-columns:1fr}
    .blog-layout .container{grid-template-columns:1fr}
    .blog-post-layout .container{grid-template-columns:1fr}
    .blog-sidebar{display:none}
    .product-detail-grid{grid-template-columns:1fr}
    .features-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
    .nav-links,.nav-actions .btn{display:none}
    .hamburger{display:flex}
    .cat-grid{grid-template-columns:repeat(3,1fr)}
    .coll-grid{grid-template-columns:1fr}
    .form-row{grid-template-columns:1fr}
    .blog-main-grid{grid-template-columns:1fr}
    .blog-featured .blog-title{font-size:1.125rem}
}
@media(max-width:480px){
    .cat-grid{grid-template-columns:repeat(2,1fr)}
    .topbar-right{display:none}
    .footer-grid{grid-template-columns:1fr}
    .stats-inner{grid-template-columns:1fr 1fr}
    .hero-left{padding:3rem 1.5rem}
    .hero-right{height:60vw}
    .hero-badge{bottom:1rem;right:1rem;padding:.75rem 1rem}
}
/* ── Hero enhancements ── */
.hero-title em{font-style:italic;color:var(--gold-2)}
.hero-circle-badge{position:absolute;right:1.5rem;bottom:1.5rem;width:108px;height:108px;background:rgba(23,60,44,.9);border:2px solid var(--gold);border-radius:50%;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;color:#fff;z-index:5;padding:.75rem}
.cb-pct{font-size:1.5rem;font-weight:700;color:var(--gold-2);font-family:var(--font-serif);line-height:1}
.cb-line{font-size:.54rem;font-weight:600;letter-spacing:.05em;text-transform:uppercase;line-height:1.4;margin-top:.3rem;color:rgba(255,255,255,.85)}

/* ── btn-outline (dark border on cream hero) ── */
.btn-outline{display:inline-flex;align-items:center;gap:.5rem;padding:.7rem 1.5rem;border-radius:var(--radius);font-size:.85rem;font-weight:700;border:2px solid var(--canopy);color:var(--canopy);transition:all .2s}
.btn-outline:hover{background:var(--canopy);color:#fff}

/* ── Category icon row ── */
.cat-icon-row{display:flex;justify-content:center;margin:.5rem 0 .25rem}
.cat-icon-circle{width:36px;height:36px;border-radius:50%;background:var(--parchment);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:.9rem}

/* ── Why Choose: 6-item horizontal row ── */
.features-row{display:flex;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;background:#fff}
.feature-pill{flex:1;min-width:120px;display:flex;flex-direction:column;align-items:center;text-align:center;padding:2rem .75rem;border-right:1px solid var(--border);gap:.75rem;transition:background .2s}
.feature-pill:last-child{border-right:none}
.feature-pill:hover{background:var(--parchment)}
.feature-pill-icon{width:52px;height:52px;border-radius:50%;background:var(--parchment);display:flex;align-items:center;justify-content:center;color:var(--canopy);flex-shrink:0}
.feature-pill:hover .feature-pill-icon{background:var(--canopy);color:#fff}
.feature-pill-title{font-size:.78rem;font-weight:700;color:var(--canopy);line-height:1.4}
.feat-pill-hover:last-child{border-right:none!important}
.feat-pill-hover:hover{background:var(--parchment)}

/* ── Collections: dark overlay cards ── */
.coll-card{position:relative;border-radius:var(--radius);overflow:hidden;aspect-ratio:3/4;cursor:pointer}
.coll-img{position:relative;width:100%;height:100%;background:var(--canopy)}
.coll-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.coll-card:hover .coll-img img{transform:scale(1.06)}
.coll-img-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:4rem;background:linear-gradient(135deg,var(--forest),var(--canopy))}
.coll-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.82) 0%,rgba(0,0,0,.3) 50%,transparent 100%);display:flex;flex-direction:column;justify-content:flex-end;padding:1.5rem;gap:.5rem}
.coll-name{font-family:var(--font-serif);font-size:1.1rem;font-weight:700;color:#fff;line-height:1.2}
.coll-desc{font-size:.78rem;color:rgba(255,255,255,.75);line-height:1.4;max-width:24ch}
.coll-btn{display:inline-flex;align-items:center;gap:.4rem;margin-top:.25rem;font-size:.72rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:#fff;border:1px solid rgba(255,255,255,.5);padding:.35rem .9rem;border-radius:4px;width:fit-content;transition:all .2s}
.coll-btn:hover{background:#fff;color:var(--canopy)}

/* ── Product tabs bar ── */
.products-head{display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:1rem;margin-bottom:1rem}
.product-tabs-bar{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:.75rem;margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:1px solid var(--border)}
.product-tabs{display:flex;gap:.25rem;flex-wrap:wrap}
.tab-btn{padding:.45rem 1rem;border-radius:var(--radius);font-size:.78rem;font-weight:600;color:var(--muted);border:1px solid transparent;transition:all .2s;text-transform:uppercase;letter-spacing:.04em}
.tab-btn.active,.tab-btn:hover{background:var(--canopy);color:#fff;border-color:var(--canopy)}
.view-all-link{display:inline-flex;align-items:center;gap:.4rem;font-size:.8rem;font-weight:700;color:var(--canopy);letter-spacing:.04em;text-transform:uppercase;white-space:nowrap}
.view-all-link:hover{color:var(--gold)}

/* ── Product card redesign ── */
.product-card{position:relative;border-radius:var(--radius);overflow:hidden;background:#fff;border:1px solid var(--border);display:flex;flex-direction:column;transition:box-shadow .2s,transform .2s}
.product-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.product-img-wrap{position:relative;overflow:hidden}
.product-img{aspect-ratio:1;overflow:hidden}
.product-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.product-card:hover .product-img img{transform:scale(1.05)}
.product-img-placeholder{aspect-ratio:1;width:100%;display:flex;align-items:center;justify-content:center;font-size:3rem;background:var(--parchment)}
.product-badge{position:absolute;top:.6rem;left:.6rem;font-size:.62rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;padding:.2rem .5rem;border-radius:3px;z-index:2}
.badge-featured{background:var(--canopy);color:#fff}
.badge-new{background:var(--gold);color:#fff}
.badge-bestseller{background:var(--forest);color:#fff}
.product-wish{position:absolute;top:.6rem;right:.6rem;width:30px;height:30px;border-radius:50%;background:#fff;box-shadow:0 1px 6px rgba(0,0,0,.14);display:flex;align-items:center;justify-content:center;color:var(--muted);transition:all .2s;z-index:2;cursor:pointer}
.product-wish:hover{color:#e04;background:#fff1f1}
.product-body{padding:.9rem;display:flex;flex-direction:column;flex:1}
.product-category{font-size:.62rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--gold);margin-bottom:.3rem}
.product-name{font-size:.9rem;font-weight:700;color:var(--canopy);line-height:1.3;margin-bottom:.35rem}
.product-name a{color:inherit}
.product-origin{display:flex;align-items:center;gap:.3rem;font-size:.72rem;color:var(--muted);margin-bottom:.7rem}
.product-origin svg{flex-shrink:0;color:var(--sage)}
.product-quote-btn{display:flex;align-items:center;justify-content:center;gap:.4rem;padding:.55rem 1rem;background:var(--canopy);color:#fff;border-radius:var(--radius);font-size:.75rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;transition:background .2s;margin-top:auto}
.product-quote-btn:hover{background:var(--forest)}

/* ── Why Import: 3-col layout ── */
.why-import-3{display:grid;grid-template-columns:1fr auto 1fr;gap:3rem;align-items:center}
.why-import-text .btn{margin-top:1.5rem}
.why-map-area{display:flex;align-items:center;justify-content:center;padding:1rem}
.why-map-svg{width:180px;height:auto;filter:drop-shadow(0 4px 12px rgba(23,60,44,.15))}
.why-features-stack{display:flex;flex-direction:column;gap:.75rem}
.why-feat{display:flex;align-items:flex-start;gap:.75rem;padding:.85rem 1rem;background:#fff;border-radius:var(--radius);border:1px solid var(--border);transition:box-shadow .2s}
.why-feat:hover{box-shadow:var(--shadow-sm)}
.why-feat-icon{width:36px;height:36px;background:var(--parchment);border-radius:50%;flex-shrink:0;display:flex;align-items:center;justify-content:center;color:var(--canopy)}
.why-feat-title{font-size:.82rem;font-weight:700;color:var(--canopy);margin-bottom:.15rem}
.why-feat-desc{font-size:.73rem;color:var(--muted);line-height:1.35}

/* ── Process track ── */
.process-track{position:relative;display:flex;justify-content:space-between;align-items:flex-start;gap:0;padding:2rem 0}
.process-track::before{content:'';position:absolute;top:2.6rem;left:8%;right:8%;height:2px;background:linear-gradient(to right,var(--canopy) 0%,var(--gold) 50%,var(--canopy) 100%)}
.process-step{flex:1;display:flex;flex-direction:column;align-items:center;text-align:center;position:relative;z-index:1;padding:0 .5rem}
.process-step-icon{width:52px;height:52px;background:var(--canopy);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;margin-bottom:.6rem;border:3px solid var(--cream);box-shadow:0 0 0 2px var(--canopy)}
.process-step-num{font-size:.62rem;font-weight:700;letter-spacing:.1em;color:var(--gold);margin-bottom:.2rem}
.process-step-title{font-size:.85rem;font-weight:700;color:var(--canopy);margin-bottom:.3rem}
.process-step-desc{font-size:.72rem;color:var(--muted);line-height:1.4;max-width:110px;margin:0 auto}

/* ── Footer 5-col ── */
.footer-grid-5{display:grid;grid-template-columns:1.7fr 1fr 1fr 1fr 1fr;gap:2.5rem;padding:3.5rem 0}
.footer-grid-5 .footer-col h5{font-size:.68rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.45);margin-bottom:1rem}
.footer-grid-5 .footer-links{display:flex;flex-direction:column;gap:.45rem}
.footer-grid-5 .footer-links a{font-size:.8rem;color:rgba(255,255,255,.6);transition:color .2s}
.footer-grid-5 .footer-links a:hover{color:var(--gold)}
.footer-grid-5 .footer-contact-item{display:flex;gap:.6rem;align-items:flex-start;margin-bottom:.6rem;font-size:.8rem;color:rgba(255,255,255,.6);line-height:1.4}
.footer-grid-5 .footer-contact-item svg{flex-shrink:0;margin-top:2px;color:var(--gold-2)}
.cert-logos{display:flex;flex-wrap:wrap;gap:.4rem;margin-top:1rem}
.cert-badge{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);border-radius:4px;padding:.3rem .55rem;font-size:.62rem;font-weight:700;letter-spacing:.05em;color:rgba(255,255,255,.75);text-transform:uppercase}
.footer-bottom-links{display:flex;gap:1.5rem}
.footer-bottom-links a{color:rgba(255,255,255,.5);font-size:.78rem}
.footer-bottom-links a:hover{color:rgba(255,255,255,.8)}

/* ── Responsive ── */
@media(max-width:1100px){.footer-grid-5{grid-template-columns:1fr 1fr 1fr;gap:2rem}}
@media(max-width:900px){
  .features-row{flex-wrap:wrap}
  .feature-pill{flex:0 0 33.33%;border-right:none;border-bottom:1px solid var(--border)}
  .why-import-3{grid-template-columns:1fr;gap:2rem}
  .why-map-area{display:none}
  .process-track{flex-wrap:wrap;gap:2rem}
  .process-track::before{display:none}
  .footer-grid-5{grid-template-columns:1fr 1fr;gap:1.5rem}
}
@media(max-width:600px){
  .feature-pill{flex:0 0 50%}
  .footer-grid-5{grid-template-columns:1fr}
  .hero-circle-badge{width:80px;height:80px}
}
/* Ceylon Aroma · UI/UX delta v2 — overrides old css1–css5 */

/* ── Logo ── */
.logo-img{height:56px!important;width:auto!important;display:block!important;object-fit:contain!important}
.logo-img-footer{height:52px!important;filter:brightness(0) invert(1)!important;opacity:.85!important}

/* ── Hero — fix white-text-on-light-bg from old css1 ── */
.hero-left{background:linear-gradient(160deg,#fff 0%,var(--cream) 100%)!important}
.hero-eyebrow{display:inline-flex!important;align-items:center!important;gap:.5rem!important;font-size:.7rem!important;font-weight:700!important;letter-spacing:.1em!important;text-transform:uppercase!important;color:var(--gold)!important;background:rgba(198,134,42,.1)!important;padding:.4rem .9rem!important;border-radius:20px!important;border:1px solid rgba(198,134,42,.22)!important;margin-bottom:1.5rem!important;width:fit-content!important}
.hero-title{color:var(--canopy)!important;font-size:clamp(2.4rem,4.5vw,3.9rem)!important;line-height:1.08!important;letter-spacing:-.05em!important;font-weight:800!important;margin-bottom:1.25rem!important}
.hero-title em{font-style:italic!important;color:var(--gold)!important}
.hero-desc{color:#4B5563!important;font-size:1.05rem!important;line-height:1.72!important;max-width:44ch!important;margin-bottom:2rem!important}
.hero-trust{display:flex!important;align-items:center!important;gap:0!important;margin-top:2rem!important;padding-top:1.75rem!important;border-top:1px solid var(--border)!important;flex-wrap:wrap!important}
.hero-trust-item{display:flex!important;align-items:center!important;gap:.4rem!important;font-size:.68rem!important;font-weight:700!important;color:#6B7280!important;letter-spacing:.05em!important;text-transform:uppercase!important;padding-right:1.25rem!important;margin-right:1.25rem!important;border-right:1px solid var(--border)!important}
.hero-trust-item:last-child{border-right:none!important;padding-right:0!important;margin-right:0!important}
.hero-trust-item svg{color:var(--sage)!important;flex-shrink:0!important}

/* ── Section labels ── */
.section-label{display:inline-flex!important;align-items:center!important;gap:.5rem!important;font-size:.68rem!important;letter-spacing:.14em!important;width:fit-content!important}
.section-label::before{content:''!important;width:20px!important;height:2px!important;background:var(--gold)!important;border-radius:2px!important;flex-shrink:0!important}
.section-head.center .section-label{margin:0 auto!important;justify-content:center!important}

/* ── Stats ── */
.stats-bar{background:linear-gradient(135deg,#173C2C 0%,#1E5237 100%)!important}
.stat-num{color:var(--gold-2)!important;font-weight:800!important}

/* ── Buttons ── */
.btn:active{transform:scale(.98)!important;filter:brightness(.93)!important}
.btn-primary:hover{background:var(--forest)!important;border-color:var(--forest)!important;box-shadow:0 6px 20px rgba(23,60,44,.28)!important;transform:translateY(-1px)!important}
.btn-gold:hover{background:var(--gold-2)!important;border-color:var(--gold-2)!important;box-shadow:0 6px 20px rgba(198,134,42,.3)!important;transform:translateY(-1px)!important}

/* ── Category cards ── */
.cat-card{text-decoration:none!important}
.cat-card:hover{border-color:rgba(198,134,42,.4)!important;box-shadow:0 6px 20px rgba(23,60,44,.1)!important}
.cat-img-placeholder{transition:all .22s!important}
.cat-card:hover .cat-img-placeholder{transform:scale(1.1)!important;border-color:var(--gold)!important}
.cat-img-wrap{transition:all .22s!important}
.cat-card:hover .cat-img-wrap{transform:scale(1.08)!important;border-color:var(--gold)!important}

/* ── Why Choose — full flex layout (missing from server css) ── */
.why-choose-row{display:flex!important;flex-direction:row!important;flex-wrap:nowrap!important;border:1px solid var(--border)!important;border-radius:8px!important;overflow:hidden!important;background:#fff!important;box-shadow:0 1px 3px rgba(0,0,0,.05)!important}
.why-pill{flex:1!important;display:flex!important;flex-direction:column!important;align-items:center!important;text-align:center!important;padding:2rem .75rem!important;border-right:1px solid var(--border)!important;gap:.75rem!important;transition:all .22s!important;cursor:default!important}
.why-pill:last-child{border-right:none!important}
.why-pill:hover{background:var(--parchment)!important}
.why-pill-icon{width:52px!important;height:52px!important;border-radius:50%!important;border:1.5px solid var(--border)!important;display:flex!important;align-items:center!important;justify-content:center!important;color:var(--canopy)!important;transition:all .25s!important;flex-shrink:0!important}
.why-pill:hover .why-pill-icon{background:var(--canopy)!important;color:#fff!important;border-color:var(--canopy)!important;transform:scale(1.08)!important}
.why-pill-label{font-size:.78rem!important;font-weight:700!important;color:var(--canopy)!important;line-height:1.4!important}

/* ── Products grid — fix auto-fill being too wide ── */
.products-grid{display:grid!important;grid-template-columns:repeat(auto-fill,minmax(185px,1fr))!important;gap:1.25rem!important}
.products-tab-hd h2{margin:0!important}
.product-img{background:var(--parchment)!important}
.product-card:hover{box-shadow:0 8px 28px rgba(23,60,44,.12),0 2px 6px rgba(0,0,0,.04)!important;transform:translateY(-4px)!important;border-color:rgba(23,60,44,.2)!important}

/* ── Section padding ── */
.section{padding:5.5rem 0!important}

/* ── Why Import — fix 2-col→3-col and feat grid ── */
.why-import-grid{display:grid!important;grid-template-columns:1fr 260px 1fr!important;gap:3rem!important;align-items:center!important}
.why-import-map{display:flex!important;align-items:center!important;justify-content:center!important}
.why-import-img{width:100%!important;max-width:260px!important;height:340px!important;object-fit:cover!important;border-radius:16px!important;box-shadow:0 20px 60px rgba(23,60,44,.2),0 8px 20px rgba(0,0,0,.08)!important}
.why-feat-grid{display:grid!important;grid-template-columns:1fr 1fr!important;gap:1.25rem!important}
.why-feat-item{padding:1.25rem!important;background:#fff!important;border-radius:10px!important;border:1px solid var(--border)!important;transition:all .2s!important;text-align:center!important}
.why-feat-item:hover{box-shadow:0 1px 3px rgba(0,0,0,.05)!important;border-color:var(--sage)!important}
.why-feat-icon-wrap{width:52px!important;height:52px!important;border-radius:50%!important;border:1.5px solid var(--border)!important;display:flex!important;align-items:center!important;justify-content:center!important;margin:0 auto .75rem!important;color:var(--canopy)!important}
.why-feat-title{font-size:.85rem!important;font-weight:700!important;color:var(--canopy)!important;margin-bottom:.25rem!important}
.why-feat-desc{font-size:.75rem!important;color:var(--muted)!important;line-height:1.4!important}

/* ── Export process — fix missing flex layout ── */
.process-row{position:relative!important;display:flex!important;flex-direction:row!important;justify-content:space-between!important;align-items:flex-start!important;gap:0!important}
.process-line{position:absolute!important;top:2.4rem!important;left:6%!important;right:6%!important;height:2px!important;background:linear-gradient(to right,var(--canopy),var(--gold),var(--canopy))!important;z-index:0!important}
.process-step-wrap{flex:1!important;display:flex!important;flex-direction:column!important;align-items:center!important;text-align:center!important;position:relative!important;z-index:1!important;padding:0 .5rem!important;transition:transform .2s!important}
.process-step-wrap:hover{transform:translateY(-4px)!important}
.process-icon-circle{box-shadow:0 0 0 2px var(--canopy),0 4px 12px rgba(23,60,44,.3)!important;transition:all .22s!important}
.process-step-wrap:hover .process-icon-circle{background:var(--gold)!important;box-shadow:0 0 0 2px var(--gold),0 4px 12px rgba(198,134,42,.3)!important}

/* ── Coffee section ── */
.coffee-img-box{height:340px!important;box-shadow:0 20px 60px rgba(0,0,0,.25)!important}

/* ── Footer CTA ── */
.footer-cta-strip{position:relative!important;overflow:hidden!important}
.footer-cta-strip::before{content:''!important;position:absolute!important;inset:0!important;background:radial-gradient(ellipse at 80% 50%,rgba(198,134,42,.15),transparent 60%)!important;pointer-events:none!important}
.footer-cta-inner{position:relative!important}

/* ── Footer — force dark background ── */
.footer,.footer-top{background:#0F2920!important;color:rgba(255,255,255,.7)!important}
.footer-bottom{background:#0F2920!important;border-top:1px solid rgba(255,255,255,.07)!important;color:rgba(255,255,255,.35)!important}
.logo-img-footer{filter:brightness(0) invert(1)!important;opacity:.85!important}
.footer-social:hover{background:var(--gold)!important;color:#fff!important;transform:translateY(-2px)!important}
.cert-badge{display:inline-block!important;transition:all .2s!important}
.cert-badge:hover{background:rgba(255,255,255,.12)!important;color:#fff!important}
.footer-bottom-links a,.footer-bottom a{color:rgba(255,255,255,.45)!important;transition:color .2s!important}
.footer-bottom-links a:hover,.footer-bottom a:hover{color:rgba(255,255,255,.8)!important}
/* Ceylon Aroma · Professional UI v7 — corporate typography, polish & sample images */

/* ── Section hierarchy ── */
.section-title{font-size:clamp(1.85rem,3vw,2.55rem)!important;font-weight:800!important;letter-spacing:-.04em!important;line-height:1.1!important;color:var(--canopy)!important;margin-bottom:.75rem!important}
.section-sub{font-size:.9rem!important;line-height:1.75!important;color:#6B7280!important;max-width:50ch!important}
.section-head{margin-bottom:3.5rem!important}
.section-head.center .section-sub{margin-left:auto!important;margin-right:auto!important}
.section-label{font-size:.64rem!important;font-weight:700!important;letter-spacing:.16em!important;color:var(--gold)!important;text-transform:uppercase!important}

/* ── Nav ── */
.nav-link{font-size:.72rem!important;font-weight:700!important;letter-spacing:.05em!important;text-transform:uppercase!important;color:#374151!important;transition:color .18s!important}
.nav-link:hover{color:var(--canopy)!important}

/* ── Topbar ── */
.topbar{padding:.42rem 0!important}
.topbar-usp{font-size:.63rem!important;letter-spacing:.03em!important}

/* ── Stats ── */
.stats-bar{padding:2.5rem 0!important}
.stat-item{padding:1.5rem 1rem!important;border-right:1px solid rgba(255,255,255,.08)!important}
.stat-item:last-child{border-right:none!important}
.stat-num{font-size:2.4rem!important;letter-spacing:-.04em!important;line-height:1!important;display:block!important;margin-bottom:.15rem!important}
.stat-label{font-size:.58rem!important;letter-spacing:.14em!important;text-transform:uppercase!important;color:rgba(255,255,255,.5)!important;display:block!important}

/* ── Global button refinement ── */
.btn{transition:all .18s cubic-bezier(.4,0,.2,1)!important;border-radius:5px!important;font-weight:700!important;letter-spacing:.05em!important;font-size:.78rem!important;padding:.72rem 1.6rem!important}
.btn-sm{padding:.46rem 1rem!important;font-size:.72rem!important}
.btn-primary{box-shadow:0 1px 3px rgba(23,60,44,.16)!important}
.btn-gold{box-shadow:0 1px 3px rgba(198,134,42,.16)!important}

/* ── View-all link ── */
.view-all-link{font-size:.7rem!important;font-weight:700!important;letter-spacing:.07em!important;text-transform:uppercase!important;color:var(--canopy)!important;display:inline-flex!important;align-items:center!important;gap:.35rem!important;text-decoration:none!important;transition:gap .18s,color .18s!important}
.view-all-link:hover{gap:.65rem!important;color:var(--gold)!important}

/* ── Category cards ── */
.cat-grid{gap:1rem!important}
.cat-card{border-radius:10px!important;padding:1.35rem .65rem!important;box-shadow:0 1px 3px rgba(0,0,0,.05)!important;transition:all .2s cubic-bezier(.4,0,.2,1)!important}
.cat-card:hover{transform:translateY(-5px)!important;box-shadow:0 8px 24px rgba(23,60,44,.1)!important}
.cat-name{font-size:.72rem!important;font-weight:700!important;letter-spacing:.02em!important;color:var(--canopy)!important;line-height:1.35!important}

/* ── Why Choose ── */
.why-choose-row{border-radius:12px!important;box-shadow:0 2px 8px rgba(0,0,0,.06)!important}
.why-pill{padding:2.25rem .85rem!important}
.why-pill-label{font-size:.74rem!important;letter-spacing:.01em!important}

/* ── Collections ── */
.coll-card{border-radius:12px!important;overflow:hidden!important;box-shadow:0 2px 8px rgba(0,0,0,.07)!important;transition:box-shadow .22s,transform .22s!important}
.coll-card:hover{box-shadow:0 12px 32px rgba(23,60,44,.15)!important;transform:translateY(-4px)!important}
.coll-name{font-size:1.05rem!important;font-weight:700!important;letter-spacing:-.01em!important;line-height:1.2!important}
.coll-desc{font-size:.76rem!important;opacity:.82!important;line-height:1.5!important;margin:.4rem 0 1rem!important}
.coll-btn{font-size:.62rem!important;font-weight:700!important;letter-spacing:.1em!important;text-transform:uppercase!important;padding:.4rem .9rem!important;border-radius:4px!important;border:1.5px solid rgba(255,255,255,.65)!important;color:#fff!important;text-decoration:none!important;transition:all .18s!important;display:inline-block!important}
.coll-btn:hover{background:rgba(255,255,255,.14)!important;border-color:#fff!important}

/* ── Products ── */
.products-tab-hd{margin-bottom:1.75rem!important}
.products-tab-bar{gap:.3rem!important}
.tab-btn{font-size:.7rem!important;font-weight:700!important;letter-spacing:.05em!important;padding:.4rem .9rem!important;border-radius:5px!important;transition:all .15s!important}
.product-card{border-radius:10px!important;transition:all .2s cubic-bezier(.4,0,.2,1)!important;overflow:hidden!important}
.product-name{font-size:.86rem!important;font-weight:700!important;line-height:1.3!important;color:var(--canopy)!important}
.product-origin{font-size:.62rem!important;letter-spacing:.08em!important;text-transform:uppercase!important}
.product-body{padding:.9rem!important}
.product-inquiry,.product-quote-btn{font-size:.68rem!important;font-weight:700!important;letter-spacing:.05em!important;padding:.5rem .9rem!important;border-radius:5px!important;text-transform:uppercase!important}

/* ── Process steps ── */
.process-title{font-size:.75rem!important;font-weight:700!important;color:var(--canopy)!important;margin-top:.65rem!important;line-height:1.35!important}
.process-desc{font-size:.65rem!important;color:#6B7280!important;line-height:1.45!important;margin-top:.25rem!important}
.process-step-num{font-size:.55rem!important;font-weight:800!important;letter-spacing:.1em!important;color:var(--gold)!important}

/* ── Why Import feat items ── */
.why-feat-item{border-radius:10px!important;transition:all .2s!important}
.why-feat-item:hover{transform:translateY(-2px)!important;box-shadow:0 4px 12px rgba(23,60,44,.08)!important;border-color:var(--sage)!important}
.why-feat-title{font-size:.82rem!important;font-weight:700!important;letter-spacing:-.01em!important}
.why-feat-desc{font-size:.73rem!important;line-height:1.5!important;color:#6B7280!important}

/* ── Footer CTA ── */
.footer-cta-strip{padding:4rem 0!important}
.footer-cta-text h3{font-size:clamp(1.6rem,2.8vw,2.2rem)!important;font-weight:800!important;letter-spacing:-.04em!important;line-height:1.12!important;margin-bottom:.6rem!important}
.footer-cta-text p{font-size:.87rem!important;opacity:.75!important;max-width:46ch!important;line-height:1.65!important}

/* ── Footer columns ── */
.footer-col h5{font-size:.64rem!important;font-weight:800!important;letter-spacing:.18em!important;text-transform:uppercase!important;color:rgba(255,255,255,.9)!important;margin-bottom:1.4rem!important}
.footer-links{display:flex!important;flex-direction:column!important;gap:.45rem!important}
.footer-links a{font-size:.8rem!important;color:rgba(255,255,255,.5)!important;text-decoration:none!important;transition:color .18s,padding-left .18s!important;display:block!important}
.footer-links a:hover{color:rgba(255,255,255,.85)!important;padding-left:.3rem!important}
.footer-tagline{font-size:.8rem!important;color:rgba(255,255,255,.45)!important;line-height:1.7!important;margin-top:.75rem!important}
.footer-contact-item{font-size:.79rem!important;color:rgba(255,255,255,.5)!important;display:flex!important;align-items:flex-start!important;gap:.5rem!important;line-height:1.5!important;margin-bottom:.6rem!important}
.footer-contact-item a{color:rgba(255,255,255,.5)!important;text-decoration:none!important;transition:color .18s!important}
.footer-contact-item a:hover{color:rgba(255,255,255,.85)!important}
.footer-bottom{font-size:.71rem!important;padding:1.1rem 0!important}

/* ── Sample images (staging — replace with real uploads) ── */

/* Hero right — use existing server photo */
.hero-right{background-image:url('/images/ancent-ceylon-aroma-species.webp')!important;background-size:cover!important;background-position:center!important}

/* Category placeholders — circular, photo-filled (cycles 8 images) */
.cat-img-placeholder{width:80px!important;height:80px!important;border-radius:50%!important;overflow:hidden!important;background-size:cover!important;background-position:center!important;font-size:0!important;flex-shrink:0!important;border:3px solid var(--border)!important;transition:border-color .22s!important}
.cat-card:hover .cat-img-placeholder{border-color:var(--gold)!important}
.cat-card:nth-child(8n+1) .cat-img-placeholder{background-image:url('https://picsum.photos/seed/ca1/200/200')!important}
.cat-card:nth-child(8n+2) .cat-img-placeholder{background-image:url('https://picsum.photos/seed/ca2/200/200')!important}
.cat-card:nth-child(8n+3) .cat-img-placeholder{background-image:url('https://picsum.photos/seed/ca3/200/200')!important}
.cat-card:nth-child(8n+4) .cat-img-placeholder{background-image:url('https://picsum.photos/seed/ca4/200/200')!important}
.cat-card:nth-child(8n+5) .cat-img-placeholder{background-image:url('https://picsum.photos/seed/ca5/200/200')!important}
.cat-card:nth-child(8n+6) .cat-img-placeholder{background-image:url('https://picsum.photos/seed/ca6/200/200')!important}
.cat-card:nth-child(8n+7) .cat-img-placeholder{background-image:url('https://picsum.photos/seed/ca7/200/200')!important}
.cat-card:nth-child(8n+8) .cat-img-placeholder{background-image:url('https://picsum.photos/seed/ca8/200/200')!important}

/* Product image placeholders — fill the 200px card image area */
.product-img-placeholder{width:100%!important;height:100%!important;min-height:200px!important;background-size:cover!important;background-position:center!important;font-size:0!important;display:block!important}
.products-grid .product-card:nth-child(8n+1) .product-img-placeholder{background-image:url('https://picsum.photos/seed/prod01/400/300')!important}
.products-grid .product-card:nth-child(8n+2) .product-img-placeholder{background-image:url('https://picsum.photos/seed/prod02/400/300')!important}
.products-grid .product-card:nth-child(8n+3) .product-img-placeholder{background-image:url('https://picsum.photos/seed/prod03/400/300')!important}
.products-grid .product-card:nth-child(8n+4) .product-img-placeholder{background-image:url('https://picsum.photos/seed/prod04/400/300')!important}
.products-grid .product-card:nth-child(8n+5) .product-img-placeholder{background-image:url('https://picsum.photos/seed/prod05/400/300')!important}
.products-grid .product-card:nth-child(8n+6) .product-img-placeholder{background-image:url('https://picsum.photos/seed/prod06/400/300')!important}
.products-grid .product-card:nth-child(8n+7) .product-img-placeholder{background-image:url('https://picsum.photos/seed/prod07/400/300')!important}
.products-grid .product-card:nth-child(8n+8) .product-img-placeholder{background-image:url('https://picsum.photos/seed/prod08/400/300')!important}

/* Collection image placeholders — fill the portrait card */
.coll-img-placeholder{width:100%!important;height:100%!important;min-height:280px!important;background-size:cover!important;background-position:center!important;font-size:0!important;display:block!important}
.coll-card:nth-child(1) .coll-img-placeholder{background-image:url('https://picsum.photos/seed/coll01/400/600')!important}
.coll-card:nth-child(2) .coll-img-placeholder{background-image:url('https://picsum.photos/seed/coll02/400/600')!important}
.coll-card:nth-child(3) .coll-img-placeholder{background-image:url('https://picsum.photos/seed/coll03/400/600')!important}
.coll-card:nth-child(4) .coll-img-placeholder{background-image:url('https://picsum.photos/seed/coll04/400/600')!important}
/* Ceylon Aroma · Layout fixes v8 — missing grid/flex rules + subcategory sidebar */

/* ── Sidebar subcategories ── */
.sidebar-cat-parent{display:flex!important;align-items:center!important;justify-content:space-between!important;font-weight:700!important;color:var(--canopy)!important}
.sidebar-chevron{flex-shrink:0!important;transition:transform .2s!important;color:#9CA3AF!important}
.sidebar-chevron.open{transform:rotate(180deg)!important}
.sidebar-subcats{display:none!important;flex-direction:column!important;padding-left:.75rem!important;border-left:2px solid var(--border)!important;margin:.25rem 0 .25rem .5rem!important;gap:.05rem!important}
.sidebar-subcats.open{display:flex!important}
.sidebar-subcat{font-size:.75rem!important;font-weight:400!important;color:#6B7280!important;padding:.3rem .5rem!important;border-radius:4px!important}
.sidebar-subcat:hover{color:var(--canopy)!important;background:var(--parchment)!important}
.sidebar-subcat.active{color:var(--gold)!important;font-weight:600!important;background:rgba(198,134,42,.07)!important}


/* ── Nav CTA button ── */
.nav-cta-btn{margin-left:.75rem!important}

/* ── Coffee CTA grid — 2-col layout ── */
.coffee-grid{display:grid!important;grid-template-columns:1fr 1fr!important;gap:3.5rem!important;align-items:center!important}
.coffee-img-box{border-radius:16px!important;overflow:hidden!important;display:flex!important;align-items:center!important;justify-content:center!important;font-size:5rem!important;background:rgba(255,255,255,.06)!important}

/* ── Knowledge / Blog section header ── */
.knowledge-hd{display:flex!important;justify-content:space-between!important;align-items:flex-end!important;flex-wrap:wrap!important;gap:1rem!important;margin-bottom:2.5rem!important}

/* ── Footer CTA actions — buttons side by side ── */
.footer-cta-actions{display:flex!important;align-items:center!important;gap:.9rem!important;flex-wrap:wrap!important;margin-top:1.75rem!important}

/* ── Footer CTA inner — text + actions layout ── */
.footer-cta-inner{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:3rem!important;flex-wrap:wrap!important}

/* ── Product detail — gallery image ── */
.gallery-main-img{width:100%!important;height:100%!important;object-fit:cover!important;border-radius:14px!important;display:block!important}
.product-gallery-main{border-radius:14px!important;overflow:hidden!important;background:var(--parchment)!important;aspect-ratio:1!important}

/* ── Products listing page header ── */
.page-header{padding:3rem 0 2rem!important;background:var(--cream)!important;border-bottom:1px solid var(--border)!important}
.page-header h1{font-size:clamp(1.6rem,3vw,2.2rem)!important;font-weight:800!important;letter-spacing:-.04em!important;color:var(--canopy)!important;margin-bottom:.5rem!important}
.page-header p{font-size:.88rem!important;color:#6B7280!important;max-width:48ch!important}

/* ── Sidebar cards ── */
.sidebar-card{border-radius:10px!important;border:1px solid var(--border)!important;background:#fff!important;overflow:hidden!important}
.sidebar-card h4{font-size:.7rem!important;font-weight:800!important;letter-spacing:.14em!important;text-transform:uppercase!important;color:var(--canopy)!important;padding:.9rem 1rem!important;border-bottom:1px solid var(--border)!important;margin:0!important}

/* ── Category image placeholders — show real photo via bg ── */
.cat-img-placeholder{background-size:cover!important;background-position:center!important;font-size:0!important;color:transparent!important}

/* Cycle 8 spice/nature photos across the category cards */
.cat-grid .cat-card:nth-child(8n+1) .cat-img-placeholder{background-image:url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?w=220&h=160&fit=crop&auto=format')!important}
.cat-grid .cat-card:nth-child(8n+2) .cat-img-placeholder{background-image:url('https://images.unsplash.com/photo-1544787219-7f47ccb76574?w=220&h=160&fit=crop&auto=format')!important}
.cat-grid .cat-card:nth-child(8n+3) .cat-img-placeholder{background-image:url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?w=220&h=160&fit=crop&auto=format')!important}
.cat-grid .cat-card:nth-child(8n+4) .cat-img-placeholder{background-image:url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=220&h=160&fit=crop&auto=format')!important}
.cat-grid .cat-card:nth-child(8n+5) .cat-img-placeholder{background-image:url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?w=220&h=160&fit=crop&auto=format')!important}
.cat-grid .cat-card:nth-child(8n+6) .cat-img-placeholder{background-image:url('https://images.unsplash.com/photo-1567880905822-56f8e06fe630?w=220&h=160&fit=crop&auto=format')!important}
.cat-grid .cat-card:nth-child(8n+7) .cat-img-placeholder{background-image:url('https://images.unsplash.com/photo-1605540436563-5bca919ae766?w=220&h=160&fit=crop&auto=format')!important}
.cat-grid .cat-card:nth-child(8n+8) .cat-img-placeholder{background-image:url('https://images.unsplash.com/photo-1525904097878-94fb15835963?w=220&h=160&fit=crop&auto=format')!important}

/* ── Product image placeholders — real photos ── */
.product-img-placeholder{background-size:cover!important;background-position:center!important;font-size:0!important;color:transparent!important;width:100%!important;height:100%!important}
.products-grid .product-card:nth-child(8n+1) .product-img-placeholder{background-image:url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?w=300&h=300&fit=crop&auto=format')!important}
.products-grid .product-card:nth-child(8n+2) .product-img-placeholder{background-image:url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=300&h=300&fit=crop&auto=format')!important}
.products-grid .product-card:nth-child(8n+3) .product-img-placeholder{background-image:url('https://images.unsplash.com/photo-1544787219-7f47ccb76574?w=300&h=300&fit=crop&auto=format')!important}
.products-grid .product-card:nth-child(8n+4) .product-img-placeholder{background-image:url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?w=300&h=300&fit=crop&auto=format')!important}
.products-grid .product-card:nth-child(8n+5) .product-img-placeholder{background-image:url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?w=300&h=300&fit=crop&auto=format')!important}
.products-grid .product-card:nth-child(8n+6) .product-img-placeholder{background-image:url('https://images.unsplash.com/photo-1567880905822-56f8e06fe630?w=300&h=300&fit=crop&auto=format')!important}
.products-grid .product-card:nth-child(8n+7) .product-img-placeholder{background-image:url('https://images.unsplash.com/photo-1605540436563-5bca919ae766?w=300&h=300&fit=crop&auto=format')!important}
.products-grid .product-card:nth-child(8n+8) .product-img-placeholder{background-image:url('https://images.unsplash.com/photo-1525904097878-94fb15835963?w=300&h=300&fit=crop&auto=format')!important}

/* ── Collection image placeholders ── */
.coll-img-placeholder{background-size:cover!important;background-position:center!important;font-size:0!important;color:transparent!important;width:100%!important;height:100%!important}
.coll-grid .coll-card:nth-child(4n+1) .coll-img-placeholder{background-image:url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?w=400&h=520&fit=crop&auto=format')!important}
.coll-grid .coll-card:nth-child(4n+2) .coll-img-placeholder{background-image:url('https://images.unsplash.com/photo-1544787219-7f47ccb76574?w=400&h=520&fit=crop&auto=format')!important}
.coll-grid .coll-card:nth-child(4n+3) .coll-img-placeholder{background-image:url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?w=400&h=520&fit=crop&auto=format')!important}
.coll-grid .coll-card:nth-child(4n+4) .coll-img-placeholder{background-image:url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=400&h=520&fit=crop&auto=format')!important}

/* ── About page ── */
.about-hero{background:linear-gradient(160deg,#fff 0%,var(--cream) 100%);padding:5rem 0 4rem;border-bottom:1px solid var(--border)}
.about-hero-title{font-size:clamp(2.2rem,5vw,3.6rem);font-weight:800;letter-spacing:-.05em;line-height:1.08;color:var(--canopy);margin:1rem 0 .75rem}
.about-hero-title em{font-style:italic;color:var(--gold)}
.about-intro-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.about-img-col{position:relative}
.about-main-img{width:100%;height:420px;object-fit:cover;border-radius:16px;box-shadow:0 20px 60px rgba(23,60,44,.18)}
.about-stat-pill{position:absolute;bottom:-1.25rem;left:1.5rem;background:var(--canopy);color:#fff;border-radius:10px;padding:.85rem 1.35rem;display:flex;flex-direction:column;gap:.1rem;box-shadow:0 8px 24px rgba(23,60,44,.3)}
.about-stat-num{font-size:1.8rem;font-weight:800;letter-spacing:-.04em;color:var(--gold-2);line-height:1}
.about-stat-lbl{font-size:.6rem;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.6)}
.about-why-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:1.25rem}
.about-why-card{background:#fff;border:1px solid var(--border);border-radius:12px;padding:1.5rem;transition:all .2s}
.about-why-card:hover{box-shadow:0 6px 20px rgba(23,60,44,.08);transform:translateY(-3px);border-color:rgba(198,134,42,.3)}
.about-why-icon{width:48px;height:48px;border-radius:50%;border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center;color:var(--canopy);margin-bottom:1rem}
.about-why-title{font-size:.88rem;font-weight:700;color:var(--canopy);margin-bottom:.4rem;line-height:1.3}
.about-why-desc{font-size:.78rem;color:#6B7280;line-height:1.6}
.about-values-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:1.25rem;margin-bottom:3rem}
.about-value-card{background:#fff;border:1px solid var(--border);border-radius:12px;padding:1.75rem 1.25rem;text-align:center;transition:all .2s}
.about-value-card:hover{box-shadow:0 6px 20px rgba(23,60,44,.08);transform:translateY(-3px);border-color:var(--sage)}
.about-value-icon{width:56px;height:56px;border-radius:50%;background:rgba(23,60,44,.06);border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;color:var(--canopy)}
.about-value-title{font-size:.9rem;font-weight:800;color:var(--canopy);letter-spacing:-.01em;margin-bottom:.4rem}
.about-value-desc{font-size:.76rem;color:#6B7280;line-height:1.55}
.about-trust-bar{display:flex;align-items:center;flex-wrap:wrap;gap:0;background:var(--canopy);border-radius:12px;overflow:hidden}
.about-trust-item{flex:1;min-width:180px;display:flex;align-items:center;gap:.5rem;padding:1.1rem 1.5rem;font-size:.72rem;font-weight:700;letter-spacing:.04em;color:rgba(255,255,255,.8);border-right:1px solid rgba(255,255,255,.08)}
.about-trust-item:last-child{border-right:none}
.about-trust-item svg{color:var(--gold);flex-shrink:0}
.about-trust-phone{color:var(--gold-2)!important;font-size:.85rem!important}

/* ── Hero slideshow ── */
.hero-slides{position:absolute!important;inset:0!important;overflow:hidden!important}
.hero-slide{position:absolute!important;inset:0!important;opacity:0!important;transition:opacity 1.2s ease!important}
.hero-slide.active{opacity:1!important}
.hero-slide img{width:100%!important;height:100%!important;object-fit:cover!important;display:block!important}
.hero-slide-fallback{display:flex!important;align-items:center!important;justify-content:center!important;width:100%!important;height:100%!important;padding:3rem!important}
/* Ceylon Aroma · app-css9.css v17 — Forest Green & Amber Gold */

/* ══════════════════════════════════════════
   FOREST GREEN & AMBER GOLD PALETTE
   Deep forest green · Warm amber · Cream ground
══════════════════════════════════════════ */
:root{
  --green:        #1B4332;   /* deep forest green */
  --green-light:  #2D6A4F;   /* medium forest green */

  --gold:         #C8922A;   /* warm amber gold */
  --gold-2:       #D4A845;   /* lighter amber */

  --red:          #C8922A;
  --red-light:    #D4A845;

  --cream:        #f5edd8;   /* warm parchment cream */
  --cream-alt:    #f0ebe0;

  --ink:          #1a2a20;   /* very dark forest */
  --muted:        #4e6657;   /* muted grey-green */
}

/* ══════════════════════════════════════════
   HERO SECTION — cream parchment base
══════════════════════════════════════════ */
.hero.hero-split{
  position:relative!important;
  background:#f5edd8!important;
  overflow:hidden!important;
  display:block!important;
  padding:0!important;
  min-height:unset!important;
  grid-template-columns:unset!important;
}

/* ══════════════════════════════════════════
   RIGHT PANEL — image slider
   Covers exactly right 60% of viewport, full height
══════════════════════════════════════════ */
.hs-right{
  position:absolute!important;
  top:0!important;right:0!important;bottom:0!important;
  left:40%!important;           /* image starts at 40% from left */
  z-index:1!important;
  overflow:hidden!important;    /* clips slides within this exact area */
}

/* Slides container fills hs-right exactly */
.hs-slides{
  position:absolute!important;
  inset:0!important;
  overflow:hidden!important;
}

/* Each slide — full size */
.hs-slide{
  position:absolute!important;
  inset:0!important;
  opacity:0!important;
  transition:opacity 2s cubic-bezier(.4,0,.2,1)!important;
}
.hs-slide.active{opacity:1!important}

/* Image fills the slide exactly — full width & height visible area */
.hs-slide img{
  position:absolute!important;
  inset:0!important;
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  object-position:center center!important;
  display:block!important;
  transform:scale(1.06)!important;
  transition:transform 10s cubic-bezier(.25,.46,.45,.94)!important;
}
.hs-slide.active img{transform:scale(1)!important}

/* Cream fade — left edge of image blends into earthy cream panel */
.hs-fade{
  position:absolute!important;
  top:0!important;left:0!important;
  width:190px!important;height:100%!important;
  background:linear-gradient(90deg,#f5edd8 0%,rgba(245,237,216,.55) 55%,rgba(245,237,216,0) 100%)!important;
  z-index:4!important;
  pointer-events:none!important;
}

/* Dot nav — bottom right of image area */
.hs-dots{
  position:absolute!important;
  bottom:1.25rem!important;right:1.5rem!important;
  z-index:5!important;
  display:flex!important;
  gap:.5rem!important;align-items:center!important;
}
.hs-dot{
  width:8px!important;height:8px!important;
  border-radius:50%!important;
  background:rgba(255,255,255,.5)!important;
  border:none!important;cursor:pointer!important;padding:0!important;
  transition:background .3s,transform .3s!important;
}
.hs-dot.active{background:#fff!important;transform:scale(1.4)!important}

/* ══════════════════════════════════════════
   LEFT PANEL — earthy cream panel
   Dark ink text on warm parchment
══════════════════════════════════════════ */
.hs-left{
  position:relative!important;
  z-index:3!important;
  width:48%!important;
  min-height:520px!important;
  display:flex!important;
  align-items:center!important;
  background:#f5edd8!important;
}

.hs-left-inner{
  position:relative!important;
  z-index:2!important;
  padding:4rem clamp(2rem,3vw,3.5rem) 4rem clamp(1.5rem,calc((100vw - 1280px)/2 + 2.5rem),7rem)!important;
  max-width:560px!important;
}

/* ══════════════════════════════════════════
   TITLE
══════════════════════════════════════════ */
.hero.hero-split .hero-title{
  font-size:clamp(2.3rem,3.8vw,3.5rem)!important;
  color:var(--ink,#2e2a1a)!important;
  font-weight:800!important;
  line-height:1.1!important;
  letter-spacing:-.03em!important;
  margin:0 0 1.1rem!important;
  text-shadow:none!important;
  animation:none!important;
}
.hero.hero-split .hero-title em{
  color:var(--gold,#845F42)!important;   /* warm tan italic */
  font-style:italic!important;
}

/* ══════════════════════════════════════════
   DESCRIPTION
══════════════════════════════════════════ */
.hero.hero-split .hero-desc{
  color:var(--muted,#6b5530)!important;
  font-size:.95rem!important;
  line-height:1.75!important;
  margin:0 0 1.75rem!important;
  animation:none!important;
}

/* ══════════════════════════════════════════
   CTA BUTTONS
══════════════════════════════════════════ */
.hero.hero-split .hero-cta{
  display:flex!important;gap:.75rem!important;flex-wrap:wrap!important;animation:none!important;
}
.hero.hero-split .btn-primary{
  background:var(--green,#4F5525)!important;color:#f5edd8!important;
  border:2px solid var(--green,#4F5525)!important;
  font-size:.8rem!important;font-weight:700!important;
  letter-spacing:.04em!important;text-transform:uppercase!important;
  padding:.72rem 1.4rem!important;border-radius:4px!important;
  display:inline-flex!important;align-items:center!important;gap:.4rem!important;
  text-decoration:none!important;backdrop-filter:none!important;
  box-shadow:0 4px 16px rgba(79,85,37,.25)!important;
  transition:background .2s,transform .2s,box-shadow .2s!important;
}
.hero.hero-split .btn-primary:hover{
  background:var(--green-light,#687030)!important;
  transform:translateY(-2px)!important;
  box-shadow:0 6px 22px rgba(79,85,37,.35)!important;
}
.hero.hero-split .btn-outline{
  background:transparent!important;
  color:var(--green,#4F5525)!important;
  border:2px solid var(--green,#4F5525)!important;
  font-size:.8rem!important;font-weight:700!important;
  letter-spacing:.04em!important;text-transform:uppercase!important;
  padding:.72rem 1.4rem!important;border-radius:4px!important;
  display:inline-flex!important;align-items:center!important;gap:.4rem!important;
  text-decoration:none!important;backdrop-filter:none!important;
  transition:background .2s,color .2s,transform .2s!important;
}
.hero.hero-split .btn-outline:hover{
  background:var(--green,#4F5525)!important;
  color:#f5edd8!important;
  transform:translateY(-2px)!important;
}

/* ══════════════════════════════════════════
   100% PURE CEYLON GOODNESS BADGE
   Sits at the image/text boundary (left: 40% of viewport)
══════════════════════════════════════════ */
.hero-purity-badge{
  position:absolute!important;
  left:calc(40% - 55px)!important;
  top:50%!important;
  transform:translateY(-50%)!important;
  z-index:10!important;
  width:130px!important;height:130px!important;
  background:rgba(255,252,245,.97)!important;
  border-radius:50%!important;
  border:2px solid var(--gold,#845F42)!important;
  box-shadow:0 0 0 6px rgba(132,95,66,.1),0 6px 28px rgba(79,85,37,.2)!important;
  display:flex!important;flex-direction:column!important;
  align-items:center!important;justify-content:center!important;
  text-align:center!important;padding:.5rem!important;
}
.hpb-pct{
  font-size:1.9rem!important;font-weight:800!important;
  color:var(--green,#4F5525)!important;line-height:1!important;letter-spacing:-.03em!important;
}
.hpb-label{
  font-size:.44rem!important;font-weight:700!important;
  letter-spacing:.1em!important;text-transform:uppercase!important;
  color:var(--ink,#2e2a1a)!important;line-height:1.6!important;margin-top:.25rem!important;
}

/* ══════════════════════════════════════════
   COFFEE BANNER
══════════════════════════════════════════ */
.cta-section{
  background-image:url('/images/coffee-banner.webp')!important;
  background-size:cover!important;background-position:center right!important;
  position:relative!important;
}
.cta-section::before{
  content:''!important;position:absolute!important;inset:0!important;
  background:rgba(4,18,9,.6)!important;z-index:1!important;
}

/* ══════════════════════════════════════════
   CATEGORY GRID — 7 per row → responsive
══════════════════════════════════════════ */
.cat-grid{grid-template-columns:repeat(5,1fr)!important}
@media(max-width:900px){.cat-grid{grid-template-columns:repeat(3,1fr)!important}}
@media(max-width:560px){.cat-grid{grid-template-columns:repeat(2,1fr)!important}}

/* Category icon circle — white+gold, straddles image/text boundary */
.cat-icon-circle{
  width:54px!important;height:54px!important;
  border-radius:50%!important;
  background:#fff!important;
  border:1.5px solid rgba(200,146,42,.5)!important;
  box-shadow:0 2px 10px rgba(0,0,0,.09)!important;
  display:flex!important;align-items:center!important;justify-content:center!important;
  color:var(--green,#1B4332)!important;
  margin-top:-27px!important;margin-bottom:.55rem!important;
  flex-shrink:0!important;position:relative!important;z-index:2!important;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media(max-width:1024px){
  .hero.hero-split .hero-title{font-size:clamp(2rem,3.2vw,2.7rem)!important}
  .hero-purity-badge{width:112px!important;height:112px!important}
  .hpb-pct{font-size:1.6rem!important}
}
@media(max-width:768px){
  .hs-right{position:relative!important;left:0!important;height:300px!important;width:100%!important}
  .hs-left{width:100%!important;min-height:unset!important;background:#f5edd8!important}
  .hs-fade{display:none!important}
  .hero-purity-badge{
    position:relative!important;left:auto!important;top:auto!important;
    transform:none!important;margin:-56px auto 0!important;
    display:flex!important;width:110px!important;height:110px!important;
  }
  .hero.hero-split .hero-title{font-size:2rem!important}
  .hs-left-inner{padding:2.5rem 1.5rem!important}
}
@media(max-width:480px){
  .hero.hero-split .hero-title{font-size:1.8rem!important}
  .hero.hero-split .hero-desc{font-size:.875rem!important}
  .hero.hero-split .btn-primary,.hero.hero-split .btn-outline{font-size:.75rem!important;padding:.62rem 1rem!important}
}

/* ══════════════════════════════════════════
   EARTHY & NATURAL — LIGHT THEME
   Cream nav · Olive green text & buttons
   Warm tan accents · White/cream backgrounds
══════════════════════════════════════════ */

/* Topbar — forest green bar */
div.topbar,
.topbar{
  background:#1B4332!important;
  border-bottom:none!important;
  color:rgba(255,255,255,.85)!important;
}
div.topbar span,
div.topbar a,
div.topbar p,
div.topbar div,
div.topbar select,
.topbar span,
.topbar p{
  color:rgba(255,255,255,.85)!important;
}
div.topbar svg,
.topbar svg{
  stroke:rgba(255,255,255,.7)!important;
}
div.topbar select,
.topbar-lang select{
  background:transparent!important;
  border-color:rgba(255,255,255,.3)!important;
  color:rgba(255,255,255,.85)!important;
}
.topbar-cta,
div.topbar a.topbar-cta{
  background:#C8922A!important;
  color:#fff!important;
  font-size:.68rem!important;font-weight:700!important;
  letter-spacing:.07em!important;text-transform:uppercase!important;
  padding:.38rem .9rem!important;border-radius:3px!important;
  text-decoration:none!important;
  display:inline-flex!important;align-items:center!important;gap:.3rem!important;
  transition:background .2s!important;
}
.topbar-cta:hover,
div.topbar a.topbar-cta:hover{background:#D4A845!important}

/* Navigation — white bar, dark text */
.navbar,.nav,.site-nav,.top-bar,header.header,nav.main-nav{
  background:#fff!important;
  border-bottom:1px solid rgba(27,67,50,.1)!important;
  box-shadow:0 1px 6px rgba(27,67,50,.06)!important;
}
.nav-link,.navbar-brand,.site-nav a,.nav a{
  color:var(--ink,#1a2a20)!important;
}
.nav-link:hover,.site-nav a:hover,.nav a:hover{
  color:var(--green,#1B4332)!important;
}
.navbar-brand strong,.logo-text,.brand-name{
  color:var(--green,#1B4332)!important;
}

/* Hero eyebrow badge */
.hero-eyebrow{
  display:inline-flex!important;align-items:center!important;gap:.4rem!important;
  font-size:.68rem!important;font-weight:700!important;
  letter-spacing:.12em!important;text-transform:uppercase!important;
  color:var(--green,#1B4332)!important;
  background:rgba(27,67,50,.09)!important;
  border:1px solid rgba(27,67,50,.2)!important;
  padding:.35rem .9rem!important;border-radius:100px!important;
  margin-bottom:1.1rem!important;
}

/* Footer — deep forest green */
footer,.footer,.site-footer{
  background:#1B4332!important;
  color:rgba(255,255,255,.72)!important;
  border-top:none!important;
}
footer a,.footer a,.site-footer a{color:rgba(255,255,255,.72)!important}
footer a:hover,.footer a:hover,.site-footer a:hover{color:#fff!important}
.footer-heading,.footer h3,.footer h4{color:#fff!important}

/* Stats bar */
.stats-bar{background:var(--green,#1B4332)!important;margin:0!important;padding:0!important}
.stats-inner{
  display:flex!important;
  justify-content:center!important;
  align-items:stretch!important;
  padding:0!important;
  max-width:1200px!important;
  margin:0 auto!important;
}
.stat-item{
  display:flex!important;
  align-items:center!important;
  gap:.75rem!important;
  flex:1!important;
  border-right:1px solid rgba(255,255,255,.12)!important;
  padding:1.4rem 1.5rem!important;
}
.stat-item:last-child{border-right:none!important}
.stat-icon{
  display:flex!important;
  flex-shrink:0!important;
  width:38px!important;height:38px!important;
  align-items:center!important;justify-content:center!important;
  color:var(--gold,#C8922A)!important;
}
.stat-text{display:flex!important;flex-direction:column!important;gap:.1rem!important}

/* Hotline / pills — warm tan */
.hotline-pill,.hotline,.cta-pill,.promo-pill{
  background:var(--gold,#845F42)!important;
  color:#fff!important;
  border-color:var(--gold,#845F42)!important;
}

/* Announcement bar — very light olive tint */
.announcement-bar,.top-notice,.promo-bar{
  background:#f0edd8!important;
  color:var(--ink,#2e2a1a)!important;
  border-bottom:1px solid rgba(79,85,37,.15)!important;
}

/* Section backgrounds — warm parchment (ancient Ceylon feel) */
.section{background:#fdfaf5!important;}
.section.categories{background:#fdfaf5!important;}
.section.why-choose{background:var(--green,#1B4332)!important;}
.section.collections{background:#fdfaf5!important;}
.section.products-section{background:#fdfaf5!important;}
.section.why-import{background:var(--cream-alt,#f0ebe0)!important;}
.section.export-process{background:#f5f0e8!important;}
.section.knowledge{background:#fdfaf5!important;}

/* Section labels — olive green */
.section-label{color:var(--green,#4F5525)!important}

/* Section titles */
.section-title{color:var(--ink,#2e2a1a)!important}
.section-sub{color:var(--muted,#6b5530)!important}

/* Why-choose icons — legacy, replaced by why-card */
.why-pill-icon{
  background:rgba(27,67,50,.1)!important;
  color:var(--green,#1B4332)!important;
  border-radius:50%!important;
}
.why-pill-label{color:var(--ink,#1a2a20)!important}

/* Category cards — overrides cleared; cinematic styles in main block below */
.cat-name{color:#fff!important}

/* Process steps */
.process-num{color:var(--gold,#845F42)!important}
.process-icon-circle{background:var(--green,#4F5525)!important;color:#f5edd8!important}
.process-title{color:var(--ink,#2e2a1a)!important}

/* Buttons site-wide */
.btn-primary,.btn.btn-primary{
  background:var(--green,#4F5525)!important;
  color:#f5edd8!important;
  border-color:var(--green,#4F5525)!important;
}
.btn-primary:hover,.btn.btn-primary:hover{
  background:var(--green-light,#687030)!important;
}
.btn-gold,.btn.btn-gold{
  background:var(--gold,#845F42)!important;
  color:#fff!important;
  border-color:var(--gold,#845F42)!important;
}
.btn-gold:hover,.btn.btn-gold:hover{
  background:var(--gold-2,#9e7250)!important;
}

/* Blog / knowledge cards */
.blog-card{background:#fff!important;border:1px solid rgba(79,85,37,.1)!important}
.blog-title a{color:var(--ink,#2e2a1a)!important}
.blog-cat{background:var(--green,#4F5525)!important;color:#f5edd8!important}

/* ── Coffee CTA — pixel-perfect banner ── */
.coffee-cta-section{
  position:relative!important;
  min-height:320px!important;
  background-image:url('/images/coffee-banner.webp')!important;
  background-size:cover!important;
  background-position:center right!important;
  display:flex!important;align-items:center!important;
}
.coffee-cta-section::before{
  content:''!important;position:absolute!important;inset:0!important;
  background:linear-gradient(90deg,rgba(3,14,6,.85) 0%,rgba(3,14,6,.7) 45%,rgba(3,14,6,.2) 100%)!important;
  z-index:1!important;
}
.coffee-cta-inner{
  position:relative!important;z-index:2!important;
  padding:4rem clamp(1.5rem,calc((100vw - 1280px)/2 + 2.5rem),6rem)!important;
  max-width:700px!important;
}
.coffee-cta-heading{
  font-family:'Playfair Display',Georgia,serif!important;
  font-size:clamp(2rem,3.5vw,3rem)!important;
  font-weight:700!important;color:#fff!important;
  line-height:1.15!important;margin:0 0 1rem!important;
}
.coffee-cta-heading em{
  font-style:italic!important;
  color:var(--gold,#C8922A)!important;
  display:block!important;
}
.coffee-cta-desc{
  color:rgba(255,255,255,.65)!important;
  font-size:.92rem!important;line-height:1.7!important;
  margin:0 0 1.75rem!important;
}
.coffee-cta-btn{
  display:inline-flex!important;align-items:center!important;gap:.45rem!important;
  background:transparent!important;
  color:#fff!important;
  border:2px solid rgba(255,255,255,.7)!important;
  border-radius:4px!important;
  padding:.7rem 1.5rem!important;
  font-size:.78rem!important;font-weight:700!important;
  letter-spacing:.06em!important;text-transform:uppercase!important;
  text-decoration:none!important;
  transition:background .2s,border-color .2s!important;
}
.coffee-cta-btn:hover{
  background:rgba(255,255,255,.1)!important;
  border-color:#fff!important;
}
@media(max-width:768px){
  .coffee-cta-section{min-height:260px!important}
  .coffee-cta-inner{padding:3rem 1.5rem!important}
}

/* ══════════════════════════════════════════
   PRODUCTS MEGA-MENU
══════════════════════════════════════════ */
/* Mega-menu — fixed to viewport, positioned by JS below the nav bar */
.nav-mega{
  display:none!important;
  position:fixed!important;
  left:0!important;right:0!important;
  width:100%!important;
  background:#fff!important;
  border-top:2px solid rgba(79,85,37,.12)!important;
  box-shadow:0 16px 48px rgba(46,42,26,.14)!important;
  z-index:9999!important;
}
.nav-mega-wrap.mega-open .nav-mega{display:block!important}
.nav-mega-wrap{position:static!important}

.nav-mega-inner{
  max-width:1280px!important;
  margin:0 auto!important;
  padding:1.5rem 2rem 2rem!important;
}

/* Top bar: heading + view-all */
.nav-mega-topbar{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  margin-bottom:1.1rem!important;
  padding-bottom:.75rem!important;
  border-bottom:1px solid rgba(79,85,37,.1)!important;
}
.nav-mega-heading{
  font-size:.65rem!important;
  font-weight:700!important;
  letter-spacing:.14em!important;
  text-transform:uppercase!important;
  color:var(--muted,#6b5530)!important;
}
.nav-mega-all{
  font-size:.72rem!important;
  font-weight:700!important;
  color:var(--green,#4F5525)!important;
  text-decoration:none!important;
  display:inline-flex!important;
  align-items:center!important;
  gap:.3rem!important;
  letter-spacing:.04em!important;
  transition:opacity .15s!important;
}
.nav-mega-all:hover{opacity:.75!important}

/* Column grid — 5 columns */
.nav-mega-grid{
  display:grid!important;
  grid-template-columns:repeat(5,1fr)!important;
  gap:1.5rem 1rem!important;
}

.nav-mega-col{
  display:flex!important;
  flex-direction:column!important;
  gap:.3rem!important;
}

/* Main category header link */
.nav-mega-cat{
  font-size:.78rem!important;
  font-weight:700!important;
  color:var(--green,#4F5525)!important;
  text-decoration:none!important;
  letter-spacing:.01em!important;
  padding:.2rem 0!important;
  border-bottom:1.5px solid rgba(79,85,37,.15)!important;
  margin-bottom:.3rem!important;
  display:block!important;
  transition:color .15s!important;
}
.nav-mega-cat:hover,.nav-mega-cat.active{
  color:var(--gold,#845F42)!important;
  border-bottom-color:var(--gold,#845F42)!important;
}

/* Sub-category list */
.nav-mega-subs{
  list-style:none!important;
  padding:0!important;margin:0!important;
  display:flex!important;flex-direction:column!important;gap:.18rem!important;
}
.nav-mega-subs a{
  font-size:.72rem!important;
  color:var(--muted,#6b5530)!important;
  text-decoration:none!important;
  display:inline-flex!important;align-items:center!important;gap:.25rem!important;
  padding:.15rem 0!important;
  transition:color .15s,padding-left .15s!important;
}
.nav-mega-subs a:hover,.nav-mega-subs a.active{
  color:var(--green,#4F5525)!important;
  padding-left:.35rem!important;
}
.nav-mega-subs svg{flex-shrink:0!important;opacity:.5!important}

/* ══════════════════════════════════════════
   MOBILE ACCORDION (Products)
══════════════════════════════════════════ */
.mobile-accordion{width:100%!important}
.mobile-accordion-btn{
  width:100%!important;
  display:flex!important;align-items:center!important;justify-content:space-between!important;
  background:none!important;border:none!important;cursor:pointer!important;
  text-align:left!important;
}
.mobile-acc-icon{
  transition:transform .25s!important;flex-shrink:0!important;
}
.mobile-accordion-btn[aria-expanded="true"] .mobile-acc-icon{
  transform:rotate(180deg)!important;
}
.mobile-accordion-body{
  display:none;
  flex-direction:column!important;
  padding:.25rem 0 .5rem 1rem!important;
  border-left:2px solid rgba(79,85,37,.2)!important;
  margin-left:.5rem!important;
  gap:.1rem!important;
}
.mobile-accordion-body.open{display:flex!important}

.mobile-sub-link{
  font-size:.8rem!important;
  color:var(--ink,#2e2a1a)!important;
  text-decoration:none!important;
  padding:.3rem .4rem!important;
  border-radius:3px!important;
  display:block!important;
  transition:background .15s,color .15s!important;
}
.mobile-sub-link:hover{background:rgba(79,85,37,.08)!important;color:var(--green,#4F5525)!important}
.mobile-sub-all{
  font-weight:700!important;color:var(--green,#4F5525)!important;
  margin-bottom:.35rem!important;
}
.mobile-sub-cat{font-weight:600!important}
.mobile-sub-sub{
  font-size:.75rem!important;
  padding-left:1rem!important;
  color:var(--muted,#4e6657)!important;
}

/* ══════════════════════════════════════════
   ROYAL PREMIUM — Polish & Elegance
══════════════════════════════════════════ */

/* Section labels — gold uppercase */
.section-label{
  font-size:.63rem!important;font-weight:700!important;
  letter-spacing:.2em!important;text-transform:uppercase!important;
  color:var(--gold,#C8922A)!important;
  display:inline-block!important;margin-bottom:.55rem!important;
}

/* Section titles — serif with gold underline */
.section-title{
  font-family:'Playfair Display',Georgia,serif!important;
  font-size:clamp(1.55rem,2.4vw,2.1rem)!important;
  font-weight:700!important;letter-spacing:-.02em!important;
  line-height:1.2!important;color:var(--ink,#1a2a20)!important;
}
.section-head.center .section-title::after,
.section-title::after{
  content:''!important;display:block!important;
  width:42px!important;height:2px!important;
  background:linear-gradient(90deg,var(--gold,#C8922A),var(--gold-2,#D4A845))!important;
  margin:.7rem 0 0!important;border-radius:2px!important;
}
.section-head.center .section-title::after{margin:.7rem auto 0!important}

/* Section sub */
.section-sub{
  font-size:.93rem!important;line-height:1.75!important;
  color:var(--muted,#4e6657)!important;
}
.section-head.center .section-sub{
  max-width:50ch!important;
  margin-left:auto!important;margin-right:auto!important;
}

/* Stat numbers — gold serif */
.stat-num{
  font-family:'Playfair Display',Georgia,serif!important;
  color:var(--gold,#C8922A)!important;
  font-size:1.6rem!important;font-weight:700!important;
  letter-spacing:-.02em!important;line-height:1.1!important;
}
.stat-label{
  font-size:.62rem!important;letter-spacing:.08em!important;
  text-transform:uppercase!important;color:rgba(255,255,255,.55)!important;
  margin-top:.15rem!important;
}

/* Category cards — cinematic full-bleed image with name overlay */
.cat-card{
  position:relative!important;
  overflow:hidden!important;
  border-radius:14px!important;
  aspect-ratio:3/4!important;
  display:block!important;
  background:#1a2e23!important;
  box-shadow:0 4px 20px rgba(0,0,0,.15)!important;
  border:none!important;
  text-decoration:none!important;
  transition:transform .3s,box-shadow .3s!important;
}
.cat-card:hover{
  transform:translateY(-6px)!important;
  box-shadow:0 20px 48px rgba(0,0,0,.22)!important;
}
.cat-bg-img{
  position:absolute!important;inset:0!important;
  width:100%!important;height:100%!important;
  object-fit:cover!important;display:block!important;
  transition:transform .55s ease!important;
}
.cat-card:hover .cat-bg-img{transform:scale(1.07)!important}
.cat-no-img{
  position:absolute!important;inset:0!important;
  display:flex!important;align-items:center!important;justify-content:center!important;
  background:linear-gradient(135deg,#1B4332,#2D6A4F)!important;
}
.cat-label-bar{
  position:absolute!important;bottom:0!important;left:0!important;right:0!important;
  background:linear-gradient(to top,rgba(0,0,0,.72) 0%,rgba(0,0,0,.3) 60%,transparent 100%)!important;
  padding:2.2rem 1rem .9rem!important;
  transition:background .3s!important;
}
.cat-card:hover .cat-label-bar{
  background:linear-gradient(to top,rgba(27,67,50,.88) 0%,rgba(27,67,50,.45) 60%,transparent 100%)!important;
}
.cat-name{
  display:block!important;
  font-family:'Playfair Display',Georgia,serif!important;
  font-size:.95rem!important;font-weight:600!important;
  color:#fff!important;
  text-align:center!important;
  line-height:1.3!important;
  text-shadow:0 1px 6px rgba(0,0,0,.5)!important;
  letter-spacing:.01em!important;
}
.cat-arr{display:none!important}
.cat-img-wrap{display:none!important}
.cat-img-placeholder{display:none!important}

/* Why-choose section heading — white on dark green */
.why-choose .section-label{color:var(--gold,#C8922A)!important}
.why-choose .section-title{color:#fff!important}
.why-choose .section-sub{color:rgba(255,255,255,.6)!important}

/* Why-choose grid — 3 columns */
.why-grid{
  display:grid!important;
  grid-template-columns:repeat(3,1fr)!important;
  gap:1.5rem!important;
  margin-top:3rem!important;
}
@media(max-width:900px){.why-grid{grid-template-columns:repeat(2,1fr)!important}}
@media(max-width:560px){.why-grid{grid-template-columns:1fr!important}}

/* Why card */
.why-card{
  position:relative!important;
  background:rgba(255,255,255,.05)!important;
  border:1px solid rgba(200,146,42,.2)!important;
  border-radius:14px!important;
  padding:2rem 1.75rem 1.75rem!important;
  transition:background .25s,border-color .25s,transform .25s!important;
  overflow:hidden!important;
}
.why-card::before{
  content:''!important;
  position:absolute!important;top:0!important;left:0!important;
  width:3px!important;height:100%!important;
  background:linear-gradient(to bottom,var(--gold,#C8922A),transparent)!important;
  border-radius:14px 0 0 14px!important;
}
.why-card:hover{
  background:rgba(255,255,255,.09)!important;
  border-color:var(--gold,#C8922A)!important;
  transform:translateY(-4px)!important;
}
.why-card-num{
  position:absolute!important;top:1.25rem!important;right:1.5rem!important;
  font-family:'Playfair Display',Georgia,serif!important;
  font-size:2.8rem!important;font-weight:700!important;
  color:rgba(200,146,42,.12)!important;
  line-height:1!important;
  pointer-events:none!important;
}
.why-card-icon{
  width:48px!important;height:48px!important;
  border-radius:10px!important;
  background:rgba(200,146,42,.15)!important;
  color:var(--gold,#C8922A)!important;
  display:flex!important;align-items:center!important;justify-content:center!important;
  margin-bottom:1.1rem!important;
}
.why-card-title{
  font-family:'Playfair Display',Georgia,serif!important;
  font-size:1.05rem!important;font-weight:700!important;
  color:#fff!important;margin-bottom:.6rem!important;
  line-height:1.3!important;
}
.why-card-desc{
  font-size:.8rem!important;
  color:rgba(255,255,255,.58)!important;
  line-height:1.65!important;
  margin:0!important;
}

/* Collection cards — cinematic overlay */
.coll-card{border-radius:10px!important;overflow:hidden!important;cursor:pointer!important}
.coll-img{position:relative!important;aspect-ratio:4/3!important;overflow:hidden!important}
.coll-img img{
  width:100%!important;height:100%!important;object-fit:cover!important;
  transition:transform .55s!important;
}
.coll-card:hover .coll-img img{transform:scale(1.07)!important}
.coll-overlay{
  position:absolute!important;inset:0!important;
  background:linear-gradient(170deg,rgba(4,18,9,.4) 0%,rgba(27,67,50,.82) 100%)!important;
  display:flex!important;flex-direction:column!important;
  justify-content:flex-end!important;padding:1.5rem!important;
  transition:background .3s!important;
}
.coll-card:hover .coll-overlay{
  background:linear-gradient(170deg,rgba(4,18,9,.52) 0%,rgba(27,67,50,.9) 100%)!important;
}
.coll-name{
  font-family:'Playfair Display',Georgia,serif!important;
  font-size:1.05rem!important;font-weight:700!important;
  color:#fff!important;line-height:1.25!important;margin-bottom:.3rem!important;
}
.coll-desc{
  font-size:.77rem!important;color:rgba(255,255,255,.78)!important;
  line-height:1.5!important;margin-bottom:.9rem!important;
}
.coll-btn{
  display:inline-flex!important;align-items:center!important;gap:.35rem!important;
  font-size:.68rem!important;font-weight:700!important;
  letter-spacing:.1em!important;text-transform:uppercase!important;
  color:#fff!important;border:1px solid rgba(255,255,255,.45)!important;
  padding:.42rem 1rem!important;border-radius:3px!important;
  text-decoration:none!important;
  transition:background .2s,border-color .2s!important;width:fit-content!important;
}
.coll-btn:hover{
  background:var(--gold,#C8922A)!important;border-color:var(--gold,#C8922A)!important;
}

/* ── Export Process — premium redesign ── */
.section.export-process{background:#faf7f2!important}

.process-row{
  display:grid!important;
  grid-template-columns:repeat(5,1fr)!important;
  gap:0!important;
  position:relative!important;
  align-items:start!important;
}
@media(max-width:900px){.process-row{grid-template-columns:repeat(3,1fr)!important;gap:2rem 1rem!important}}
@media(max-width:560px){.process-row{grid-template-columns:1fr!important;gap:1.5rem!important}}

/* Connector line hidden — using CSS border instead */
.process-line{display:none!important}

.process-step-wrap{
  text-align:center!important;
  padding:0 1rem!important;
  position:relative!important;
}
/* Gold connector between steps */
.process-step-wrap:not(:last-child)::after{
  content:''!important;
  position:absolute!important;
  top:34px!important;
  left:calc(50% + 34px)!important;
  right:calc(-50% + 34px)!important;
  height:1px!important;
  background:linear-gradient(to right,rgba(200,146,42,.5),rgba(200,146,42,.15))!important;
}
@media(max-width:900px){.process-step-wrap:not(:last-child)::after{display:none!important}}

.process-icon-wrap{
  display:flex!important;align-items:center!important;justify-content:center!important;
  margin-bottom:1.25rem!important;
}
.process-icon-circle{
  width:68px!important;height:68px!important;
  border-radius:50%!important;
  background:#fff!important;
  border:2px solid var(--gold,#C8922A)!important;
  display:flex!important;align-items:center!important;justify-content:center!important;
  color:var(--green,#1B4332)!important;
  box-shadow:0 4px 20px rgba(200,146,42,.18)!important;
  transition:background .25s,box-shadow .25s!important;
  position:relative!important;z-index:1!important;
}
.process-step-wrap:hover .process-icon-circle{
  background:var(--green,#1B4332)!important;
  color:#fff!important;
  box-shadow:0 8px 28px rgba(27,67,50,.22)!important;
}
.process-num{
  font-family:'Playfair Display',Georgia,serif!important;
  font-size:2.2rem!important;font-weight:700!important;
  color:rgba(200,146,42,.18)!important;
  line-height:1!important;margin-bottom:.5rem!important;
  letter-spacing:-.02em!important;
}
.process-title{
  font-family:'Playfair Display',Georgia,serif!important;
  font-size:.95rem!important;font-weight:700!important;
  color:var(--ink,#1a2a20)!important;
  margin-bottom:.6rem!important;line-height:1.3!important;
}
.process-desc{
  font-size:.75rem!important;
  color:var(--muted,#4e6657)!important;
  line-height:1.7!important;margin:0!important;
}

/* Why-import feature items */
.why-feat-item{
  padding:1.25rem!important;border-radius:10px!important;
  border:1px solid rgba(27,67,50,.08)!important;
  transition:border-color .2s,box-shadow .2s!important;
}
.why-feat-item:hover{
  border-color:var(--gold,#C8922A)!important;
  box-shadow:0 6px 20px rgba(27,67,50,.1)!important;
}
.why-feat-icon-wrap{
  width:44px!important;height:44px!important;
  background:rgba(27,67,50,.08)!important;border-radius:50%!important;
  display:flex!important;align-items:center!important;justify-content:center!important;
  color:var(--green,#1B4332)!important;margin-bottom:.65rem!important;
}
.why-feat-title{
  font-size:.85rem!important;font-weight:700!important;
  color:var(--ink,#1a2a20)!important;margin-bottom:.3rem!important;
}
.why-feat-desc{
  font-size:.78rem!important;color:var(--muted,#4e6657)!important;line-height:1.55!important;
}

/* Blog cards — refined */
.blog-card{
  border-radius:10px!important;overflow:hidden!important;
  border:1px solid rgba(200,146,42,.18)!important;background:#fdfaf5!important;
  transition:transform .25s,box-shadow .25s!important;
}
.blog-card:hover{
  transform:translateY(-5px)!important;
  box-shadow:0 16px 40px rgba(27,67,50,.12)!important;
}
.blog-title a{
  font-family:'Playfair Display',Georgia,serif!important;
  font-size:.95rem!important;font-weight:700!important;
  color:var(--ink,#1a2a20)!important;text-decoration:none!important;
}
.blog-title a:hover{color:var(--green,#1B4332)!important}
.blog-cat{
  background:var(--green,#1B4332)!important;color:#fff!important;
  font-size:.6rem!important;font-weight:700!important;
  letter-spacing:.1em!important;text-transform:uppercase!important;
  border-radius:3px!important;padding:.2rem .55rem!important;
}
.blog-meta{font-size:.72rem!important;color:var(--muted,#4e6657)!important;margin-bottom:.35rem!important}
.blog-excerpt{font-size:.8rem!important;color:var(--muted,#4e6657)!important;line-height:1.6!important}

/* View-all links */
.view-all-link{
  font-size:.74rem!important;font-weight:700!important;letter-spacing:.06em!important;
  color:var(--green,#1B4332)!important;text-decoration:none!important;
  display:inline-flex!important;align-items:center!important;gap:.35rem!important;
  transition:color .2s,gap .2s!important;
}
.view-all-link:hover{color:var(--gold,#C8922A)!important;gap:.55rem!important}

/* Products tab-bar refinement */
.products-tab-hd{
  display:flex!important;align-items:center!important;
  justify-content:space-between!important;flex-wrap:wrap!important;
  gap:1rem!important;margin-bottom:2rem!important;
  padding-bottom:1rem!important;border-bottom:1px solid rgba(27,67,50,.08)!important;
}
.knowledge-hd{
  display:flex!important;align-items:flex-end!important;
  justify-content:space-between!important;
  margin-bottom:2.5rem!important;padding-bottom:1rem!important;
  border-bottom:1px solid rgba(27,67,50,.08)!important;
}

/* Site-wide btn refinements */
.btn-primary,.btn.btn-primary{
  box-shadow:0 4px 16px rgba(27,67,50,.22)!important;
  transition:background .2s,transform .2s,box-shadow .2s!important;
}
.btn-primary:hover,.btn.btn-primary:hover{
  transform:translateY(-2px)!important;
  box-shadow:0 8px 24px rgba(27,67,50,.3)!important;
}
.btn-gold,.btn.btn-gold{
  box-shadow:0 4px 16px rgba(200,146,42,.3)!important;
  transition:background .2s,transform .2s,box-shadow .2s!important;
}
.btn-gold:hover,.btn.btn-gold:hover{
  transform:translateY(-2px)!important;
  box-shadow:0 8px 24px rgba(200,146,42,.4)!important;
}

/* ══════════════════════════════════════════
   OVERALL PREMIUM POLISH
══════════════════════════════════════════ */

/* Section spacing — breathe more */
.section{padding-top:5rem!important;padding-bottom:5rem!important}
.section.categories{padding-top:4rem!important;padding-bottom:4.5rem!important}

/* Section head margin */
.section-head{margin-bottom:2.75rem!important}
.section-head.center{text-align:center!important}

/* Section label — refined gold pill */
.section-label{
  font-size:.62rem!important;letter-spacing:.22em!important;
  font-weight:700!important;text-transform:uppercase!important;
  color:var(--gold,#C8922A)!important;
  display:inline-block!important;margin-bottom:.65rem!important;
}

/* Section title — larger, tighter */
.section-title{
  font-family:'Playfair Display',Georgia,serif!important;
  font-size:clamp(1.7rem,2.6vw,2.35rem)!important;
  font-weight:700!important;letter-spacing:-.025em!important;
  line-height:1.18!important;color:var(--ink,#1a2a20)!important;
  text-wrap:balance!important;
}

/* Section sub — more space, softer */
.section-sub{
  font-size:.92rem!important;line-height:1.8!important;
  color:var(--muted,#4e6657)!important;
  margin-top:.85rem!important;
}
.section-head.center .section-sub{
  max-width:52ch!important;
  margin-left:auto!important;margin-right:auto!important;
}

/* Gold underline — wider, more gold */
.section-title::after{
  content:''!important;display:block!important;
  width:44px!important;height:2.5px!important;
  background:linear-gradient(90deg,var(--gold,#C8922A),transparent)!important;
  margin:.75rem 0 0!important;border-radius:2px!important;
}
.section-head.center .section-title::after{margin:.75rem auto 0!important}

/* Why-choose section head — keep white */
.why-choose .section-title::after{
  background:linear-gradient(90deg,var(--gold,#C8922A),rgba(200,146,42,0))!important;
}

/* Container — consistent max-width */
.container{max-width:1200px!important;margin-left:auto!important;margin-right:auto!important;padding-left:1.5rem!important;padding-right:1.5rem!important}

/* Smooth scrolling */
html{scroll-behavior:smooth!important}

/* Better button sizing */
.btn{
  font-size:.8rem!important;letter-spacing:.04em!important;
  padding:.65rem 1.4rem!important;border-radius:4px!important;
  font-weight:600!important;
}
.btn-primary,.btn.btn-primary{background:var(--green,#1B4332)!important;color:#fff!important}
.btn-primary:hover,.btn.btn-primary:hover{background:var(--green-light,#2D6A4F)!important;transform:translateY(-2px)!important}
.btn-outline,.btn.btn-outline{
  background:transparent!important;
  border:2px solid var(--green,#1B4332)!important;
  color:var(--green,#1B4332)!important;
}
.btn-outline:hover,.btn.btn-outline:hover{
  background:var(--green,#1B4332)!important;color:#fff!important;transform:translateY(-2px)!important;
}

/* ── Why Import — 2-panel pixel-perfect ── */
.why-import-section{
  display:flex!important;
  min-height:320px!important;
}
.wi-left{
  flex:0 0 42%!important;
  background:var(--cream,#f5edd8)!important;
  display:flex!important;
  flex-direction:column!important;
}
.wi-left-inner{
  padding:3rem 2rem 1.5rem clamp(1.5rem,calc((100vw - 1280px)/2 + 2.5rem),5rem)!important;
}
.wi-heading{
  font-family:'Playfair Display',Georgia,serif!important;
  font-size:clamp(1.6rem,2.5vw,2.2rem)!important;
  font-weight:700!important;color:var(--ink,#1a2a20)!important;
  line-height:1.2!important;margin:.4rem 0 .9rem!important;
}
.wi-desc{
  font-size:.9rem!important;line-height:1.7!important;
  color:var(--muted,#4e6657)!important;margin:0 0 1.5rem!important;
  max-width:30ch!important;
}
.wi-btn{
  display:inline-flex!important;align-items:center!important;gap:.4rem!important;
  font-size:.78rem!important;font-weight:700!important;
  letter-spacing:.04em!important;text-transform:uppercase!important;
  padding:.7rem 1.4rem!important;border-radius:4px!important;
  text-decoration:none!important;
}
.wi-map{
  flex:1!important;overflow:hidden!important;
  padding:0 0 0 clamp(1.5rem,calc((100vw - 1280px)/2 + 2.5rem),5rem)!important;
  display:flex!important;align-items:flex-end!important;
}
.wi-map img{
  width:100%!important;height:auto!important;
  object-fit:contain!important;object-position:bottom!important;
  display:block!important;max-height:220px!important;
}
.wi-right{
  flex:1!important;
  background:#fff!important;
  display:flex!important;
  align-items:stretch!important;
}
.wi-feat-col{
  flex:1!important;
  display:flex!important;flex-direction:column!important;
  align-items:center!important;justify-content:center!important;
  text-align:center!important;
  padding:2.5rem 1.2rem!important;
}
.wi-feat-divider{
  width:1px!important;background:rgba(200,146,42,.25)!important;
  align-self:stretch!important;margin:2rem 0!important;flex-shrink:0!important;
}
.wi-feat-icon{
  margin-bottom:1rem!important;
  display:flex!important;align-items:center!important;justify-content:center!important;
  width:60px!important;height:60px!important;
}
.wi-feat-title{
  font-size:.92rem!important;font-weight:700!important;
  color:var(--ink,#1a2a20)!important;
  line-height:1.3!important;margin-bottom:.45rem!important;
}
.wi-feat-desc{
  font-size:.76rem!important;color:var(--muted,#4e6657)!important;
  line-height:1.5!important;
}
@media(max-width:900px){
  .why-import-section{flex-direction:column!important}
  .wi-left{flex:none!important}
  .wi-right{flex-wrap:wrap!important}
  .wi-feat-col{flex:0 0 50%!important}
  .wi-feat-divider{display:none!important}
}
@media(max-width:560px){
  .wi-feat-col{flex:0 0 100%!important}
}

/* Category grid mobile — card height */
@media(max-width:560px){
  .cat-card{aspect-ratio:4/3!important}
}

/* Responsive section padding */
@media(max-width:768px){
  .section{padding-top:3.5rem!important;padding-bottom:3.5rem!important}
  .why-grid{grid-template-columns:1fr 1fr!important}
  .cta-inner{padding:3rem 1.5rem!important;flex-direction:column!important}
  .cta-badges{flex-direction:row!important;flex-wrap:wrap!important;justify-content:center!important}
}
@media(max-width:480px){
  .section{padding-top:2.5rem!important;padding-bottom:2.5rem!important}
  .why-grid{grid-template-columns:1fr!important}
  .section-title{font-size:1.55rem!important}
}

/* ══════════════════════════════════════════
   E-COMMERCE: AUTH, CART, CHECKOUT, CUSTOMER
   ══════════════════════════════════════════ */

/* Auth Pages */
.auth-section{min-height:70vh;display:flex;align-items:center;padding:3rem 1rem;background:var(--cream)}
.auth-container{width:100%;max-width:480px;margin:0 auto}
.auth-container-wide{max-width:680px}
.auth-card{background:#fff;border-radius:16px;padding:2.5rem 2rem;box-shadow:0 4px 30px rgba(27,67,50,.09)}
.auth-logo{text-align:center;margin-bottom:1.2rem}
.auth-logo-img{height:48px;object-fit:contain}
.auth-title{font-family:"Playfair Display",serif;font-size:1.7rem;color:var(--ink);text-align:center;margin:0 0 .3rem}
.auth-subtitle{text-align:center;color:var(--muted);font-size:.93rem;margin:0 0 1.5rem}
.auth-alert{padding:.75rem 1rem;border-radius:8px;font-size:.9rem;margin-bottom:1rem}
.auth-alert-error{background:#fef2f2;color:#b91c1c;border:1px solid #fca5a5}
.auth-alert-success{background:#f0fdf4;color:#166534;border:1px solid #86efac}
.auth-form{display:flex;flex-direction:column;gap:1rem}
.form-group{display:flex;flex-direction:column;gap:.35rem}
.form-group label{font-size:.875rem;font-weight:600;color:var(--ink)}
.form-control{padding:.65rem .9rem;border:1.5px solid #d1d9d4;border-radius:8px;font-size:.93rem;color:var(--ink);background:#fff;transition:border-color .2s,box-shadow .2s;width:100%;box-sizing:border-box}
.form-control:focus{outline:none;border-color:var(--green);box-shadow:0 0 0 3px rgba(27,67,50,.1)}
.form-control.is-invalid{border-color:#ef4444}
.form-control-disabled{background:#f5f5f5;color:#888;cursor:not-allowed}
.invalid-feedback{font-size:.8rem;color:#ef4444}
.form-hint{font-size:.8rem;color:var(--muted)}
.form-row-2{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.btn-block{width:100%;text-align:center;display:block}
.mb-3{margin-bottom:.75rem}
.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}
.auth-divider{text-align:center;position:relative;margin:1.25rem 0}
.auth-divider::before{content:"";position:absolute;top:50%;left:0;right:0;height:1px;background:#e0e8e3}
.auth-divider span{position:relative;background:#fff;padding:0 .75rem;font-size:.8rem;color:var(--muted)}
.auth-social{display:flex;flex-direction:column;gap:.6rem}
.btn-social{display:flex;align-items:center;justify-content:center;gap:.6rem;padding:.65rem 1rem;border-radius:8px;font-size:.9rem;font-weight:500;text-decoration:none;transition:all .2s;border:1.5px solid #ddd;background:#fff;color:var(--ink);cursor:pointer}
.btn-social:hover{border-color:#aaa;background:#f9f9f9}
.btn-phone{color:var(--green)}
.auth-footer-text{text-align:center;font-size:.875rem;color:var(--muted);margin-top:1.25rem}
.auth-footer-text a{color:var(--green-light);font-weight:600;text-decoration:none}
.auth-icon-wrap{text-align:center;margin-bottom:1rem}
.otp-input{letter-spacing:.5em;font-size:1.5rem;text-align:center;font-weight:700}

/* Nav Cart and Account */
.nav-cart-btn{position:relative;display:flex;align-items:center;justify-content:center;width:38px;height:38px;color:var(--ink);text-decoration:none;transition:color .2s}
.nav-cart-btn:hover{color:var(--gold)}
.nav-cart-badge{position:absolute;top:2px;right:2px;background:var(--gold);color:#fff;font-size:.6rem;font-weight:700;width:16px;height:16px;border-radius:50%;display:flex;align-items:center;justify-content:center;line-height:1}
.nav-cart-badge-hidden{display:none!important}
.nav-account-wrap{position:relative}
.nav-account-btn{display:flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;border:2px solid var(--gold);background:none;cursor:pointer;overflow:hidden;padding:0}
.nav-account-btn:hover{border-color:var(--green)}
.nav-account-avatar{width:100%;height:100%;object-fit:cover}
.nav-account-initial{font-size:.9rem;font-weight:700;color:var(--gold)}
.nav-login-btn{background:none;border:1.5px solid #ccc;color:var(--muted)}
.nav-login-btn:hover{border-color:var(--gold);color:var(--gold)}
.nav-account-dropdown{display:none;position:absolute;right:0;top:calc(100% + .5rem);background:#fff;border-radius:10px;box-shadow:0 8px 32px rgba(27,67,50,.13);min-width:180px;z-index:200;padding:.5rem 0;border:1px solid #e8ede9}
.nav-account-dropdown.open{display:block}
.nav-account-name{padding:.5rem 1rem .25rem;font-size:.8rem;color:var(--muted);font-weight:600;border-bottom:1px solid #f0f0f0;margin-bottom:.25rem}
.nav-account-link{display:block;padding:.5rem 1rem;font-size:.875rem;color:var(--ink);text-decoration:none;transition:background .15s;background:none;width:100%;text-align:left;border:none;cursor:pointer}
.nav-account-link:hover{background:#f5ede0;color:var(--green)}
.nav-account-logout{color:#dc2626}
.nav-account-logout:hover{background:#fef2f2}

/* Cart Page */
.cart-section{padding:3rem 1rem 5rem;min-height:60vh}
.page-title{font-family:"Playfair Display",serif;font-size:2rem;color:var(--ink);margin:0 0 2rem}
.cart-empty{display:flex;flex-direction:column;align-items:center;gap:1rem;padding:4rem 2rem;text-align:center;color:var(--muted)}
.cart-empty h2{font-family:"Playfair Display",serif;font-size:1.5rem;color:var(--ink)}
.cart-layout{display:grid;grid-template-columns:1fr 320px;gap:2rem;align-items:start}
.cart-items{display:flex;flex-direction:column;gap:0;border:1.5px solid #e0e8e3;border-radius:12px;overflow:hidden}
.cart-item{display:grid;grid-template-columns:80px 1fr auto auto;align-items:center;gap:1rem;padding:1rem 1.25rem;border-bottom:1px solid #f0f4f1;background:#fff}
.cart-item:last-child{border-bottom:none}
.cart-item-img-wrap{width:80px;height:80px;border-radius:8px;overflow:hidden;flex-shrink:0}
.cart-item-img{width:100%;height:100%;object-fit:cover}
.cart-item-img-placeholder{width:80px;height:80px;background:#f5ede0;border-radius:8px;display:flex;align-items:center;justify-content:center}
.cart-item-name{font-weight:600;color:var(--ink);text-decoration:none;font-size:.95rem}
.cart-item-name:hover{color:var(--green)}
.cart-item-cat{font-size:.8rem;color:var(--muted);display:block;margin-top:.2rem}
.qty-form{display:flex;align-items:center;gap:.25rem}
.qty-btn{width:28px;height:28px;border:1.5px solid #d1d9d4;background:#fff;border-radius:6px;font-size:1rem;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .15s}
.qty-btn:hover{border-color:var(--green);color:var(--green)}
.qty-input{width:50px;text-align:center;border:1.5px solid #d1d9d4;border-radius:6px;padding:.25rem;font-size:.9rem;color:var(--ink)}
.cart-remove-btn{background:none;border:none;color:#ccc;cursor:pointer;padding:.25rem;border-radius:6px;transition:color .15s}
.cart-remove-btn:hover{color:#ef4444}
.cart-summary-card{background:#fff;border:1.5px solid #e0e8e3;border-radius:12px;padding:1.5rem}
.cart-summary-card h3{font-family:"Playfair Display",serif;font-size:1.15rem;color:var(--ink);margin:0 0 1rem;padding-bottom:.75rem;border-bottom:1px solid #f0f4f1}
.cart-summary-row{font-size:.9rem;color:var(--ink);margin-bottom:.75rem}
.cart-summary-note{font-size:.8rem;color:var(--muted);background:#f5ede0;border-radius:8px;padding:.6rem .75rem;display:flex;gap:.5rem;align-items:flex-start;line-height:1.4}
.cart-clear-btn{background:none;border:none;font-size:.8rem;color:#999;cursor:pointer;text-decoration:underline;padding:0}
.cart-clear-btn:hover{color:#ef4444}

/* Checkout */
.checkout-section{padding:3rem 1rem 5rem}
.checkout-layout{display:grid;grid-template-columns:1fr 340px;gap:2rem;align-items:start}
.checkout-section-title{font-size:.8rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--green);margin-bottom:1rem}
.checkout-login-prompt{background:#f0fdf4;border:1px solid #86efac;border-radius:8px;padding:.75rem 1rem;font-size:.875rem;color:#166534;display:flex;gap:.5rem;align-items:center;margin-bottom:1.25rem}
.checkout-login-prompt a{color:var(--green);font-weight:600}
.checkout-form-wrap{background:#fff;border:1.5px solid #e0e8e3;border-radius:12px;padding:2rem}
.payment-methods{display:flex;flex-direction:column;gap:.75rem}
.payment-option{cursor:pointer;display:block}
.payment-option input[type=radio]{display:none}
.payment-option-body{display:flex;gap:.75rem;align-items:flex-start;padding:1rem;border:1.5px solid #d1d9d4;border-radius:10px;transition:all .2s}
.payment-option input:checked + .payment-option-body{border-color:var(--green);background:#f0f8f4}
.payment-option-body strong{display:block;font-size:.9rem;color:var(--ink)}
.payment-option-body small{display:block;font-size:.8rem;color:var(--muted);margin-top:.15rem}
.checkout-summary{position:sticky;top:6rem}
.checkout-item-row{display:flex;justify-content:space-between;align-items:center;padding:.4rem 0;font-size:.875rem;color:var(--ink)}
.checkout-item-qty{color:var(--muted);font-size:.85rem}
.checkout-summary-divider{border-top:1px solid #f0f4f1;margin:.75rem 0}
.checkout-total-row{display:flex;justify-content:space-between;font-weight:600;font-size:.9rem;color:var(--ink)}
.checkout-total-note{font-size:.8rem;color:var(--muted);font-weight:400}
.checkout-note-text{font-size:.78rem;color:var(--muted);margin-top:.75rem;line-height:1.5}

/* Order Confirmation */
.confirm-section{padding:4rem 1rem 6rem;background:var(--cream)}
.confirm-card{background:#fff;border-radius:16px;max-width:580px;margin:0 auto;padding:3rem 2.5rem;box-shadow:0 4px 30px rgba(27,67,50,.09);text-align:center}
.confirm-icon{margin-bottom:1.5rem}
.confirm-title{font-family:"Playfair Display",serif;font-size:2rem;color:var(--ink);margin:0 0 .5rem}
.confirm-subtitle{color:var(--muted);font-size:.95rem;margin:0 0 2rem}
.confirm-order-num{background:var(--cream);border-radius:10px;padding:1rem 1.5rem;margin-bottom:1.5rem;display:inline-flex;flex-direction:column;gap:.25rem;min-width:200px}
.confirm-label{font-size:.75rem;text-transform:uppercase;letter-spacing:.06em;color:var(--muted)}
.confirm-num{font-family:"Playfair Display",serif;font-size:1.4rem;color:var(--gold);font-weight:700}
.confirm-payment-badge{display:inline-flex;align-items:center;gap:.4rem;background:#f0fdf4;color:#166534;border:1px solid #86efac;border-radius:20px;padding:.4rem .9rem;font-size:.8rem;margin-bottom:1.5rem}
.confirm-details{text-align:left;border:1px solid #e0e8e3;border-radius:10px;overflow:hidden;margin-bottom:1.5rem}
.confirm-detail-row{display:flex;justify-content:space-between;padding:.7rem 1rem;font-size:.875rem;border-bottom:1px solid #f0f4f1}
.confirm-detail-row:last-child{border-bottom:none}
.confirm-detail-row span:first-child{color:var(--muted);font-weight:500}
.confirm-detail-row span:last-child{color:var(--ink);font-weight:600;text-align:right}
.confirm-items{text-align:left;margin-bottom:2rem}
.confirm-items h4{font-size:.85rem;text-transform:uppercase;letter-spacing:.05em;color:var(--muted);margin:0 0 .75rem}
.confirm-item-row{display:flex;justify-content:space-between;font-size:.875rem;padding:.35rem 0;border-bottom:1px solid #f5f5f5;color:var(--ink)}
.confirm-actions{display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap}

/* Customer Dashboard */
.cust-section{padding:3rem 1rem 5rem;background:var(--cream);min-height:70vh}
.cust-layout{display:grid;grid-template-columns:240px 1fr;gap:2rem;align-items:start}
.cust-sidebar{background:#fff;border-radius:12px;border:1.5px solid #e0e8e3;padding:1.25rem;position:sticky;top:5rem}
.cust-nav{display:flex;flex-direction:column;gap:.25rem}
.cust-nav-link{display:flex;align-items:center;gap:.6rem;padding:.6rem .85rem;border-radius:8px;font-size:.875rem;color:var(--ink);text-decoration:none;transition:all .15s;background:none;border:none;cursor:pointer;width:100%;text-align:left}
.cust-nav-link:hover{background:#f5ede0;color:var(--green)}
.cust-nav-link.active{background:var(--green);color:#fff}
.cust-nav-logout{color:#dc2626}
.cust-nav-logout:hover{background:#fef2f2;color:#dc2626}
.cust-nav-divider{height:1px;background:#f0f4f1;margin:.5rem 0}
.cust-main{min-width:0}
.cust-page-title{font-family:"Playfair Display",serif;font-size:1.75rem;color:var(--ink);margin:0 0 1.5rem}
.cust-welcome{display:flex;align-items:center;gap:1.25rem;background:#fff;border-radius:12px;padding:1.5rem;border:1.5px solid #e0e8e3;margin-bottom:1.5rem}
.cust-avatar{width:60px;height:60px;border-radius:50%;background:var(--green);display:flex;align-items:center;justify-content:center;overflow:hidden;flex-shrink:0}
.cust-avatar img{width:100%;height:100%;object-fit:cover}
.cust-avatar span{font-size:1.5rem;font-weight:700;color:#fff}
.cust-name{font-family:"Playfair Display",serif;font-size:1.2rem;color:var(--ink);margin:0 0 .25rem}
.cust-meta{font-size:.85rem;color:var(--muted);margin:0}
.cust-stats-row{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-bottom:1.5rem}
.cust-stat{background:#fff;border-radius:10px;padding:1.25rem;border:1.5px solid #e0e8e3;text-align:center}
.cust-stat-num{display:block;font-family:"Playfair Display",serif;font-size:2rem;color:var(--gold);font-weight:700}
.cust-stat-label{font-size:.8rem;color:var(--muted)}
.cust-section-card{background:#fff;border-radius:12px;border:1.5px solid #e0e8e3;overflow:hidden}
.cust-card-head{display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.5rem;border-bottom:1px solid #f0f4f1}
.cust-card-head h3{font-family:"Playfair Display",serif;font-size:1.1rem;color:var(--ink);margin:0}
.cust-empty{display:flex;flex-direction:column;align-items:center;gap:1rem;padding:3rem 2rem;text-align:center;color:var(--muted)}

/* Order Table */
.order-table-wrap{overflow-x:auto}
.order-table{width:100%;border-collapse:collapse;font-size:.875rem}
.order-table th{text-align:left;padding:.75rem 1rem;font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--muted);border-bottom:1.5px solid #e0e8e3;background:#f9faf9}
.order-table td{padding:.85rem 1rem;border-bottom:1px solid #f0f4f1;color:var(--ink);vertical-align:middle}
.order-num{font-family:"Courier New",monospace;font-weight:700;color:var(--green);font-size:.85rem}

/* Status Pills */
.status-pill{display:inline-flex;align-items:center;padding:.2rem .65rem;border-radius:20px;font-size:.75rem;font-weight:600;text-transform:capitalize}
.status-pending{background:#fef3c7;color:#92400e}
.status-confirmed,.status-processing{background:#dbeafe;color:#1e40af}
.status-shipped{background:#ede9fe;color:#6b21a8}
.status-delivered{background:#d1fae5;color:#065f46}
.status-cancelled,.status-failed{background:#fee2e2;color:#991b1b}
.status-lg{font-size:.875rem;padding:.3rem .9rem}

/* Order Detail */
.order-detail-head{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:2rem}
.order-detail-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:start}
.order-info-card,.order-items-card{background:#fff;border:1.5px solid #e0e8e3;border-radius:12px;padding:1.5rem}
.order-info-card h4,.order-items-card h4{font-family:"Playfair Display",serif;font-size:1rem;color:var(--ink);margin:0 0 1rem;padding-bottom:.5rem;border-bottom:1px solid #f0f4f1}
.order-dl{display:grid;grid-template-columns:120px 1fr;gap:.4rem .75rem;font-size:.875rem}
.order-dl dt{color:var(--muted);font-weight:500}
.order-dl dd{color:var(--ink);margin:0}
.order-item-row{display:flex;gap:1rem;align-items:flex-start;padding:.75rem 0;border-bottom:1px solid #f0f4f1}
.order-item-row:last-child{border-bottom:none}
.order-item-img{width:56px;height:56px;object-fit:cover;border-radius:8px;flex-shrink:0}
.order-item-name{font-weight:600;color:var(--ink);text-decoration:none;font-size:.9rem;display:block;margin-bottom:.2rem}
.order-item-name:hover{color:var(--green)}
.order-item-qty{font-size:.8rem;color:var(--muted)}
.order-item-note{font-size:.78rem;color:var(--muted);margin:.2rem 0 0}
.order-status-form{margin-top:1.5rem;padding-top:1.5rem;border-top:1px solid #f0f4f1}
.order-status-form h4{font-size:.85rem;font-weight:600;margin:0 0 .75rem;color:var(--ink)}
.d-flex{display:flex}.gap-2{gap:.5rem}
.form-success{font-size:.875rem;color:#166534}
.back-link{font-size:.8rem;color:var(--muted);text-decoration:none;display:block;margin-bottom:.35rem}
.back-link:hover{color:var(--green)}
.profile-cards{display:flex;flex-direction:column;gap:1.5rem}

/* Admin Orders */
.order-tabs{display:flex;gap:0;border-bottom:2px solid #e0e8e3;margin-bottom:1.5rem;overflow-x:auto}
.order-tab{display:flex;align-items:center;gap:.4rem;padding:.65rem 1rem;font-size:.85rem;font-weight:500;color:var(--muted);text-decoration:none;border-bottom:2px solid transparent;white-space:nowrap;margin-bottom:-2px}
.order-tab.active{color:var(--green);border-bottom-color:var(--green);font-weight:600}
.order-tab-count{background:#f0f4f1;color:var(--muted);font-size:.72rem;padding:.1rem .4rem;border-radius:10px}
.admin-search-form{display:flex;gap:.5rem;align-items:center}
.admin-search-form .form-control{max-width:360px}
.btn-ghost{background:none;border:none;color:var(--muted);font-size:.85rem;cursor:pointer;text-decoration:underline}
.admin-empty{padding:3rem;text-align:center;color:var(--muted)}
.admin-table-wrap{overflow-x:auto;border:1.5px solid #e0e8e3;border-radius:12px}
.admin-table{width:100%;border-collapse:collapse;font-size:.875rem}
.admin-table th{background:#f9faf9;padding:.75rem 1rem;text-align:left;font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.04em;color:var(--muted);border-bottom:1.5px solid #e0e8e3}
.admin-table td{padding:.85rem 1rem;border-bottom:1px solid #f0f4f1;color:var(--ink);vertical-align:middle}
.admin-table tr:last-child td{border-bottom:none}
.text-muted{color:var(--muted)}
.admin-page-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:1.5rem}
.admin-page-head h1{font-family:"Playfair Display",serif;font-size:1.6rem;color:var(--ink);margin:0}

/* Product Card — quick add on hover */
.product-quick-add{
  position:absolute!important;bottom:0!important;left:0!important;right:0!important;
  padding:.6rem!important;
  background:linear-gradient(0deg,rgba(27,67,50,.95) 0%,rgba(27,67,50,.7) 100%)!important;
  opacity:0!important;transform:translateY(100%)!important;
  transition:opacity .25s,transform .25s!important;
  z-index:3!important;
}
.product-card:hover .product-quick-add{opacity:1!important;transform:translateY(0)!important}
.quick-add-btn{
  width:100%!important;display:flex!important;align-items:center!important;justify-content:center!important;
  gap:.4rem!important;background:rgba(255,255,255,.12)!important;
  color:#fff!important;border:1px solid rgba(255,255,255,.3)!important;
  border-radius:4px!important;padding:.5rem 1rem!important;
  font-size:.75rem!important;font-weight:600!important;
  cursor:pointer!important;letter-spacing:.03em!important;
  transition:background .2s!important;
}
.quick-add-btn:hover{background:rgba(255,255,255,.22)!important}
.product-quote-btn:hover{background:var(--gold);color:#fff}

/* Button overrides */
.btn-xs{font-size:.75rem;padding:.25rem .6rem;border-radius:6px}
.btn-sm{font-size:.82rem;padding:.4rem .85rem}
.btn-outline{display:inline-flex;align-items:center;justify-content:center;gap:.4rem;padding:.55rem 1.1rem;border:1.5px solid var(--green);border-radius:8px;color:var(--green);font-weight:600;font-size:.875rem;text-decoration:none;background:transparent;cursor:pointer;transition:all .2s}
.btn-outline:hover{background:var(--green);color:#fff}

/* Responsive */
@media(max-width:768px){
  .cart-layout{grid-template-columns:1fr}
  .cart-item{grid-template-columns:60px 1fr;grid-template-rows:auto auto}
  .checkout-layout{grid-template-columns:1fr}
  .checkout-summary{position:static}
  .cust-layout{grid-template-columns:1fr}
  .cust-sidebar{position:static}
  .cust-stats-row{grid-template-columns:1fr 1fr}
  .order-detail-grid{grid-template-columns:1fr}
  .form-row-2{grid-template-columns:1fr}
}

/* ══════════════════════════════════════════
   PRODUCT DETAIL PRICING & SPECS
   ══════════════════════════════════════════ */
.product-detail-title{font-family:"Playfair Display",serif;font-size:clamp(1.6rem,3vw,2.2rem);color:var(--ink);margin:.25rem 0 .5rem;line-height:1.2}
.product-sku{font-size:.78rem;color:var(--muted);letter-spacing:.04em;margin:.25rem 0 .5rem}
.flag-outofstock{background:#fee2e2;color:#991b1b}
.flag-lowstock{background:#fef3c7;color:#92400e}

.product-price-box{background:var(--cream);border-radius:12px;padding:1.25rem 1.5rem;margin:1.25rem 0;border:1px solid rgba(200,146,42,.2)}
.product-price-main{display:flex;align-items:baseline;gap:.3rem;margin-bottom:.5rem}
.product-price-currency{font-size:1rem;font-weight:700;color:var(--muted)}
.product-price-amount{font-family:"Playfair Display",serif;font-size:2.2rem;font-weight:700;color:var(--gold);line-height:1}
.product-price-unit{font-size:.9rem;color:var(--muted)}
.product-moq{font-size:.82rem;color:var(--muted);display:flex;align-items:center;gap:.4rem}
.product-moq strong{color:var(--ink)}
.product-price-request{display:flex;align-items:center;gap:.6rem;font-size:.9rem;color:var(--green);font-weight:500;font-style:italic}

.product-specs-grid{display:grid;grid-template-columns:1fr 1fr;gap:.5rem .75rem;margin:1.25rem 0;border:1px solid #e8ede9;border-radius:10px;overflow:hidden}
.product-spec-item{display:flex;flex-direction:column;gap:.15rem;padding:.6rem .85rem;border-bottom:1px solid #f0f4f1}
.product-spec-item:nth-last-child(-n+2){border-bottom:none}
.product-spec-label{font-size:.7rem;text-transform:uppercase;letter-spacing:.06em;color:var(--muted);font-weight:600}
.product-spec-value{font-size:.88rem;color:var(--ink);font-weight:500}

.product-qty-row{display:flex;gap:.75rem;align-items:center;margin-bottom:.75rem}
.qty-input-detail{width:60px;text-align:center;font-size:1rem;border:1.5px solid #d1d9d4;border-radius:8px;padding:.5rem;color:var(--ink)}

.product-export-card{background:#f0fdf4;border:1px solid #86efac;border-radius:10px;padding:.9rem 1.1rem;display:flex;flex-direction:column;gap:.5rem;margin-top:1.25rem}
.product-export-card-row{display:flex;align-items:center;gap:.5rem;font-size:.82rem;color:#166534}
.product-full-desc{margin-top:1.5rem;padding-top:1.5rem;border-top:1px solid #e8ede9;font-size:.9rem;color:var(--ink);line-height:1.75}

/* ── 4-column products grid ── */
.products-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}
.products-grid-4{grid-template-columns:repeat(4,1fr)}
@media(max-width:1100px){.products-grid,.products-grid-4{grid-template-columns:repeat(3,1fr)}}
@media(max-width:720px){.products-grid,.products-grid-4{grid-template-columns:repeat(2,1fr)}}
@media(max-width:420px){.products-grid,.products-grid-4{grid-template-columns:1fr}}

/* ── Premium product card ── */
.product-card{border-radius:14px!important;overflow:hidden!important;background:#fff!important;border:1.5px solid #e4ebe5!important;transition:transform .22s,box-shadow .22s!important;display:flex!important;flex-direction:column!important;box-shadow:0 2px 12px rgba(27,67,50,.06)!important}
.product-card:hover{transform:translateY(-5px)!important;box-shadow:0 20px 52px rgba(27,67,50,.14)!important;border-color:#c8ddd0!important}
.product-img-wrap{position:relative!important;overflow:hidden!important}
.product-img-link{display:block!important}
.product-img{aspect-ratio:1/1!important;overflow:hidden!important;background:#f5f0e8!important}
.product-img img{width:100%!important;height:100%!important;object-fit:cover!important;transition:transform .45s ease!important}
.product-card:hover .product-img img{transform:scale(1.06)!important}
.product-img-placeholder{aspect-ratio:1/1!important;display:flex!important;align-items:center!important;justify-content:center!important;font-size:3.5rem!important;background:#f5f0e8!important}
/* Badge on card */
.product-badge{
  position:absolute!important;top:.7rem!important;left:.7rem!important;
  font-size:.58rem!important;font-weight:700!important;letter-spacing:.07em!important;
  text-transform:uppercase!important;padding:.22rem .6rem!important;border-radius:3px!important;
  z-index:2!important;
}
.badge-featured{background:var(--green,#1B4332)!important;color:#fff!important}
.badge-new{background:var(--gold,#C8922A)!important;color:#fff!important}
.badge-bestseller{background:#2D6A4F!important;color:#fff!important}
/* Wishlist heart */
.product-card .product-img-wrap>a+.product-quick-add{display:none} /* redundant guard */
.product-body{padding:.85rem 1rem 1rem!important;flex:1!important;display:flex!important;flex-direction:column!important;gap:.25rem!important}
.product-category{font-size:.65rem!important;font-weight:700!important;letter-spacing:.08em!important;text-transform:uppercase!important;color:var(--muted,#4e6657)!important}
.product-name{font-family:"Playfair Display",serif;font-size:1rem;color:var(--ink);margin:0;line-height:1.3}
.product-name a{color:inherit;text-decoration:none}
.product-name a:hover{color:var(--green)}
.product-name{font-size:.92rem!important;font-weight:700!important;color:var(--ink,#1a2a20)!important;line-height:1.3!important;margin:0!important}
.product-name a{color:inherit!important;text-decoration:none!important}
.product-name a:hover{color:var(--green,#1B4332)!important}
.product-origin{font-size:.72rem!important;color:var(--muted,#4e6657)!important;display:flex!important;align-items:center!important;gap:.25rem!important;margin-top:.15rem!important}

/* Card footer: price + arrow */
.product-card-footer{
  display:flex!important;align-items:center!important;justify-content:space-between!important;
  margin-top:.6rem!important;padding-top:.6rem!important;
  border-top:1px solid #eef2ef!important;
}
.product-card-price{display:flex!important;align-items:baseline!important;gap:.25rem!important}
.product-card-price-amount{font-weight:700!important;color:var(--gold,#C8922A)!important;font-size:.92rem!important}
.product-card-price-unit{font-size:.7rem!important;color:var(--muted,#4e6657)!important}
.product-card-price-por{font-size:.72rem!important;color:var(--muted,#4e6657)!important;font-style:italic!important}
.product-view-btn{
  width:28px!important;height:28px!important;border-radius:50%!important;
  display:flex!important;align-items:center!important;justify-content:center!important;
  background:var(--green,#1B4332)!important;color:#fff!important;
  text-decoration:none!important;flex-shrink:0!important;
  transition:background .2s,transform .2s!important;
}
.product-view-btn:hover{background:var(--green-light,#2D6A4F)!important;transform:scale(1.1)!important}

/* Product price on card — legacy compat */
.product-card-price-amount,.product-card-price-unit,.product-card-price-por{}

/* ── Admin alert variants ── */
.admin-alert{display:inline-flex;align-items:center;gap:.5rem;padding:.55rem 1rem;border-radius:8px;font-size:.82rem}
.admin-alert-warning{background:#fef3c7;color:#92400e;border:1px solid #fcd34d}
.admin-alert-info{background:#dbeafe;color:#1e40af;border:1px solid #93c5fd}

/* ── Admin customer avatar ── */
.cust-avatar-sm{width:34px;height:34px;border-radius:50%;background:var(--green, #1B4332);display:flex;align-items:center;justify-content:center;overflow:hidden;flex-shrink:0}
.cust-avatar-sm img{width:100%;height:100%;object-fit:cover}
.cust-avatar-sm span{font-size:.85rem;font-weight:700;color:#fff}
.cust-avatar-md{width:52px;height:52px;border-radius:50%;background:var(--a-accent, #C6862A);display:flex;align-items:center;justify-content:center;overflow:hidden;flex-shrink:0}
.cust-avatar-md img{width:100%;height:100%;object-fit:cover}
.cust-avatar-md span{font-size:1.2rem;font-weight:700;color:#fff}
.a-badge-count{font-size:.78rem;font-weight:600;color:var(--a-muted);background:var(--a-card);border:1px solid var(--a-border);border-radius:20px;padding:.2rem .7rem;margin-left:.5rem}

.logo{text-decoration:none!important;display:flex!important;align-items:center!important;flex-shrink:0!important}
.logo-img{height:52px!important;width:auto!important;display:block!important;object-fit:contain!important}
@media(max-width:768px){.logo-img{height:42px!important}}
.nav{border-bottom:1px solid rgba(27,67,50,.08)!important;box-shadow:0 2px 24px rgba(27,67,50,.06)!important}
.nav-link{font-size:.75rem!important;font-weight:500!important;letter-spacing:.02em!important;color:var(--ink,#1a2a20)!important;text-decoration:none!important;transition:color .2s!important;position:relative!important}
.nav-link::after{content:''!important;position:absolute!important;bottom:-2px!important;left:0!important;right:0!important;height:1.5px!important;background:var(--gold,#C8922A)!important;transform:scaleX(0)!important;transition:transform .22s!important;transform-origin:left!important}
.nav-link:hover::after,.nav-link.active::after{transform:scaleX(1)!important}
.nav-link:hover,.nav-link.active{color:var(--green,#1B4332)!important}
.nav-cta-btn{font-size:.72rem!important;letter-spacing:.06em!important;text-transform:uppercase!important;padding:.55rem 1.1rem!important;border-radius:3px!important;box-shadow:0 2px 12px rgba(27,67,50,.18)!important}
.section-label{display:inline-flex!important;align-items:center!important;gap:.6rem!important;font-size:.62rem!important;font-weight:700!important;letter-spacing:.22em!important;text-transform:uppercase!important;color:var(--gold,#C8922A)!important;margin-bottom:.7rem!important}
.section-label::before,.section-label::after{content:''!important;flex-shrink:0!important;width:22px!important;height:1px!important;background:var(--gold,#C8922A)!important;opacity:.7!important}
.products-tab-hd{display:flex!important;align-items:baseline!important;justify-content:space-between!important;border-bottom:1px solid rgba(27,67,50,.1)!important;padding-bottom:0!important;margin-bottom:2rem!important;flex-wrap:wrap!important;gap:.5rem!important}
.products-tab-bar{display:flex!important;align-items:flex-end!important;gap:1.75rem!important;flex-wrap:wrap!important}
.tab-btn{background:none!important;border:none!important;font-size:.7rem!important;font-weight:600!important;letter-spacing:.08em!important;text-transform:uppercase!important;color:var(--muted,#4e6657)!important;cursor:pointer!important;padding:.5rem 0!important;border-bottom:2px solid transparent!important;margin-bottom:-1px!important;transition:color .18s,border-color .18s!important;white-space:nowrap!important}
.tab-btn:hover{color:var(--ink,#1a2a20)!important}
.tab-btn.active{color:var(--green,#1B4332)!important;border-bottom-color:var(--gold,#C8922A)!important;font-weight:700!important}
.view-all-link{display:inline-flex!important;align-items:center!important;gap:.3rem!important;font-size:.72rem!important;font-weight:600!important;color:var(--green,#1B4332)!important;text-decoration:none!important;letter-spacing:.04em!important;border-bottom:1px solid rgba(27,67,50,.25)!important;padding-bottom:.1rem!important;transition:border-color .2s,color .2s!important;white-space:nowrap!important;margin-bottom:.5rem!important}
.view-all-link:hover{color:var(--gold,#C8922A)!important;border-color:var(--gold,#C8922A)!important}
.product-card{position:relative!important}
.product-card::before{content:''!important;position:absolute!important;top:0!important;left:0!important;right:0!important;height:2px!important;z-index:4!important;background:linear-gradient(90deg,var(--gold,#C8922A),var(--gold-2,#D4A845))!important;opacity:0!important;transition:opacity .28s!important}
.product-card:hover::before{opacity:1!important}
.cat-card:hover{box-shadow:0 0 0 2.5px var(--gold,#C8922A),0 20px 48px rgba(0,0,0,.22)!important}
.cat-label-bar{background:linear-gradient(0deg,rgba(4,14,7,.82) 0%,rgba(4,14,7,.3) 100%)!important;padding:.9rem 1rem .8rem!important}
.cat-name{font-family:'Playfair Display',Georgia,serif!important;font-size:.88rem!important;font-weight:700!important;color:#fff!important;letter-spacing:.01em!important}
.why-choose .section-label::before,.why-choose .section-label::after{background:rgba(200,146,42,.6)!important}
.why-grid{display:grid!important;grid-template-columns:repeat(3,1fr)!important;gap:1.25rem!important}
@media(max-width:900px){.why-grid{grid-template-columns:repeat(2,1fr)!important}}
@media(max-width:560px){.why-grid{grid-template-columns:1fr!important}}
.coll-card:hover{box-shadow:0 0 0 2px var(--gold,#C8922A),0 18px 48px rgba(0,0,0,.25)!important;border-radius:10px!important}
.knowledge-hd{display:flex!important;align-items:flex-end!important;justify-content:space-between!important;margin-bottom:2rem!important}
.blog-img{position:relative!important;aspect-ratio:3/2!important;overflow:hidden!important;background:#e8ede0!important}
.blog-img img{width:100%!important;height:100%!important;object-fit:cover!important;transition:transform .45s ease!important}
.blog-card:hover .blog-img img{transform:scale(1.05)!important}
.blog-body{padding:1.15rem 1.25rem 1.35rem!important}
@media(max-width:900px){.process-step-wrap:not(:last-child)::after{display:none!important}}
.topbar{background:var(--green,#1B4332)!important;padding:.45rem 0!important}
.topbar-inner{max-width:1200px!important;margin:0 auto!important;padding:0 1.5rem!important;display:flex!important;align-items:center!important;justify-content:space-between!important}
.topbar-usp{font-size:.65rem!important;letter-spacing:.05em!important;color:rgba(255,255,255,.72)!important;display:inline-flex!important;align-items:center!important;gap:.3rem!important}
.topbar-cta{font-size:.65rem!important;font-weight:700!important;letter-spacing:.1em!important;text-transform:uppercase!important;color:var(--gold,#C8922A)!important;text-decoration:none!important;display:inline-flex!important;align-items:center!important;gap:.3rem!important;border:1px solid rgba(200,146,42,.35)!important;padding:.28rem .75rem!important;border-radius:2px!important;transition:background .2s,border-color .2s!important}
.topbar-cta:hover{background:rgba(200,146,42,.12)!important;border-color:var(--gold,#C8922A)!important}
footer,.footer,.site-footer{border-top:2px solid var(--gold,#C8922A)!important}
.btn-primary,.btn.btn-primary{letter-spacing:.05em!important;text-transform:uppercase!important;font-size:.75rem!important;box-shadow:0 2px 14px rgba(27,67,50,.2)!important}
.btn-primary:hover,.btn.btn-primary:hover{box-shadow:0 6px 24px rgba(27,67,50,.3)!important;transform:translateY(-2px)!important}
.btn-outline,.btn.btn-outline{letter-spacing:.05em!important;text-transform:uppercase!important;font-size:.75rem!important}
.section.categories,.section.products-section,.section.collections,.section.knowledge{background:linear-gradient(180deg,#fdfaf5 0%,#f9f5ed 100%)!important}
.section.export-process{background:linear-gradient(180deg,#faf7f2 0%,#f5f0e8 100%)!important}
.stats-bar{border-top:1px solid rgba(255,255,255,.06)!important;border-bottom:1px solid rgba(255,255,255,.06)!important}
.stat-num{font-size:1.55rem!important;color:#fff!important}
.stat-icon svg{opacity:.85!important}
.wi-feat-divider{background:rgba(200,146,42,.2)!important;width:1px!important;margin:0!important}
.wi-feat-col:hover{background:rgba(27,67,50,.02)!important}
body{-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important;text-rendering:optimizeLegibility!important}
h1,h2,h3,h4{text-wrap:balance!important}
/* ══════════════════════════════════════════
   app-css10.css — Mobile UX Overrides
   Mobile-first redesign for Ceylon Aroma
══════════════════════════════════════════ */

/* ── Global mobile base ── */
@media(max-width:768px){

  /* Touch feedback */
  a,button,.btn{-webkit-tap-highlight-color:rgba(27,67,50,.12)}
  .btn:active{opacity:.82!important;transform:scale(.97)!important;transition:none!important}

  /* Body bottom padding for mobile nav bar */
  body{padding-bottom:64px!important}

  /* Section spacing — tighter on mobile */
  .section,.why-import-section,.coffee-cta-section,.export-process,.knowledge{
    padding-top:2.25rem!important;padding-bottom:2.25rem!important}
  .container{padding-left:1rem!important;padding-right:1rem!important}

  /* ── Topbar — hide on mobile ── */
  .topbar,.topbar-inner{display:none!important}

  /* ── Nav — compact header ── */
  .nav{height:56px!important;padding:0!important}
  .nav-inner{height:56px!important;padding:0 1rem!important}
  .logo-img{height:38px!important}
  .nav-links,.nav-actions .nav-cta-btn{display:none!important}
  .nav-actions{gap:.25rem!important}
  .nav-icon-btn{width:40px!important;height:40px!important;min-width:40px!important}
  .nav-account-btn,.cart-icon-btn{min-width:40px!important;min-height:40px!important}

  /* ── Mobile nav drawer — full screen ── */
  .mobile-nav{
    width:100%!important;
    max-width:100%!important;
    border-radius:0!important;
    padding-bottom:80px!important;
  }
  .mobile-nav-header{padding:.9rem 1rem!important;border-bottom:1px solid rgba(27,67,50,.08)!important}
  .mobile-link{font-size:.95rem!important;padding:.85rem 1.25rem!important;min-height:52px!important;display:flex!important;align-items:center!important}
  .mobile-sub-link{padding:.7rem 1.5rem!important;min-height:44px!important;display:flex!important;align-items:center!important}
  .mobile-actions{padding:1rem!important;gap:.5rem!important}
  .mobile-actions .btn{flex:1!important;justify-content:center!important;min-height:48px!important;font-size:.8rem!important}

  /* ── Hero — mobile stack ── */
  .hero{min-height:auto!important;padding:2rem 0 0!important}
  .hero-inner{flex-direction:column!important;gap:1.5rem!important;padding:0!important}
  .hero-text{padding:1.5rem 1rem 0!important;text-align:center!important;order:1!important}
  .hero-visual-wrap,.hero-slider-wrap{order:2!important;width:100%!important;height:220px!important;border-radius:0!important}
  .hero-title{font-size:2rem!important;margin-bottom:.75rem!important}
  .hero-sub{font-size:.88rem!important;margin-bottom:1.25rem!important}
  .hero-actions{justify-content:center!important;gap:.6rem!important}
  .hero-actions .btn{padding:.6rem 1.2rem!important;font-size:.78rem!important}

  /* ── Stats bar — 2×2 grid on mobile ── */
  .stats-bar{padding:.5rem 0!important}
  .stats-inner{flex-wrap:wrap!important;gap:0!important}
  .stat-item{
    flex:0 0 50%!important;
    border-right:none!important;
    border-bottom:1px solid rgba(255,255,255,.1)!important;
    padding:1rem .85rem!important;
  }
  .stat-item:nth-child(odd){border-right:1px solid rgba(255,255,255,.1)!important}
  .stat-item:nth-child(3),.stat-item:nth-child(4){border-bottom:none!important}
  .stat-num{font-size:1.35rem!important}
  .stat-label{font-size:.6rem!important}
  .stat-icon{width:30px!important;height:30px!important}

  /* ── Why Import — stack on mobile ── */
  .why-import-section{flex-direction:column!important}
  .wi-left{width:100%!important;padding:2rem 1rem 1.5rem!important;flex-direction:column!important}
  .wi-left-inner{padding-right:0!important;max-width:100%!important}
  .wi-map{display:none!important}
  .wi-right{flex-direction:column!important;padding:1.5rem 1rem 2rem!important}
  .wi-feat-col{padding:1.25rem .5rem!important;flex-direction:row!important;align-items:flex-start!important;gap:1rem!important;text-align:left!important}
  .wi-feat-divider{width:100%!important;height:1px!important}
  .wi-feat-icon{flex-shrink:0!important}

  /* ── Coffee CTA — mobile ── */
  .coffee-cta-inner{padding:2rem 1rem!important}
  .coffee-cta-heading{font-size:1.8rem!important}
  .coffee-cta-desc{font-size:.88rem!important}

  /* ── Products ── */
  .products-tab-hd{flex-direction:column!important;gap:.75rem!important}
  .products-tab-bar{gap:1rem!important;overflow-x:auto!important;white-space:nowrap!important;-webkit-overflow-scrolling:touch!important;scrollbar-width:none!important;padding-bottom:2px!important}
  .products-tab-bar::-webkit-scrollbar{display:none!important}
  .products-grid{grid-template-columns:repeat(2,1fr)!important;gap:.75rem!important}
  .product-name{font-size:.84rem!important}
  .product-card-footer{flex-wrap:wrap!important;gap:.4rem!important}

  /* ── Categories ── */
  .cat-grid{grid-template-columns:repeat(2,1fr)!important;gap:.6rem!important}
  .cat-card{height:140px!important}

  /* ── Collections ── */
  .coll-grid,.collections-grid{grid-template-columns:repeat(2,1fr)!important;gap:.75rem!important}
  .coll-card{height:160px!important}

  /* ── Process steps — vertical ── */
  .process-row{flex-direction:column!important;gap:1.5rem!important}
  .process-line{display:none!important}
  .process-step-wrap{flex:none!important;width:100%!important;max-width:100%!important}
  .process-step-wrap::after{display:none!important}

  /* ── Blog grid — 1 col ── */
  .blog-grid{grid-template-columns:1fr!important;gap:1rem!important}

  /* ── Section title ── */
  .section-title{font-size:1.55rem!important}
  .section-head{margin-bottom:1.75rem!important}
  .section-sub{font-size:.84rem!important}

  /* ── Footer ── */
  .footer-cta-inner{flex-direction:column!important;text-align:center!important;gap:1.25rem!important}
  .footer-cta-actions{flex-direction:column!important;align-items:center!important;gap:.6rem!important}
  .footer-cta-actions .btn{width:100%!important;max-width:280px!important;justify-content:center!important}
  .footer-grid-5{grid-template-columns:1fr 1fr!important;gap:1.5rem!important}
  .footer-brand{grid-column:1/-1!important}
  .footer-bottom{flex-direction:column!important;gap:.5rem!important;text-align:center!important;font-size:.72rem!important}
  .footer-bottom-links{justify-content:center!important}

  /* ── WhatsApp widget on mobile ── */
  .wa-widget{left:auto!important;right:16px!important;bottom:72px!important}
  .wa-panel{width:calc(100vw - 32px)!important;max-width:320px!important}

  /* ── Product show page ── */
  .product-show-inner,.product-detail-wrap{flex-direction:column!important}
  .product-gallery{width:100%!important}
  .product-info{width:100%!important;padding-left:0!important}

  /* ── Section label — smaller ── */
  .section-label{font-size:.58rem!important;letter-spacing:.18em!important}
}

/* ── Sticky bottom mobile navigation bar ── */
.mob-nav-bar{
  display:none;
  position:fixed;
  bottom:0;left:0;right:0;
  height:56px;
  background:#fff;
  border-top:1px solid rgba(27,67,50,.12);
  box-shadow:0 -2px 12px rgba(27,67,50,.1);
  z-index:9990;
  align-items:stretch;
}
@media(max-width:768px){.mob-nav-bar{display:flex!important}}
.mob-nav-item{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:3px;
  text-decoration:none;
  color:var(--muted,#4e6657);
  font-size:.6rem;
  font-weight:500;
  letter-spacing:.03em;
  padding:.25rem 0;
  border:none;background:none;cursor:pointer;
  transition:color .15s;
  position:relative;
}
.mob-nav-item:active{background:rgba(27,67,50,.06)}
.mob-nav-item.active,.mob-nav-item:hover{color:var(--green,#1B4332)}
.mob-nav-item.active::after{
  content:'';
  position:absolute;top:0;left:25%;right:25%;
  height:2px;
  background:var(--gold,#C8922A);
  border-radius:0 0 2px 2px;
}
.mob-nav-badge{
  position:absolute;top:6px;right:calc(50% - 18px);
  background:var(--gold,#C8922A);
  color:#fff;
  font-size:.55rem;font-weight:700;
  min-width:14px;height:14px;
  border-radius:7px;
  display:flex;align-items:center;justify-content:center;
  padding:0 3px;
  line-height:1;
}
.mob-nav-quote{
  flex:1.3;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:var(--green,#1B4332);
  color:#fff!important;
  font-size:.6rem;font-weight:700;
  letter-spacing:.04em;
  gap:3px;
  position:relative;
}
.mob-nav-quote:active{background:var(--green-light,#2D6A4F)!important}
.mob-nav-quote::before{
  content:'';
  position:absolute;top:-6px;left:50%;transform:translateX(-50%);
  width:44px;height:44px;
  background:var(--green,#1B4332);
  border-radius:50%;
  border:3px solid #f0ebe2;
  z-index:-1;
}

/* ── Inline-style replacements ── */
.section-head-flex{display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:1rem;margin-bottom:2rem}
.section-head-xl{margin-bottom:3.5rem}
.section-title-flush{margin:0}
.view-all-push{margin-left:.75rem}
.coll-bg-img{width:100%;height:100%;object-fit:cover}
.footer-tel{color:inherit;text-decoration:none}
.footer-contact-cta{margin-top:1.25rem}
.hpb-leaf{color:var(--gold,#b98a37);margin-top:3px}

/* ── Scroll reveal ── */
.reveal{opacity:0;transform:translateY(20px);transition:opacity .5s ease,transform .5s ease}
.reveal.visible{opacity:1;transform:none}
.reveal-delay-1{transition-delay:.08s}
.reveal-delay-2{transition-delay:.16s}
.reveal-delay-3{transition-delay:.24s}

/* ── Trust / Certification Bar ── */
.trust-bar{background:var(--cream,#f5edd8);border-top:1px solid rgba(200,146,42,.18);border-bottom:1px solid rgba(200,146,42,.18);padding:.85rem 0;overflow:hidden}
.trust-inner{max-width:1200px;margin:0 auto;padding:0 1.5rem;display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap;justify-content:center}
.trust-title{font-size:.62rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--muted,#4e6657);white-space:nowrap;flex-shrink:0}
.trust-certs{display:flex;align-items:center;gap:1.25rem;flex-wrap:wrap;justify-content:center}
.trust-cert{display:flex;align-items:center;gap:.45rem;font-size:.72rem;font-weight:600;color:var(--ink,#1a2a20);white-space:nowrap}
.tc-icon{width:18px;height:18px;flex-shrink:0;stroke:var(--green,#1B4332)}
@media(max-width:600px){.trust-title{display:none}.trust-certs{gap:.85rem}.trust-cert{font-size:.66rem}}

/* ── Testimonials ── */
.testimonials-section{background:var(--ink,#1a2a20);padding:4.5rem 0}
.testimonials-section .section-label{color:rgba(200,146,42,.8)}
.testimonials-section .section-title{color:#fff}
.testimonials-section .section-sub{color:rgba(255,255,255,.55)}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:2.5rem}
.testi-card{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);border-radius:12px;padding:1.75rem;display:flex;flex-direction:column;gap:1rem;transition:background .25s,transform .25s}
.testi-card:hover{background:rgba(255,255,255,.08);transform:translateY(-3px)}
.testi-stars{display:flex;gap:3px;color:var(--gold,#C8922A)}
.testi-quote{font-size:.88rem;line-height:1.65;color:rgba(255,255,255,.8);font-style:italic;margin:0;flex:1}
.testi-author{display:flex;align-items:center;gap:.85rem;margin-top:auto;padding-top:.75rem;border-top:1px solid rgba(255,255,255,.08)}
.testi-flag{font-size:1.5rem;line-height:1;flex-shrink:0}
.testi-name{font-size:.82rem;font-weight:700;color:#fff}
.testi-role{font-size:.72rem;color:rgba(255,255,255,.45);margin-top:.15rem}
@media(max-width:900px){.testi-grid{grid-template-columns:1fr 1fr}}
@media(max-width:600px){.testi-grid{grid-template-columns:1fr}}

/* ── Why-card hover lift ── */
.why-card{transition:transform .25s,box-shadow .25s}
.why-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(27,67,50,.12)}

/* ── Contact page enhancements ── */
.contact-hero-label{color:var(--gold-2,#D4A845)!important}
.form-card-title{font-family:var(--font-serif,serif);color:var(--canopy,#173C2C);margin-bottom:1.5rem;font-size:1.25rem}
.contact-card-title{font-family:var(--font-serif,serif);color:var(--canopy,#173C2C);margin-bottom:1.25rem;font-size:1rem}
.contact-sidebar{display:flex;flex-direction:column;gap:1.5rem}
.contact-tel{color:inherit;text-decoration:none;transition:color .18s}
.contact-tel:hover{color:var(--canopy,#173C2C)}
.contact-tel-sub{font-size:.82em;opacity:.65;display:block;margin-top:.2rem}
.alert-list{margin:0;padding-left:1.25rem}
.alert-success{display:flex;align-items:center;gap:.65rem;background:#e8f5e9;border:1px solid #a5d6a7;color:#2e7d32;border-radius:8px;padding:.9rem 1rem;margin-bottom:1.25rem;font-size:.875rem}
.btn-submit-full{width:100%;justify-content:center;padding:.9rem 1.5rem}

/* ── Pill-style category checkboxes ── */
.cat-pill-group{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:.35rem}
.cat-pill{position:relative;cursor:pointer}
.cat-pill input[type=checkbox]{position:absolute;opacity:0;width:0;height:0;pointer-events:none}
.cat-pill span{display:inline-flex;align-items:center;padding:.38rem .9rem;border:1.5px solid var(--border,#d5e4db);border-radius:20px;font-size:.8rem;font-weight:500;color:var(--ink,#1a2a20);background:#fff;transition:all .2s;user-select:none}
.cat-pill:hover span{border-color:var(--canopy,#173C2C);color:var(--canopy,#173C2C)}
.cat-pill input:checked + span{background:var(--canopy,#173C2C);color:#fff;border-color:var(--canopy,#173C2C)}

/* ── Contact info card variant ── */
.contact-info-card-parchment{background:var(--parchment,#F6F1E9)!important;border:none!important;box-shadow:none!important}
.contact-promise-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.75rem}
.contact-promise-list li{display:flex;align-items:center;gap:.6rem;font-size:.875rem;color:var(--ink,#1a2a20);line-height:1.5}
.contact-promise-list li svg{color:var(--canopy,#173C2C);flex-shrink:0}

/* ── WhatsApp CTA button ── */
.whatsapp-cta-btn{display:inline-flex;align-items:center;gap:.6rem;margin-top:1.25rem;background:#25D366;color:#fff;font-size:.84rem;font-weight:600;padding:.65rem 1.1rem;border-radius:8px;text-decoration:none;transition:background .2s}
.whatsapp-cta-btn:hover{background:#1ebe5d;color:#fff}

/* ── Footer FIDHAPS credit ── */
.footer-credit{font-size:.72rem;color:rgba(255,255,255,.4);margin-top:.2rem}
.footer-credit-link{color:rgba(255,255,255,.6);text-decoration:none;font-weight:600;transition:color .18s}
.footer-credit-link:hover{color:var(--gold-2,#D4A845)}

/* ── Products grid — force 4 columns on index page ── */
.products-grid{grid-template-columns:repeat(4,1fr)!important;gap:1.25rem!important}
@media(max-width:1100px){.products-grid:not(.products-carousel){grid-template-columns:repeat(3,1fr)!important}}
@media(max-width:720px){.products-grid:not(.products-carousel){grid-template-columns:repeat(2,1fr)!important}}
@media(max-width:420px){.products-grid:not(.products-carousel){grid-template-columns:1fr!important}}

/* ── Home products carousel ── */
.products-carousel-wrap{position:relative;padding:0 24px}
.products-carousel{
    display:flex!important;
    gap:1.25rem!important;
    overflow-x:auto;
    scroll-behavior:smooth;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    padding-bottom:6px;
    grid-template-columns:unset!important;
}
.products-carousel::-webkit-scrollbar{display:none}
.products-carousel .product-card{
    flex:0 0 calc(25% - 1rem)!important;
    min-width:220px;
    scroll-snap-align:start;
}
@media(max-width:1100px){.products-carousel .product-card{flex:0 0 calc(33.33% - 1rem)!important}}
@media(max-width:720px){.products-carousel .product-card{flex:0 0 calc(50% - .65rem)!important}}
@media(max-width:440px){.products-carousel .product-card{flex:0 0 calc(85% - .5rem)!important}}
.pc-arrow{
    position:absolute;top:50%;transform:translateY(-50%);
    width:40px;height:40px;
    background:#fff;border:1.5px solid rgba(27,67,50,.14);
    border-radius:50%;cursor:pointer;
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 2px 12px rgba(27,67,50,.1);
    z-index:10;color:var(--green,#1B4332);
    transition:background .2s,border-color .2s,color .2s,opacity .2s;
    padding:0;
}
.pc-arrow:hover{background:var(--green,#1B4332);color:#fff;border-color:var(--green,#1B4332)}
.pc-arrow:disabled{opacity:.25;pointer-events:none}
.pc-prev{left:0}
.pc-next{right:0}

/* ── Product card — placeholder & carousel polish ── */

/* Styled placeholder — hide emoji, show leaf watermark */
.product-img-placeholder{
    font-size:0!important;
    background:linear-gradient(145deg,#f2ece4 0%,#e6dfd5 100%)!important;
    position:relative!important;
}
.product-img-placeholder::after{
    content:'';
    position:absolute;
    inset:0;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231B4332' opacity='.07'%3E%3Cpath d='M12 2C7 2 3 7 4 13c.8 4.5 4.5 8 8 9 3.5-1 7.2-4.5 8-9 1-6-3-11-8-11z'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:center;
    background-size:60%;
    opacity:.55;
}

/* Arrows centered on image area (image ~60% of card height) */
.pc-arrow{top:30%!important}

/* Tab header — tighten spacing below */
.products-tab-hd{margin-bottom:.85rem!important}

/* Tab buttons — better style */
.tab-btn{font-size:.72rem!important;font-weight:600!important;letter-spacing:.06em!important;text-transform:uppercase!important;padding:.45rem .85rem!important;border-radius:20px!important;border:none!important;background:none!important;color:var(--muted,#4e6657)!important;cursor:pointer!important;transition:all .2s!important;position:relative!important;white-space:nowrap!important}
.tab-btn::after{content:'';position:absolute;bottom:-2px;left:50%;right:50%;height:2px;background:var(--gold,#C8922A);border-radius:2px;transition:left .2s,right .2s!important}
.tab-btn.active,.tab-btn:hover{color:var(--green,#1B4332)!important}
.tab-btn.active::after{left:0!important;right:0!important}

/* View all link styling */
.view-all-push{font-size:.72rem!important;font-weight:700!important;letter-spacing:.06em!important;text-transform:uppercase!important;color:var(--green,#1B4332)!important;text-decoration:none!important;display:inline-flex!important;align-items:center!important;gap:.3rem!important;white-space:nowrap!important;padding:.45rem 0!important;border-bottom:2px solid var(--gold,#C8922A)!important;transition:color .2s!important}
.view-all-push:hover{color:var(--gold,#C8922A)!important}

/* Carousel section overall spacing */
.products-carousel-wrap{padding:0 32px!important}
.pc-prev{left:-4px!important}
.pc-next{right:-4px!important}

/* Card image consistent height */
.products-carousel .product-img{aspect-ratio:4/3!important}

/* Why Import — premium enhancements ── */
.why-import-section .section-label{color:var(--green,#1B4332)!important}
.wi-feat-col{transition:background .25s,transform .25s!important;border-radius:8px!important}
.wi-feat-col:hover{background:rgba(200,146,42,.06)!important;transform:translateY(-3px)!important}
.wi-feat-icon{transition:transform .25s,box-shadow .25s!important;border-radius:50%!important;background:rgba(200,146,42,.12)!important}
.wi-feat-col:hover .wi-feat-icon{transform:scale(1.12)!important;box-shadow:0 0 0 6px rgba(200,146,42,.1)!important}
.wi-right{border-top:3px solid var(--gold,#C8922A)!important}
.wi-feat-title{letter-spacing:-.01em!important}
.wi-heading{position:relative!important}
.wi-left-inner .section-label{display:inline-flex!important}

/* ── Coffee CTA — gold button + top accent ── */
.coffee-cta-section{border-top:3px solid var(--gold,#C8922A)!important}
.coffee-cta-btn{background:var(--gold,#C8922A)!important;color:var(--ink,#1a2a20)!important;border-color:var(--gold,#C8922A)!important;font-weight:700!important}
.coffee-cta-btn:hover{background:var(--gold-2,#D4A845)!important;border-color:var(--gold-2,#D4A845)!important;transform:translateX(3px)!important}
.coffee-cta-desc{color:rgba(255,255,255,.75)!important}

/* ── Why Choose cards — additional refinements ── */
.why-card:hover .why-card-icon{background:rgba(200,146,42,.28)!important;transform:scale(1.08)!important}
.why-card-icon{transition:background .25s,transform .25s!important}
.why-card:hover .why-card-num{color:rgba(200,146,42,.22)!important}
.why-choose .section-head{padding-bottom:.5rem!important}

/* ── Contact page mobile ── */
@media(max-width:768px){
  .form-row{grid-template-columns:1fr!important}
  .contact-sidebar{margin-top:.5rem}
  .cat-pill span{font-size:.75rem;padding:.32rem .75rem}
}
