/* All Creatures Mobile Grooming - Storefront CSS */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:'Inter',system-ui,-apple-system,sans-serif;background:var(--color-bg);color:var(--color-text-secondary);line-height:1.6;font-size:16px;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
input,select,textarea{font-family:inherit;font-size:inherit}
ul,ol{list-style:none}
table{border-collapse:collapse;width:100%}
:root{
--color-bg:#FAFBF9;--color-surface:#FFFFFF;--color-surface-alt:#F0F4F1;--color-border:#E0E5E2;
--color-text-primary:#1A2B23;--color-text-secondary:#4A5C54;--color-text-muted:#7A8C84;
--color-accent:#2D7A5F;--color-accent-hover:#236049;--color-accent-fg:#FFFFFF;--color-accent-light:#E8F4EF;
--color-success:#2D7A5F;--color-warning:#D4862A;--color-error:#C84A3A;--color-sale:#C84A3A;--color-star:#E8A530;
--font-heading:'Poppins',system-ui,sans-serif;--font-body:'Inter',system-ui,sans-serif;--font-mono:'JetBrains Mono',monospace;
--radius-sm:6px;--radius-md:10px;--radius-lg:16px;--radius-full:9999px;
--shadow-sm:0 1px 3px rgba(26,43,35,0.08);--shadow-md:0 4px 12px rgba(26,43,35,0.10);--shadow-lg:0 12px 32px rgba(26,43,35,0.14);
--space-xs:4px;--space-sm:8px;--space-md:16px;--space-lg:24px;--space-xl:40px;--space-2xl:64px;--space-3xl:96px;
--transition-fast:150ms ease;--transition-base:250ms ease;--container-max:1280px;
}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
:focus-visible{outline:2px solid var(--color-accent);outline-offset:2px;border-radius:var(--radius-sm)}
@media (prefers-reduced-motion:reduce){*{animation-duration:0.01ms!important;transition-duration:0.01ms!important;scroll-behavior:auto!important}}
.container{max-width:var(--container-max);margin:0 auto;padding:0 var(--space-md)}
@media(min-width:768px){.container{padding:0 var(--space-lg)}}
@media(min-width:1024px){.container{padding:0 var(--space-xl)}}
h1,h2,h3,h4,h5,h6{font-family:var(--font-heading);color:var(--color-text-primary);line-height:1.2;font-weight:600}
h1{font-size:clamp(1.75rem,5vw,3rem)}h2{font-size:clamp(1.5rem,4vw,2.25rem)}h3{font-size:clamp(1.25rem,3vw,1.75rem)}h4{font-size:1.125rem}
p{margin-bottom:var(--space-md)}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:var(--space-sm);padding:12px 24px;border-radius:var(--radius-md);font-weight:600;font-size:0.95rem;transition:all var(--transition-base);text-align:center;white-space:nowrap;line-height:1.4}
.btn-primary{background:var(--color-accent);color:var(--color-accent-fg)}.btn-primary:hover{background:var(--color-accent-hover);transform:translateY(-1px);box-shadow:var(--shadow-md)}
.btn-secondary{background:var(--color-surface);color:var(--color-text-primary);border:1.5px solid var(--color-border)}.btn-secondary:hover{border-color:var(--color-accent);color:var(--color-accent)}
.btn-ghost{background:transparent;color:var(--color-text-primary);padding:8px 16px}.btn-ghost:hover{color:var(--color-accent)}
.btn-lg{padding:16px 32px;font-size:1.05rem}.btn-sm{padding:8px 16px;font-size:0.85rem}.btn-block{width:100%}
.btn:disabled{opacity:0.5;cursor:not-allowed;transform:none!important}
.badge{display:inline-flex;align-items:center;padding:4px 10px;border-radius:var(--radius-full);font-size:0.75rem;font-weight:600}
.badge-sale{background:var(--color-sale);color:#fff}.badge-new{background:var(--color-accent);color:var(--color-accent-fg)}
.badge-out{background:var(--color-text-muted);color:#fff}
.badge-count{background:var(--color-accent);color:#fff;min-width:20px;height:20px;border-radius:var(--radius-full);font-size:0.7rem;display:inline-flex;align-items:center;justify-content:center;padding:0 6px}
.announcement-bar{background:var(--color-text-primary);color:#fff;text-align:center;padding:10px var(--space-md);font-size:0.85rem;font-weight:500}
.nav{position:sticky;top:0;z-index:100;background:var(--color-surface);border-bottom:1px solid var(--color-border);transition:box-shadow var(--transition-base)}
.nav.scrolled{box-shadow:var(--shadow-sm)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;gap:var(--space-md);padding:12px var(--space-md);max-width:var(--container-max);margin:0 auto;flex-wrap:nowrap}
.nav-logo{font-family:var(--font-heading);font-size:1.15rem;font-weight:700;color:var(--color-text-primary);white-space:nowrap;display:flex;align-items:center;gap:8px;flex-shrink:0}
.nav-logo span{color:var(--color-accent)}
.nav-links{display:none;align-items:center;gap:18px;flex-wrap:nowrap;overflow:hidden}
.nav-links a{font-weight:500;font-size:0.82rem;color:var(--color-text-secondary);transition:color var(--transition-fast);position:relative;white-space:nowrap}
.nav-links a:hover{color:var(--color-accent)}
.nav-links a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:2px;background:var(--color-accent);transition:width var(--transition-base)}
.nav-links a:hover::after{width:100%}
.nav-actions{display:flex;align-items:center;gap:var(--space-md)}
.nav-action{position:relative;display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:var(--radius-full);color:var(--color-text-secondary);transition:all var(--transition-fast)}
.nav-action:hover{background:var(--color-surface-alt);color:var(--color-accent)}
.nav-action svg{width:22px;height:22px}
.nav-cart-count{position:absolute;top:-2px;right:-2px}
.search-toggle{display:flex;align-items:center}
.search-bar-inline{display:none;position:absolute;top:100%;left:0;right:0;background:var(--color-surface);border-bottom:1px solid var(--color-border);padding:var(--space-md);box-shadow:var(--shadow-md)}
.search-bar-inline.active{display:block}
.search-bar-inline input{width:100%;padding:12px 16px;border:1.5px solid var(--color-border);border-radius:var(--radius-md);font-size:1rem}
.search-bar-inline input:focus{border-color:var(--color-accent);outline:none}
.hamburger{display:flex;flex-direction:column;gap:4px;width:28px;height:22px;justify-content:center}
.hamburger span{display:block;height:2.5px;width:100%;background:var(--color-text-primary);border-radius:2px;transition:all var(--transition-base)}
.hamburger.active span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}
.mobile-menu{display:none;position:fixed;top:0;left:0;width:85%;max-width:360px;height:100vh;background:var(--color-surface);z-index:200;transform:translateX(-100%);transition:transform var(--transition-base);overflow-y:auto;box-shadow:var(--shadow-lg)}
.mobile-menu.active{display:block;transform:translateX(0)}
.mobile-menu-header{display:flex;align-items:center;justify-content:space-between;padding:var(--space-lg);border-bottom:1px solid var(--color-border)}
.mobile-menu nav{padding:var(--space-md)}
.mobile-menu nav a{display:block;padding:14px var(--space-md);font-weight:500;color:var(--color-text-primary);border-radius:var(--radius-md);transition:background var(--transition-fast)}
.mobile-menu nav a:hover{background:var(--color-surface-alt)}
.mobile-menu-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,0.4);z-index:150}
.mobile-menu-overlay.active{display:block}
@media(min-width:768px){.nav-links{display:flex}.hamburger{display:none}.mobile-menu,.mobile-menu-overlay{display:none!important}}
.hero{position:relative;min-height:520px;display:flex;align-items:center;overflow:hidden;background:linear-gradient(135deg,#1A2B23 0%,#2D7A5F 100%)}
.hero-bg{position:absolute;inset:0;z-index:0}.hero-bg img{width:100%;height:100%;object-fit:cover;opacity:0.35}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(26,43,35,0.85) 0%,rgba(45,122,95,0.6) 100%);z-index:1}
.hero-content{position:relative;z-index:2;padding:var(--space-3xl) var(--space-md);max-width:var(--container-max);margin:0 auto;width:100%}
.hero-eyebrow{display:inline-block;padding:6px 16px;background:rgba(255,255,255,0.15);border-radius:var(--radius-full);color:#fff;font-size:0.85rem;font-weight:500;margin-bottom:var(--space-md);backdrop-filter:blur(8px)}
.hero-title{color:#fff;font-size:clamp(2rem,6vw,3.5rem);font-weight:700;margin-bottom:var(--space-md);max-width:700px}
.hero-subtitle{color:rgba(255,255,255,0.9);font-size:clamp(1rem,2.5vw,1.25rem);max-width:580px;margin-bottom:var(--space-xl)}
.hero-actions{display:flex;flex-wrap:wrap;gap:var(--space-md)}
@media(min-width:768px){.hero{min-height:600px}}
.section{padding:var(--space-2xl) 0}.section-alt{background:var(--color-surface-alt)}
.section-header{text-align:center;max-width:680px;margin:0 auto var(--space-xl)}
.section-title{margin-bottom:var(--space-sm)}.section-subtitle{color:var(--color-text-muted);font-size:1.05rem}
.grid-2{display:grid;grid-template-columns:1fr;gap:var(--space-lg)}
.grid-3{display:grid;grid-template-columns:repeat(2,1fr);gap:var(--space-md)}
.grid-4{display:grid;grid-template-columns:repeat(2,1fr);gap:var(--space-md)}
.grid-auto{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:var(--space-lg)}
@media(min-width:640px){.grid-3{grid-template-columns:repeat(3,1fr)}.grid-4{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1024px){.grid-2{grid-template-columns:repeat(2,1fr)}.grid-4{grid-template-columns:repeat(4,1fr)}}
.product-card{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-lg);overflow:hidden;transition:all var(--transition-base);display:flex;flex-direction:column}
.product-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px);border-color:var(--color-accent-light)}
.product-card-img{position:relative;aspect-ratio:1;overflow:hidden;background:var(--color-surface-alt)}
.product-card-img img{width:100%;height:100%;object-fit:cover;transition:transform var(--transition-base)}
.product-card:hover .product-card-img img{transform:scale(1.05)}
.product-card-badges{position:absolute;top:10px;left:10px;display:flex;flex-direction:column;gap:4px;z-index:1}
.product-card-body{padding:var(--space-md);flex:1;display:flex;flex-direction:column}
.product-card-title{font-family:var(--font-heading);font-size:0.95rem;font-weight:600;color:var(--color-text-primary);margin-bottom:6px;line-height:1.3;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:2.6em}
.product-card-vendor{font-size:0.78rem;color:var(--color-text-muted);margin-bottom:6px}
.product-card-price-wrap{display:flex;align-items:baseline;gap:8px;margin-bottom:var(--space-md)}
.product-card-price{font-family:var(--font-mono);font-size:1.1rem;font-weight:700;color:var(--color-text-primary)}
.product-card-compare-price{font-size:0.9rem;color:var(--color-text-muted);text-decoration:line-through}
.product-card-btn{margin-top:auto;width:100%}
.collection-card{position:relative;aspect-ratio:4/3;border-radius:var(--radius-lg);overflow:hidden;display:block;transition:all var(--transition-base)}
.collection-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-2px)}
.collection-card img{width:100%;height:100%;object-fit:cover;transition:transform var(--transition-base)}
.collection-card:hover img{transform:scale(1.08)}
.collection-card-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(26,43,35,0.8) 0%,rgba(26,43,35,0.2) 60%,transparent 100%);display:flex;flex-direction:column;justify-content:flex-end;padding:var(--space-lg)}
.collection-card-title{color:#fff;font-size:1.25rem;font-weight:600;margin-bottom:4px}
.collection-card-count{color:rgba(255,255,255,0.8);font-size:0.85rem}
.blog-card{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-lg);overflow:hidden;transition:all var(--transition-base);display:flex;flex-direction:column}
.blog-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.blog-card-img{aspect-ratio:16/9;overflow:hidden;background:var(--color-surface-alt)}
.blog-card-img img{width:100%;height:100%;object-fit:cover;transition:transform var(--transition-base)}
.blog-card:hover .blog-card-img img{transform:scale(1.05)}
.blog-card-body{padding:var(--space-lg);flex:1;display:flex;flex-direction:column}
.blog-card-title{font-size:1.1rem;font-weight:600;margin-bottom:8px;line-height:1.3;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.blog-card-excerpt{font-size:0.9rem;color:var(--color-text-muted);margin-bottom:var(--space-md);display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;flex:1}
.blog-card-meta{font-size:0.8rem;color:var(--color-text-muted);display:flex;gap:var(--space-sm)}
.trust-badges{display:grid;grid-template-columns:repeat(2,1fr);gap:var(--space-md);text-align:center}
@media(min-width:768px){.trust-badges{grid-template-columns:repeat(4,1fr)}}
.breadcrumb{display:flex;flex-wrap:wrap;align-items:center;gap:6px;padding:var(--space-md) 0;font-size:0.85rem;color:var(--color-text-muted)}
.breadcrumb a{color:var(--color-text-secondary);transition:color var(--transition-fast)}.breadcrumb a:hover{color:var(--color-accent)}
.breadcrumb-item::after{content:'\203A';margin-left:6px;color:var(--color-text-muted)}.breadcrumb-item:last-child::after{display:none}
.product-layout{display:grid;grid-template-columns:1fr;gap:var(--space-xl);padding:var(--space-xl) 0}
@media(min-width:768px){.product-layout{grid-template-columns:1fr 1fr;gap:var(--space-2xl)}}
.product-gallery{display:flex;flex-direction:column;gap:var(--space-md)}
.gallery-main-wrap{position:relative;aspect-ratio:1;border-radius:var(--radius-lg);overflow:hidden;background:var(--color-surface-alt);border:1px solid var(--color-border)}
.gallery-main-wrap img{width:100%;height:100%;object-fit:cover;cursor:zoom-in}
.gallery-thumbs{display:flex;gap:var(--space-sm);overflow-x:auto;padding-bottom:4px}
.gallery-thumb{width:72px;height:72px;border-radius:var(--radius-sm);overflow:hidden;border:2px solid transparent;cursor:pointer;flex-shrink:0;transition:border-color var(--transition-fast)}
.gallery-thumb.active{border-color:var(--color-accent)}
.gallery-thumb img{width:100%;height:100%;object-fit:cover}
.product-info{display:flex;flex-direction:column;gap:var(--space-md)}
.product-vendor{font-size:0.85rem;color:var(--color-text-muted);font-weight:500;text-transform:uppercase;letter-spacing:0.5px}
.product-title{font-size:clamp(1.5rem,3vw,2rem);line-height:1.25}
.product-price-wrap{display:flex;align-items:baseline;gap:var(--space-md)}
.product-price{font-family:var(--font-mono);font-size:1.75rem;font-weight:700;color:var(--color-text-primary)}
.product-compare-price{font-size:1.25rem;color:var(--color-text-muted);text-decoration:line-through}
.rating-stars{display:flex;align-items:center;gap:4px}
.rating-stars svg{width:18px;height:18px;color:var(--color-star)}
.rating-stars span{font-size:0.85rem;color:var(--color-text-muted);margin-left:4px}
.option-group{margin-bottom:var(--space-md)}
.option-label{display:block;font-size:0.85rem;font-weight:600;color:var(--color-text-primary);margin-bottom:8px}
.option-btns{display:flex;flex-wrap:wrap;gap:8px}
.option-btn{padding:8px 16px;border:1.5px solid var(--color-border);border-radius:var(--radius-md);font-size:0.9rem;font-weight:500;transition:all var(--transition-fast);background:var(--color-surface);color:var(--color-text-secondary)}
.option-btn:hover{border-color:var(--color-accent)}
.option-btn.active{border-color:var(--color-accent);background:var(--color-accent-light);color:var(--color-accent)}
.option-btn.unavailable{opacity:0.4;text-decoration:line-through;cursor:not-allowed}
.qty-control{display:inline-flex;align-items:center;border:1.5px solid var(--color-border);border-radius:var(--radius-md);overflow:hidden}
.qty-btn{width:40px;height:40px;display:flex;align-items:center;justify-content:center;font-size:1.2rem;color:var(--color-text-secondary);transition:background var(--transition-fast)}
.qty-btn:hover{background:var(--color-surface-alt);color:var(--color-accent)}
.qty-input{width:50px;height:40px;text-align:center;border:none;border-left:1.5px solid var(--color-border);border-right:1.5px solid var(--color-border);font-weight:600;font-family:var(--font-mono)}
.sticky-atc{position:fixed;bottom:0;left:0;right:0;background:var(--color-surface);border-top:1px solid var(--color-border);padding:12px var(--space-md);z-index:90;transform:translateY(100%);transition:transform var(--transition-base);box-shadow:0 -4px 12px rgba(0,0,0,0.08)}
.sticky-atc.visible{transform:translateY(0)}
.sticky-atc-inner{max-width:var(--container-max);margin:0 auto;display:flex;align-items:center;gap:var(--space-md)}
.sticky-atc-product{display:flex;align-items:center;gap:var(--space-sm);flex:1;min-width:0}
.sticky-atc-product img{width:48px;height:48px;border-radius:var(--radius-sm);object-fit:cover;flex-shrink:0}
.sticky-atc-product .info{min-width:0}
.sticky-atc-product .info h4{font-size:0.85rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.sticky-atc-product .info .price{font-family:var(--font-mono);font-weight:700;font-size:0.95rem;color:var(--color-text-primary)}
@media(min-width:768px){.sticky-atc{display:none}}
.product-accordions{margin-top:var(--space-lg)}
.accordion{border-bottom:1px solid var(--color-border)}
.accordion-header{width:100%;display:flex;align-items:center;justify-content:space-between;padding:16px 0;font-weight:600;color:var(--color-text-primary);font-size:1rem;text-align:left}
.accordion-header svg{width:20px;height:20px;transition:transform var(--transition-base);color:var(--color-text-muted)}
.accordion.open .accordion-header svg{transform:rotate(180deg)}
.accordion-body{max-height:0;overflow:hidden;transition:max-height var(--transition-base)}
.accordion.open .accordion-body{max-height:600px}
.accordion-body-inner{padding:0 0 var(--space-md);color:var(--color-text-secondary);line-height:1.7}
.reviews-section{margin-top:var(--space-2xl)}
.reviews-summary{display:flex;flex-wrap:wrap;align-items:center;gap:var(--space-lg);padding:var(--space-lg);background:var(--color-surface-alt);border-radius:var(--radius-lg);margin-bottom:var(--space-xl)}
.reviews-avg{font-size:3rem;font-weight:700;font-family:var(--font-heading);color:var(--color-text-primary);line-height:1}
.reviews-score{display:flex;flex-direction:column;gap:4px}
.reviews-bars{flex:1;min-width:200px;display:flex;flex-direction:column;gap:6px}
.rating-bar{display:flex;align-items:center;gap:var(--space-sm);font-size:0.85rem}
.rating-bar-track{flex:1;height:8px;background:var(--color-border);border-radius:var(--radius-full);overflow:hidden}
.rating-bar-fill{height:100%;background:var(--color-star);border-radius:var(--radius-full)}
.review-card{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-lg);padding:var(--space-lg);margin-bottom:var(--space-md)}
.review-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:var(--space-sm)}
.review-author{font-weight:600;color:var(--color-text-primary)}
.review-verified{font-size:0.78rem;color:var(--color-success);display:inline-flex;align-items:center;gap:4px}
.review-title{font-weight:600;margin-bottom:6px}
.review-body{color:var(--color-text-secondary);font-size:0.92rem;line-height:1.6}
.review-date{font-size:0.8rem;color:var(--color-text-muted);margin-top:8px}
.cart-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.4);z-index:300;opacity:0;visibility:hidden;transition:all var(--transition-base)}
.cart-overlay.active{opacity:1;visibility:visible}
.cart-drawer{position:fixed;top:0;right:0;width:90%;max-width:420px;height:100vh;background:var(--color-surface);z-index:310;transform:translateX(100%);transition:transform var(--transition-base);display:flex;flex-direction:column;box-shadow:var(--shadow-lg)}
.cart-drawer.active{transform:translateX(0)}
.cart-drawer-header{display:flex;align-items:center;justify-content:space-between;padding:var(--space-lg);border-bottom:1px solid var(--color-border)}
.cart-drawer-header h2{font-size:1.25rem;display:flex;align-items:center;gap:8px}
.cart-close{width:36px;height:36px;border-radius:var(--radius-full);display:flex;align-items:center;justify-content:center;font-size:1.2rem;color:var(--color-text-muted);transition:all var(--transition-fast)}
.cart-close:hover{background:var(--color-surface-alt);color:var(--color-text-primary)}
.cart-lines{flex:1;overflow-y:auto;padding:var(--space-md)}
.cart-item{display:flex;gap:var(--space-md);padding:var(--space-md) 0;border-bottom:1px solid var(--color-border)}
.cart-item-img{width:72px;height:72px;border-radius:var(--radius-md);object-fit:cover;flex-shrink:0;background:var(--color-surface-alt)}
.cart-item-info{flex:1;min-width:0}
.cart-item-title{font-size:0.9rem;font-weight:600;color:var(--color-text-primary);margin-bottom:2px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.cart-item-variant{font-size:0.8rem;color:var(--color-text-muted);margin-bottom:6px}
.cart-item-price{font-family:var(--font-mono);font-weight:700;font-size:0.95rem;color:var(--color-text-primary)}
.cart-item-controls{display:flex;align-items:center;justify-content:space-between;margin-top:8px}
.cart-item-remove{font-size:0.8rem;color:var(--color-error);transition:opacity var(--transition-fast)}.cart-item-remove:hover{opacity:0.7}
.cart-footer{padding:var(--space-lg);border-top:1px solid var(--color-border)}
.cart-subtotal{display:flex;align-items:center;justify-content:space-between;margin-bottom:var(--space-sm)}
.cart-subtotal strong{font-family:var(--font-mono);font-size:1.25rem;color:var(--color-text-primary)}
.cart-tax-note{font-size:0.8rem;color:var(--color-text-muted);margin-bottom:var(--space-md)}
.cart-empty{text-align:center;padding:var(--space-2xl) var(--space-md)}
.cart-empty svg{width:64px;height:64px;color:var(--color-text-muted);margin:0 auto var(--space-md)}
.cart-empty p{color:var(--color-text-muted);margin-bottom:var(--space-lg)}
.toast{position:fixed;bottom:80px;left:50%;transform:translateX(-50%) translateY(100px);background:var(--color-text-primary);color:#fff;padding:14px 24px;border-radius:var(--radius-md);font-size:0.9rem;font-weight:500;z-index:400;opacity:0;transition:all var(--transition-base);box-shadow:var(--shadow-lg);max-width:90%;text-align:center}
.toast.show{transform:translateX(-50%) translateY(0);opacity:1}
.toast-success{background:var(--color-success)}.toast-error{background:var(--color-error)}
.pagination{display:flex;align-items:center;justify-content:center;gap:var(--space-sm);padding:var(--space-xl) 0}
.pagination-btn{min-width:40px;height:40px;border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center;font-weight:600;font-size:0.9rem;border:1.5px solid var(--color-border);background:var(--color-surface);color:var(--color-text-secondary);transition:all var(--transition-fast)}
.pagination-btn:hover{border-color:var(--color-accent);color:var(--color-accent)}
.pagination-btn.active{background:var(--color-accent);color:#fff;border-color:var(--color-accent)}
.search-results{position:absolute;top:100%;left:0;right:0;background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);box-shadow:var(--shadow-lg);max-height:400px;overflow-y:auto;z-index:50;display:none}
.search-results.active{display:block}
.search-item{display:flex;align-items:center;gap:var(--space-md);padding:12px var(--space-md);border-bottom:1px solid var(--color-border);transition:background var(--transition-fast)}
.search-item:hover{background:var(--color-surface-alt)}
.search-item img{width:48px;height:48px;border-radius:var(--radius-sm);object-fit:cover}
.search-item-info h4{font-size:0.9rem;margin-bottom:2px}
.search-item-info .price{font-family:var(--font-mono);font-weight:700;font-size:0.85rem;color:var(--color-text-primary)}
@keyframes shimmer{0%{background-position:200% 0}100%{background-position:-200% 0}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes slideUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
@keyframes spin{to{transform:rotate(360deg)}}
.fade-in{animation:fadeIn 0.5s ease}.slide-up{animation:slideUp 0.5s ease}
.footer{background:var(--color-text-primary);color:rgba(255,255,255,0.7);padding:var(--space-2xl) 0 var(--space-lg)}
.footer-grid{display:grid;grid-template-columns:1fr;gap:var(--space-lg);margin-bottom:var(--space-xl)}
@media(min-width:640px){.footer-grid{grid-template-columns:repeat(2,1fr);gap:var(--space-xl)}
.footer-col:first-child{grid-column:1/-1}}
@media(min-width:900px){.footer-grid{grid-template-columns:1.4fr 1fr 1fr 1fr 1fr;gap:var(--space-lg)}
.footer-col:first-child{grid-column:auto}}
@media(min-width:1100px){.footer-grid{gap:var(--space-xl)}}
.footer-col h4{color:#fff;font-size:1rem;margin-bottom:var(--space-md)}.footer-col{min-height:1px;padding:0;display:flex;flex-direction:column;gap:0}
.footer-col ul li{margin-bottom:8px}
.footer-col ul li a{font-size:0.9rem;color:rgba(255,255,255,0.6);transition:color var(--transition-fast);word-break:break-word}.footer-col ul li a:hover{color:var(--color-accent)}.footer-col ul li{word-break:break-word;line-height:1.5}
.footer-logo{font-family:var(--font-heading);font-size:1.25rem;font-weight:700;color:#fff;margin-bottom:var(--space-md)}
.footer-logo span{color:var(--color-accent)}
.footer-brand-desc{font-size:0.9rem;color:rgba(255,255,255,0.5);margin-bottom:var(--space-md);max-width:300px}
.social-links{display:flex;gap:var(--space-sm)}
.social-links a{width:36px;height:36px;border-radius:var(--radius-full);display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,0.1);transition:all var(--transition-fast)}
.social-links a:hover{background:var(--color-accent);transform:translateY(-2px)}
.social-links svg{width:18px;height:18px;color:#fff}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.1);padding-top:var(--space-lg);display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:var(--space-md);font-size:0.85rem;color:rgba(255,255,255,0.4)}
.footer-payment-icons{display:flex;gap:var(--space-sm);align-items:center}
.footer-payment-icons span{font-size:0.75rem;padding:4px 8px;border:1px solid rgba(255,255,255,0.2);border-radius:var(--radius-sm)}
.availability-msg{font-size:0.85rem;font-weight:500;padding:6px 12px;border-radius:var(--radius-sm);display:inline-flex;align-items:center;gap:6px}
.availability-msg.in-stock{color:var(--color-success);background:var(--color-accent-light)}
.availability-msg.out-stock{color:var(--color-error);background:rgba(200,74,58,0.08)}
.faq-item{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);margin-bottom:var(--space-sm);overflow:hidden}
.faq-question{width:100%;display:flex;align-items:center;justify-content:space-between;padding:var(--space-md) var(--space-lg);font-weight:600;color:var(--color-text-primary);text-align:left;font-size:0.95rem}
.faq-question svg{width:20px;height:20px;transition:transform var(--transition-base);color:var(--color-text-muted);flex-shrink:0}
.faq-item.open .faq-question svg{transform:rotate(180deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height var(--transition-base)}
.faq-item.open .faq-answer{max-height:500px}
.faq-answer-inner{padding:0 var(--space-lg) var(--space-md);color:var(--color-text-secondary);font-size:0.92rem;line-height:1.7}
.newsletter{background:var(--color-accent-light);border-radius:var(--radius-lg);padding:var(--space-2xl) var(--space-lg);text-align:center}
.newsletter h2{margin-bottom:var(--space-sm)}
.newsletter p{color:var(--color-text-secondary);margin-bottom:var(--space-lg);max-width:500px;margin-left:auto;margin-right:auto}
.newsletter-form{display:flex;flex-direction:column;gap:var(--space-sm);max-width:480px;margin:0 auto}
@media(min-width:640px){.newsletter-form{flex-direction:row}}
.newsletter-form input{flex:1;padding:14px 20px;border:1.5px solid var(--color-border);border-radius:var(--radius-md);font-size:1rem}
.newsletter-form input:focus{border-color:var(--color-accent);outline:none}
.page-content{max-width:800px;margin:0 auto;padding:var(--space-xl) 0}
.page-content h1{margin-bottom:var(--space-lg)}
.page-content h2{margin:var(--space-xl) 0 var(--space-md)}
.page-content h3{margin:var(--space-lg) 0 var(--space-sm)}
.page-content p{margin-bottom:var(--space-md);line-height:1.8}
.page-content ul,.page-content ol{margin-bottom:var(--space-md);padding-left:var(--space-lg)}
.page-content li{margin-bottom:8px;line-height:1.7}
.page-content ul li{list-style:disc}.page-content ol li{list-style:decimal}
.page-content img{border-radius:var(--radius-md);margin:var(--space-md) 0}
.contact-form{display:grid;grid-template-columns:1fr;gap:var(--space-md);max-width:600px;margin:0 auto}
@media(min-width:640px){.contact-form{grid-template-columns:1fr 1fr}}
.contact-form .full{grid-column:1/-1}
.contact-form label{font-size:0.85rem;font-weight:600;color:var(--color-text-primary);margin-bottom:4px;display:block}
.contact-form input,.contact-form textarea,.contact-form select{width:100%;padding:12px 16px;border:1.5px solid var(--color-border);border-radius:var(--radius-md);font-size:1rem;transition:border-color var(--transition-fast)}
.contact-form input:focus,.contact-form textarea:focus,.contact-form select:focus{border-color:var(--color-accent);outline:none}
.contact-form textarea{min-height:120px;resize:vertical}
.sort-bar{display:flex;align-items:center;justify-content:space-between;gap:var(--space-md);padding:var(--space-md) 0;flex-wrap:wrap}
.sort-bar select{padding:8px 16px;border:1.5px solid var(--color-border);border-radius:var(--radius-md);font-size:0.9rem;background:var(--color-surface);cursor:pointer}
.sort-bar select:focus{border-color:var(--color-accent);outline:none}
.product-count-text{font-size:0.9rem;color:var(--color-text-muted)}
.error-page{text-align:center;padding:var(--space-3xl) var(--space-md)}
.error-page h1{font-size:clamp(4rem,15vw,8rem);color:var(--color-accent);margin-bottom:var(--space-md)}
.error-page p{font-size:1.1rem;color:var(--color-text-secondary);margin-bottom:var(--space-lg)}
.collection-hero{position:relative;min-height:280px;display:flex;align-items:center;overflow:hidden;background:var(--color-text-primary)}
.collection-hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0.4}
.collection-hero-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(26,43,35,0.8),rgba(45,122,95,0.5))}
.collection-hero-content{position:relative;z-index:1;padding:var(--space-2xl) var(--space-md);max-width:var(--container-max);margin:0 auto;width:100%}
.collection-hero-content h1{color:#fff;margin-bottom:8px}
.collection-hero-content p{color:rgba(255,255,255,0.85);max-width:600px}
.article-hero{position:relative;min-height:360px;display:flex;align-items:flex-end;overflow:hidden}
.article-hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.article-hero-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(26,43,35,0.9),rgba(26,43,35,0.3))}
.article-hero-content{position:relative;z-index:1;padding:var(--space-2xl) var(--space-md);max-width:800px;margin:0 auto;width:100%}
.article-meta{display:flex;flex-wrap:wrap;align-items:center;gap:var(--space-md);font-size:0.85rem;color:var(--color-text-muted);margin-bottom:var(--space-md)}
.article-content{max-width:760px;margin:0 auto;padding:var(--space-xl) 0}
.article-content h2{margin:var(--space-xl) 0 var(--space-md)}
.article-content h3{margin:var(--space-lg) 0 var(--space-sm)}
.article-content p{margin-bottom:var(--space-md);line-height:1.8}
.article-content ul,.article-content ol{margin-bottom:var(--space-md);padding-left:var(--space-lg)}
.article-content li{margin-bottom:8px;line-height:1.7}
.article-content img{border-radius:var(--radius-md);margin:var(--space-md) 0}
.article-share{display:flex;align-items:center;gap:var(--space-sm);padding:var(--space-lg) 0;border-top:1px solid var(--color-border);margin-top:var(--space-xl)}
.article-share span{font-weight:600;margin-right:var(--space-sm)}
.article-share a{width:36px;height:36px;border-radius:var(--radius-full);display:flex;align-items:center;justify-content:center;background:var(--color-surface-alt);transition:all var(--transition-fast)}
.article-share a:hover{background:var(--color-accent);color:#fff}
.policy-layout{display:grid;grid-template-columns:1fr;gap:var(--space-xl);padding:var(--space-xl) 0}
@media(min-width:768px){.policy-layout{grid-template-columns:240px 1fr}}
.policy-sidebar{display:none}
@media(min-width:768px){.policy-sidebar{display:block}}
.policy-sidebar h4{font-size:0.9rem;margin-bottom:var(--space-md);color:var(--color-text-muted);text-transform:uppercase;letter-spacing:0.5px}
.policy-sidebar ul li{margin-bottom:8px}
.policy-sidebar ul li a{font-size:0.9rem;color:var(--color-text-secondary);transition:color var(--transition-fast)}
.policy-sidebar ul li a:hover,.policy-sidebar ul li a.active{color:var(--color-accent)}
.policy-content{max-width:760px}
.policy-content h1{margin-bottom:var(--space-lg)}
.policy-content h2{margin:var(--space-xl) 0 var(--space-md)}
.policy-content p{margin-bottom:var(--space-md);line-height:1.8}
.why-choose{display:grid;grid-template-columns:repeat(2,1fr);gap:var(--space-lg)}
@media(min-width:768px){.why-choose{grid-template-columns:repeat(4,1fr)}}
.why-choose-item{text-align:center;padding:var(--space-lg)}
.why-choose-item .icon{width:56px;height:56px;border-radius:var(--radius-full);background:var(--color-accent-light);display:flex;align-items:center;justify-content:center;margin:0 auto var(--space-md)}
.why-choose-item .icon svg{width:28px;height:28px;color:var(--color-accent)}
.why-choose-item h4{font-size:1rem;margin-bottom:6px}
.why-choose-item p{font-size:0.88rem;color:var(--color-text-muted);margin:0}
.edu-section{display:grid;grid-template-columns:1fr;gap:var(--space-lg);align-items:center}
@media(min-width:768px){.edu-section{grid-template-columns:1fr 1fr}}
.edu-section img{border-radius:var(--radius-lg);width:100%}
.edu-section-content h2{margin-bottom:var(--space-md)}
.edu-section-content ul{margin-top:var(--space-md)}
.edu-section-content ul li{display:flex;align-items:flex-start;gap:10px;margin-bottom:10px;font-size:0.95rem}
.edu-section-content ul li svg{width:20px;height:20px;color:var(--color-accent);flex-shrink:0;margin-top:2px}
.promo-banner{position:relative;border-radius:var(--radius-lg);overflow:hidden;min-height:300px;display:flex;align-items:center;background:var(--color-text-primary)}
.promo-banner img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0.5}
.promo-banner-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(26,43,35,0.85),rgba(45,122,95,0.5))}
.promo-banner-content{position:relative;z-index:1;padding:var(--space-2xl);max-width:560px}
.promo-banner-content h2{color:#fff;margin-bottom:var(--space-sm)}
.promo-banner-content p{color:rgba(255,255,255,0.85);margin-bottom:var(--space-lg)}
.spinner{width:20px;height:20px;border:2px solid var(--color-border);border-top-color:var(--color-accent);border-radius:50%;animation:spin 0.8s linear infinite;display:inline-block}
.hide-mobile{display:none}
@media(min-width:768px){.hide-mobile{display:block}.hide-desktop{display:none}}

/* --- Checkout Page --- */
.checkout-layout{display:grid;grid-template-columns:1fr;gap:var(--space-xl);padding:var(--space-xl) 0}
@media(min-width:900px){.checkout-layout{grid-template-columns:1fr 380px;gap:var(--space-2xl);align-items:start}}
.checkout-form-section{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-lg);padding:var(--space-xl)}
.checkout-form-section h2{font-size:1.25rem;margin-bottom:var(--space-lg);padding-bottom:var(--space-md);border-bottom:1px solid var(--color-border)}
.checkout-form-grid{display:grid;grid-template-columns:1fr;gap:var(--space-md)}
@media(min-width:600px){.checkout-form-grid{grid-template-columns:1fr 1fr}}
.checkout-form-grid .full{grid-column:1/-1}
.checkout-form-grid label{font-size:0.85rem;font-weight:600;color:var(--color-text-primary);margin-bottom:4px;display:block}
.checkout-form-grid input,.checkout-form-grid select{width:100%;padding:12px 16px;border:1.5px solid var(--color-border);border-radius:var(--radius-md);font-size:1rem;transition:border-color var(--transition-fast)}
.checkout-form-grid input:focus,.checkout-form-grid select:focus{border-color:var(--color-accent);outline:none;box-shadow:0 0 0 3px var(--color-accent-light)}
.checkout-summary{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-lg);padding:var(--space-xl);position:sticky;top:80px}
.checkout-summary h2{font-size:1.25rem;margin-bottom:var(--space-lg);padding-bottom:var(--space-md);border-bottom:1px solid var(--color-border)}
.checkout-summary-item{display:flex;gap:12px;padding:12px 0;border-bottom:1px solid var(--color-border)}
.checkout-summary-item img{width:56px;height:56px;border-radius:var(--radius-sm);object-fit:cover;flex-shrink:0}
.checkout-summary-item-info{flex:1;min-width:0}
.checkout-summary-item-info h4{font-size:0.85rem;margin-bottom:2px;line-height:1.3}
.checkout-summary-item-info .qty{font-size:0.78rem;color:var(--color-text-muted)}
.checkout-summary-item-price{font-family:var(--font-mono);font-weight:700;font-size:0.9rem;white-space:nowrap}
.checkout-summary-totals{padding-top:var(--space-md)}
.checkout-summary-totals .row{display:flex;justify-content:space-between;padding:6px 0;font-size:0.9rem}
.checkout-summary-totals .row.total{border-top:1px solid var(--color-border);margin-top:8px;padding-top:12px;font-size:1.1rem;font-weight:700}
.checkout-summary-totals .row.total strong{font-family:var(--font-mono);font-size:1.25rem}
.checkout-place-order{margin-top:var(--space-lg);width:100%}
.checkout-trust{display:flex;flex-wrap:wrap;gap:8px;margin-top:var(--space-md);font-size:0.78rem;color:var(--color-text-muted)}
.checkout-trust span{display:inline-flex;align-items:center;gap:4px}
.checkout-empty{text-align:center;padding:var(--space-2xl) var(--space-md)}
.checkout-empty p{color:var(--color-text-muted);margin-bottom:var(--space-lg)}
.order-confirmation{max-width:600px;margin:0 auto;text-align:center;padding:var(--space-2xl) var(--space-md)}
.order-confirmation .check-icon{width:64px;height:64px;border-radius:50%;background:var(--color-accent-light);display:flex;align-items:center;justify-content:center;margin:0 auto var(--space-lg)}
.order-confirmation .check-icon svg{width:32px;height:32px;color:var(--color-accent)}
.order-confirmation h1{margin-bottom:var(--space-md)}
.order-confirmation .order-number{font-family:var(--font-mono);font-size:1.1rem;font-weight:700;color:var(--color-accent);margin-bottom:var(--space-lg)}
.order-confirmation-details{text-align:left;background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-lg);padding:var(--space-lg);margin:var(--space-lg) 0}
.order-confirmation-details .row{display:flex;justify-content:space-between;padding:8px 0;border-bottom:1px solid var(--color-border);font-size:0.9rem}
.order-confirmation-details .row:last-child{border-bottom:none}

