/* ShopBolt — D2C eCommerce Landing © KodTree */
:root{
    --sb-bg:#ffffff;
    --sb-bg-soft:#f7f3ee;
    --sb-text:#1c1916;
    --sb-text-soft:#6b6660;
    --sb-border:#e8e1d8;
    --sb-accent:#c44536;
    --sb-accent-soft:#fef0ee;
    --sb-success:#4a7c59;
    --sb-radius:4px;
    --bs-body-font-family:'Inter','Pretendard',-apple-system,sans-serif;
    --sb-display:'Fraunces','Playfair Display',Georgia,serif;
}
*{-webkit-font-smoothing:antialiased;}
body{font-family:var(--bs-body-font-family);color:var(--sb-text);background:var(--sb-bg);line-height:1.6;}

/* Promo bar */
.promo-bar{background:var(--sb-text);color:var(--sb-bg);text-align:center;padding:.625rem 0;font-size:.8125rem;letter-spacing:.02em;}
.promo-bar strong{color:#e8b89c;}

/* Navbar */
.navbar{background:rgba(255,255,255,.95);backdrop-filter:saturate(180%) blur(20px);border-bottom:1px solid transparent;padding:1rem 0;transition:.25s ease;}
.navbar.scrolled{border-bottom-color:var(--sb-border);}
.navbar-brand{font-family:var(--sb-display);font-size:1.5rem;font-weight:600;color:var(--sb-text)!important;letter-spacing:-.02em;}
.nav-link{font-weight:500;color:var(--sb-text)!important;font-size:.9375rem;}
.nav-link:hover,.nav-link.active{color:var(--sb-accent)!important;}
.nav-icon-btn{display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:50%;color:var(--sb-text);text-decoration:none;transition:.15s ease;position:relative;}
.nav-icon-btn:hover{background:var(--sb-bg-soft);color:var(--sb-accent);}
.nav-icon-btn .badge{position:absolute;top:4px;right:4px;background:var(--sb-accent);color:#fff;font-size:.625rem;padding:.125rem .375rem;border-radius:99px;}

/* Buttons */
.btn{font-weight:600;padding:.75rem 1.5rem;border-radius:var(--sb-radius);font-size:.9375rem;transition:all .2s ease;border:1.5px solid transparent;}
.btn-dark{background:var(--sb-text);color:var(--sb-bg);border-color:var(--sb-text);}
.btn-dark:hover{background:#000;color:var(--sb-bg);}
.btn-accent{background:var(--sb-accent);color:#fff;border-color:var(--sb-accent);}
.btn-accent:hover{background:#a83a2c;color:#fff;border-color:#a83a2c;}
.btn-outline-dark{border-color:var(--sb-text);color:var(--sb-text);background:transparent;}
.btn-outline-dark:hover{background:var(--sb-text);color:var(--sb-bg);}
.btn-lg{padding:.875rem 1.75rem;font-size:1rem;}

/* Hero */
.hero{padding:5rem 0;background:var(--sb-bg-soft);position:relative;overflow:hidden;}
.hero__eyebrow{display:inline-flex;align-items:center;gap:.5rem;padding:.25rem .75rem;background:#fff;color:var(--sb-text);border-radius:99px;font-size:.8125rem;font-weight:600;margin-bottom:1.25rem;border:1px solid var(--sb-border);}
.hero__eyebrow::before{content:"●";color:var(--sb-success);}
.hero__title{font-family:var(--sb-display);font-size:clamp(2.5rem,6vw,5rem);font-weight:500;line-height:1.05;letter-spacing:-.02em;margin-bottom:1.5rem;}
.hero__title em{color:var(--sb-accent);font-style:italic;}
.hero__subtitle{font-size:1.0625rem;color:var(--sb-text-soft);max-width:520px;margin-bottom:2rem;}
.hero__cta{display:flex;gap:.75rem;flex-wrap:wrap;}
.hero__product-card{background:#fff;border:1px solid var(--sb-border);border-radius:var(--sb-radius);padding:1.25rem;box-shadow:0 24px 48px -12px rgba(28,25,22,.12);}
.hero__product-img{aspect-ratio:4/5;background:linear-gradient(135deg,#e8d8c8,#d4b896);border-radius:var(--sb-radius);display:flex;align-items:center;justify-content:center;font-family:var(--sb-display);font-style:italic;color:rgba(28,25,22,.4);font-size:1.25rem;margin-bottom:1rem;}
.hero__product-tag{display:inline-block;padding:.25rem .625rem;background:var(--sb-accent);color:#fff;font-size:.6875rem;font-weight:600;letter-spacing:.05em;margin-bottom:.5rem;border-radius:99px;}
.hero__product-name{font-family:var(--sb-display);font-size:1.125rem;font-weight:500;margin-bottom:.25rem;}
.hero__product-price{display:flex;align-items:baseline;gap:.5rem;}
.hero__product-price strong{font-size:1.25rem;font-weight:600;}
.hero__product-price .price-old{color:var(--sb-text-soft);text-decoration:line-through;font-size:.875rem;}

/* Section */
section{padding:5rem 0;}
.section-eyebrow{font-size:.75rem;font-weight:600;letter-spacing:.15em;text-transform:uppercase;color:var(--sb-text-soft);margin-bottom:.75rem;display:inline-block;}
.section-title{font-family:var(--sb-display);font-size:clamp(1.875rem,4vw,3rem);font-weight:500;line-height:1.1;letter-spacing:-.02em;margin-bottom:.75rem;}
.section-title em{color:var(--sb-accent);font-style:italic;}
.section-lead{font-size:1.0625rem;color:var(--sb-text-soft);max-width:580px;}

/* Product card */
.product-card{background:#fff;border:1px solid var(--sb-border);border-radius:var(--sb-radius);overflow:hidden;transition:.25s ease;height:100%;}
.product-card:hover{transform:translateY(-2px);box-shadow:0 12px 28px -8px rgba(28,25,22,.1);}
.product-card__img{aspect-ratio:4/5;background:linear-gradient(135deg,var(--sb-bg-soft),#ede4d8);position:relative;display:flex;align-items:center;justify-content:center;font-family:var(--sb-display);color:rgba(28,25,22,.25);font-style:italic;font-size:1rem;overflow:hidden;}
.product-card__img--accent{background:linear-gradient(135deg,#fce8e3,#f5d0c8);}
.product-card__img--sage{background:linear-gradient(135deg,#dde3d3,#c0cfb5);}
.product-card__img--clay{background:linear-gradient(135deg,#e8d2bf,#cda886);}
.product-card__img--ink{background:linear-gradient(135deg,#3d3c4a,#252432);color:rgba(255,255,255,.3);}
.product-card__badge{position:absolute;top:.75rem;left:.75rem;padding:.25rem .625rem;background:var(--sb-accent);color:#fff;font-size:.6875rem;font-weight:600;border-radius:99px;letter-spacing:.05em;}
.product-card__badge--new{background:var(--sb-success);}
.product-card__badge--limited{background:var(--sb-text);}
.product-card__wish{position:absolute;top:.75rem;right:.75rem;width:32px;height:32px;border-radius:50%;background:#fff;display:flex;align-items:center;justify-content:center;color:var(--sb-text);cursor:pointer;border:none;}
.product-card__wish:hover{color:var(--sb-accent);}
.product-card__body{padding:1.25rem;}
.product-card__cat{font-size:.75rem;color:var(--sb-text-soft);text-transform:uppercase;letter-spacing:.05em;margin-bottom:.25rem;}
.product-card__title{font-family:var(--sb-display);font-size:1.125rem;font-weight:500;margin-bottom:.375rem;color:var(--sb-text);}
.product-card__price{display:flex;align-items:baseline;gap:.5rem;}
.product-card__price strong{font-size:1.125rem;font-weight:600;}
.product-card__price-old{color:var(--sb-text-soft);text-decoration:line-through;font-size:.875rem;}
.product-card__rating{font-size:.8125rem;color:var(--sb-text-soft);margin-top:.5rem;}
.product-card__rating i{color:#f59e0b;}

/* Category strip */
.category-card{position:relative;aspect-ratio:1;border-radius:var(--sb-radius);overflow:hidden;display:flex;align-items:flex-end;padding:1.25rem;color:#fff;text-decoration:none;transition:.25s ease;}
.category-card:hover{transform:translateY(-3px);color:#fff;}
.category-card__title{font-family:var(--sb-display);font-size:1.25rem;font-weight:500;margin:0;position:relative;z-index:1;}
.category-card::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 40%,rgba(0,0,0,.6) 100%);z-index:0;}
.category-card--1{background:linear-gradient(135deg,#c44536,#8b2e23);}
.category-card--2{background:linear-gradient(135deg,#4a7c59,#2e5a3f);}
.category-card--3{background:linear-gradient(135deg,#c9a87c,#8b6f4a);}
.category-card--4{background:linear-gradient(135deg,#3d3c4a,#1c1c28);}

/* Feature row */
.feature-row{padding:2rem 0;border-top:1px solid var(--sb-border);display:grid;grid-template-columns:60px 1fr;gap:1.5rem;align-items:flex-start;}
.feature-row:last-child{border-bottom:1px solid var(--sb-border);}
.feature-row__icon{font-size:2rem;color:var(--sb-accent);}
.feature-row__title{font-family:var(--sb-display);font-size:1.375rem;font-weight:500;margin:0 0 .375rem;}
.feature-row__text{font-size:.9375rem;color:var(--sb-text-soft);margin:0;}

/* Review card */
.review-card{padding:2rem;background:#fff;border:1px solid var(--sb-border);border-radius:var(--sb-radius);height:100%;}
.review-card__stars{color:#f59e0b;margin-bottom:.75rem;}
.review-card__text{font-size:1rem;color:var(--sb-text);margin-bottom:1.25rem;}
.review-card__author{display:flex;align-items:center;gap:.75rem;}
.review-card__avatar{width:40px;height:40px;border-radius:50%;background:linear-gradient(135deg,var(--sb-accent),#a83a2c);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:600;font-family:var(--sb-display);}
.review-card__name{font-weight:600;font-size:.9375rem;line-height:1.2;}
.review-card__verified{font-size:.75rem;color:var(--sb-success);}
.review-card__verified::before{content:"✓ ";}

/* Shop list — sidebar filter */
.shop-layout{display:grid;grid-template-columns:240px 1fr;gap:2.5rem;}
@media(max-width:991.98px){.shop-layout{grid-template-columns:1fr;gap:1.5rem;}}
.filter-group{padding:1.25rem 0;border-bottom:1px solid var(--sb-border);}
.filter-group:first-child{padding-top:0;}
.filter-group__title{font-size:.75rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--sb-text);margin-bottom:.875rem;}
.filter-check{display:flex;align-items:center;gap:.5rem;padding:.25rem 0;font-size:.875rem;color:var(--sb-text-soft);cursor:pointer;}
.filter-check input{accent-color:var(--sb-accent);}
.filter-check:hover{color:var(--sb-text);}

/* Product detail */
.product-detail__gallery{aspect-ratio:1;background:linear-gradient(135deg,#fce8e3,#f5d0c8);border-radius:var(--sb-radius);display:flex;align-items:center;justify-content:center;font-family:var(--sb-display);font-style:italic;color:rgba(28,25,22,.4);font-size:1.5rem;margin-bottom:1rem;}
.product-detail__thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:.5rem;}
.product-detail__thumb{aspect-ratio:1;border-radius:var(--sb-radius);background:var(--sb-bg-soft);border:2px solid transparent;cursor:pointer;}
.product-detail__thumb.active{border-color:var(--sb-accent);}
.product-detail__title{font-family:var(--sb-display);font-size:clamp(1.75rem,3vw,2.5rem);font-weight:500;line-height:1.1;letter-spacing:-.02em;margin-bottom:.5rem;}
.product-detail__price{display:flex;align-items:baseline;gap:.75rem;margin-bottom:1rem;}
.product-detail__price strong{font-size:1.75rem;font-weight:600;}
.product-detail__price-old{color:var(--sb-text-soft);text-decoration:line-through;font-size:1rem;}
.product-option-group{margin-bottom:1.25rem;}
.product-option-label{font-size:.8125rem;font-weight:600;letter-spacing:.05em;text-transform:uppercase;margin-bottom:.5rem;}
.product-option-chip{display:inline-flex;align-items:center;justify-content:center;min-width:48px;padding:.5rem .875rem;border:1.5px solid var(--sb-border);border-radius:var(--sb-radius);background:#fff;cursor:pointer;font-size:.875rem;font-weight:500;margin-right:.5rem;margin-bottom:.5rem;transition:.15s ease;}
.product-option-chip.active,.product-option-chip:hover{border-color:var(--sb-text);background:var(--sb-text);color:#fff;}
.product-option-color{width:32px;height:32px;border-radius:50%;border:2px solid var(--sb-border);cursor:pointer;display:inline-block;margin-right:.5rem;}
.product-option-color.active{border-color:var(--sb-text);transform:scale(1.08);}

/* Cart table */
.cart-row{display:grid;grid-template-columns:80px 1fr 100px 100px 30px;gap:1rem;align-items:center;padding:1.25rem 0;border-bottom:1px solid var(--sb-border);}
.cart-row__img{aspect-ratio:1;background:var(--sb-bg-soft);border-radius:var(--sb-radius);}
.cart-row__title{font-family:var(--sb-display);font-weight:500;}
.cart-row__variant{font-size:.8125rem;color:var(--sb-text-soft);}
.qty-control{display:inline-flex;align-items:center;border:1px solid var(--sb-border);border-radius:var(--sb-radius);}
.qty-control button{background:transparent;border:none;width:32px;height:32px;font-size:1rem;color:var(--sb-text);cursor:pointer;}
.qty-control input{width:40px;border:none;text-align:center;font-size:.875rem;background:transparent;}
.cart-summary{background:var(--sb-bg-soft);padding:1.75rem;border-radius:var(--sb-radius);}
.cart-summary__row{display:flex;justify-content:space-between;padding:.5rem 0;}
.cart-summary__row--total{border-top:1px solid var(--sb-border);padding-top:1rem;margin-top:.75rem;font-size:1.125rem;font-weight:600;}

/* Checkout */
.checkout-step{padding:1.25rem 1.5rem;border:1px solid var(--sb-border);border-radius:var(--sb-radius);margin-bottom:1rem;background:#fff;}
.checkout-step__num{display:inline-flex;width:32px;height:32px;border-radius:50%;background:var(--sb-text);color:#fff;align-items:center;justify-content:center;font-weight:600;margin-right:.75rem;}
.checkout-step__num.done{background:var(--sb-success);}
.checkout-step__title{font-family:var(--sb-display);font-size:1.25rem;font-weight:500;margin:0;display:inline-block;}

/* Form */
.form-control,.form-select{border-radius:var(--sb-radius);border:1.5px solid var(--sb-border);padding:.75rem 1rem;font-size:.9375rem;}
.form-control:focus,.form-select:focus{border-color:var(--sb-text);box-shadow:none;}
.form-label{font-size:.8125rem;font-weight:600;margin-bottom:.375rem;letter-spacing:.02em;}

/* CTA */
.cta-block{background:var(--sb-text);color:#fff;border-radius:var(--sb-radius);padding:4rem 3rem;text-align:center;position:relative;overflow:hidden;}
.cta-block::before{content:"";position:absolute;top:-150px;right:-150px;width:400px;height:400px;background:radial-gradient(circle,rgba(196,69,54,.2),transparent 60%);border-radius:50%;}
.cta-block > *{position:relative;z-index:1;}
.cta-block__title{font-family:var(--sb-display);font-size:clamp(1.75rem,4vw,2.75rem);font-weight:500;letter-spacing:-.02em;margin-bottom:.75rem;}
.cta-block__title em{color:#e8b89c;font-style:italic;}

/* Footer */
.footer{background:var(--sb-text);color:var(--sb-bg);padding:4rem 0 1.5rem;}
.footer__brand{font-family:var(--sb-display);font-size:2rem;font-weight:500;margin-bottom:1rem;}
.footer h6{color:#fff;font-weight:600;margin-bottom:1rem;font-size:.875rem;text-transform:uppercase;letter-spacing:.05em;}
.footer a{color:#cbc6bf;text-decoration:none;}
.footer a:hover{color:#fff;}
.footer ul{list-style:none;padding:0;}
.footer ul li{padding:.25rem 0;font-size:.9375rem;}
.footer__bottom{margin-top:3rem;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,.1);font-size:.875rem;color:#94908b;}
.footer__pay{display:flex;gap:.5rem;margin-top:1rem;}
.footer__pay span{font-size:.625rem;font-weight:700;letter-spacing:.05em;padding:.25rem .5rem;border:1px solid rgba(255,255,255,.2);border-radius:3px;color:#cbc6bf;}

/* Page hero */
.page-hero{padding:6rem 0 3rem;background:var(--sb-bg-soft);}
.page-hero__title{font-family:var(--sb-display);font-size:clamp(2rem,4vw,3rem);font-weight:500;letter-spacing:-.02em;}

/* Account */
.account-sidebar{background:var(--sb-bg-soft);padding:1.5rem;border-radius:var(--sb-radius);}
.account-sidebar a{display:block;padding:.5rem .75rem;color:var(--sb-text);text-decoration:none;font-size:.9375rem;border-radius:var(--sb-radius);}
.account-sidebar a.active,.account-sidebar a:hover{background:#fff;color:var(--sb-accent);}

@media(max-width:767.98px){
    section{padding:3.5rem 0;}
    .hero{padding:3rem 0;}
    .cta-block{padding:3rem 1.5rem;}
}