/* --- Checkout Payment Section --- */
.checkout-divider{height:1px;background:var(--color-border);margin:var(--space-lg) 0;border:none}
.checkout-section-title{font-size:1.1rem;font-weight:600;color:var(--color-text-primary);margin-bottom:var(--space-md)}
.checkout-payment-methods{display:flex;flex-direction:column;gap:10px;margin-bottom:var(--space-md)}
.checkout-payment-option{display:flex;align-items:center;gap:10px;padding:12px 16px;border:1.5px solid var(--color-border);border-radius:var(--radius-md);cursor:pointer;transition:border-color var(--transition-fast)}
.checkout-payment-option:hover{border-color:var(--color-accent)}
.checkout-payment-option input{margin:0;accent-color:var(--color-accent)}
.checkout-payment-label{display:flex;align-items:center;gap:8px;font-size:0.95rem;font-weight:500;color:var(--color-text-primary)}
.checkout-card-fields{display:grid;grid-template-columns:1fr;gap:var(--space-md)}
@media(min-width:600px){.checkout-card-fields{grid-template-columns:1fr 1fr}}
.checkout-card-fields .full{grid-column:1/-1}
.checkout-paypal-info{padding:var(--space-md);background:var(--color-surface-alt);border-radius:var(--radius-md)}
.checkout-paypal-info p{font-size:0.9rem;color:var(--color-text-secondary);margin:0}


/* ===== Logo Image Styles ===== */
.nav-logo img{height:48px;width:auto;max-width:200px;object-fit:contain;display:block}
.mobile-menu-header .nav-logo img{height:40px;width:auto;max-width:160px;object-fit:contain;display:block}
.footer-logo img{height:56px;width:auto;max-width:220px;object-fit:contain;display:block;background:transparent;border:none;box-shadow:none;padding:0;border-radius:0}
@media(max-width:767px){.nav-logo img{height:38px;max-width:160px}.mobile-menu-header .nav-logo img{height:34px;max-width:140px}.footer-logo img{height:42px;max-width:180px}}