
:root{
  --bg:#f7f1ea;
  --surface:#fffaf6;
  --text:#1f1a17;
  --muted:#6e6258;
  --line:#e8ddd2;
  --primary:#8d3434;
  --primary-dark:#6f2626;
  --chip:#efe4da;
  --shadow:0 18px 45px rgba(31,26,23,.08);
  --radius:24px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Inter",sans-serif;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.container{width:min(1180px,calc(100% - 32px));margin:0 auto}
.topbar{
  background:#1d1510;
  color:#fff;
  text-align:center;
  padding:10px 14px;
  font-size:14px;
  font-weight:600;
}
.site-header{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(247,241,234,.96);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:18px 0;
}
.brand{display:flex;align-items:center;gap:14px}
.brand-mark{
  width:54px;height:54px;border-radius:16px;
  display:grid;place-items:center;
  color:#fff;font-weight:800;font-size:24px;
  background:linear-gradient(135deg,#8d3434,#c58d60);
}
.brand h1{
  margin:0;
  font-family:"Cormorant Garamond",serif;
  font-size:28px;
}
.brand p{margin:2px 0 0;color:var(--muted);font-size:14px}
nav{display:flex;gap:28px;flex-wrap:wrap}
nav a{font-weight:600;color:#5b534d}
.nav-actions{display:flex;align-items:center;gap:10px}
.icon-btn,.filter-btn{
  border:1px solid #d8cdc2;
  background:#fff9f4;
  cursor:pointer;
}
.icon-btn{
  border-radius:16px;
  padding:10px 14px;
  font-weight:700;
}
.cart-btn span{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:20px;height:20px;padding:0 6px;
}
.searchbar{display:none;padding:0 0 16px}
.searchbar.active{display:block}
.searchbar input,
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:16px;
  font-size:15px;
  background:#fffdfa;
}
.hero{padding:44px 0 22px}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:32px;
  align-items:center;
}
.hero-copy h2,
.section-head h2,
.about-grid h2,
.contact-grid h2{
  font-family:"Cormorant Garamond",serif;
  font-size:72px;
  line-height:.95;
  letter-spacing:-.02em;
  margin:0 0 18px;
}
.hero-copy p,
.featured p,
.section-copy,
.about-grid p,
.contact-grid p,
.about-grid li,
.cart-note{
  color:var(--muted);
  line-height:1.75;
}
.eyebrow{
  display:inline-flex;
  background:var(--chip);
  color:var(--primary);
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  margin-bottom:18px;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:24px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 24px;
  border-radius:999px;
  font-weight:700;
  border:1px solid transparent;
  transition:.2s ease;
}
.btn.primary{background:var(--primary);color:#fff}
.btn.primary:hover{background:var(--primary-dark)}
.btn.secondary{background:#fffaf6;border-color:#ddd2c7}
.trust-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:28px;
}
.trust-row div,
.featured article,
.filters,
.about-panel,
.contact-form,
.cart-drawer,
.product-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.trust-row div{padding:16px 18px}
.trust-row strong{display:block;font-size:18px}
.hero-cards{
  display:grid;
  gap:18px;
}
.fabric-card{
  min-height:144px;
  padding:28px;
  color:#fff;
  border-radius:28px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background-size:cover;
  background-position:center;
  position:relative;
  overflow:hidden;
}
.fabric-card::before{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(0,0,0,.7),rgba(0,0,0,.2));
}
.fabric-card > *{position:relative;z-index:1}
.fabric-card span{font-size:13px;font-weight:700;text-transform:uppercase}
.fabric-card h3{
  margin:8px 0 8px;
  font-family:"Cormorant Garamond",serif;
  font-size:28px;
}
.card-1{background: url('images/card1.jpg') center/cover no-repeat;
}
.card-2{background: url('images/card2.jpg') center/cover no-repeat;
}
.card-3{background: url('images/card3.jpg') center/cover no-repeat;
}
.category-strip{padding:10px 0 22px}
.category-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:12px;
}
.category-grid a,
.filter-btn{
  text-align:center;
  padding:16px 12px;
  border-radius:20px;
  font-weight:700;
}
.category-grid a{
  background:#fffaf6;
  border:1px solid var(--line);
}
.featured{padding:12px 0 42px}
.featured-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.featured article{padding:22px}
.featured h3{margin:0 0 12px;font-size:18px}
.shop-section{padding:18px 0 46px}
.shop-layout{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:24px;
}
.filters{
  padding:20px;
  height:fit-content;
  position:sticky;
  top:112px;
}
.filters h3{margin:0 0 16px}
.filter-btn{
  width:100%;
  margin-bottom:12px;
  background:#fffaf6;
}
.filter-btn.active{background:var(--primary);color:#fff;border-color:var(--primary)}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:18px;
}
.section-head h2{font-size:66px;margin-bottom:0}
.section-copy{max-width:420px}
.products-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.product-card{overflow:hidden}
.product-card img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}
.product-content{padding:18px}
.product-content h3{
  margin:0 0 8px;
  font-size:22px;
  font-family:"Cormorant Garamond",serif;
}
.product-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.price{font-size:20px;font-weight:800;color:var(--primary)}
.tag{
  font-size:12px;
  font-weight:700;
  color:var(--primary);
  background:var(--chip);
  padding:6px 10px;
  border-radius:999px;
}
.product-content p{color:var(--muted);line-height:1.7;min-height:74px}
.product-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:14px}
.product-actions .btn{padding:12px 14px;font-size:14px}
.about-section,.contact-section{padding:14px 0 54px}
.about-grid,.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:start;
}
.about-panel,.contact-form{padding:22px}
.about-panel div + div{margin-top:18px}
.about-grid ul{padding-left:22px}
.contact-form{display:grid;gap:14px}
.cart-drawer{
  position:fixed;
  right:18px;
  top:96px;
  width:min(380px,calc(100% - 24px));
  padding:18px;
  z-index:100;
  display:none;
}
.cart-drawer.active{display:block}
.cart-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.cart-header h3{margin:0}
.cart-items{
  margin-top:14px;
  display:grid;
  gap:12px;
  max-height:360px;
  overflow:auto;
}
.cart-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
}
.cart-item h4{margin:0 0 6px;font-size:16px}
.cart-item p{margin:0;color:var(--muted);font-size:14px}
.cart-footer{
  border-top:1px solid var(--line);
  margin-top:16px;
  padding-top:16px;
}
.full{width:100%}
.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:100;
  background:#25D366;
  color:#fff;
  font-weight:800;
  padding:16px 22px;
  border-radius:999px;
  box-shadow:0 18px 35px rgba(0,0,0,.2);
}
.empty-cart{
  color:var(--muted);
  background:#fff;
  border:1px dashed var(--line);
  border-radius:16px;
  padding:16px;
}
@media (max-width:1100px){
  .hero-copy h2,.section-head h2,.about-grid h2,.contact-grid h2{font-size:56px}
  .products-grid{grid-template-columns:repeat(2,1fr)}
  .category-grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:820px){
  nav{display:none}
  .hero-grid,.shop-layout,.about-grid,.contact-grid,.featured-grid{grid-template-columns:1fr}
  .filters{position:static}
  .products-grid,.trust-row{grid-template-columns:1fr}
  .section-head{flex-direction:column;align-items:start}
  .section-copy{max-width:none}
}
@media (max-width:560px){
  .brand h1{font-size:22px}
  .hero-copy h2,.section-head h2,.about-grid h2,.contact-grid h2{font-size:42px}
  .category-grid{grid-template-columns:repeat(2,1fr)}
  .product-actions{grid-template-columns:1fr}
}
.topbar{
  background: linear-gradient(90deg, #1d100b, #3b2217, #1d100b);
  color:#fff;
  text-align:center;
  padding:10px 14px;
  font-size:14px;
  font-weight:600;
  letter-spacing:.3px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:30;
  background: rgba(255,248,242,.97);
  backdrop-filter: blur(8px);
  border-bottom:1px solid #eadccf;
  box-shadow: 0 8px 24px rgba(41, 24, 17, 0.08);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:18px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:16px;
}

.brand-info{
  display:flex;
  flex-direction:column;
}

.brand-mark{
  width:62px;
  height:62px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, #8d2f2f, #d19b62);
  color:#fff;
  font-size:30px;
  font-weight:800;
  box-shadow: 0 12px 26px rgba(141,47,47,.25);
  border:1px solid rgba(255,255,255,.28);
  position:relative;
}

.brand-title{
  margin:0;
  font-family:"Cormorant Garamond", serif;
  font-size:34px;
  line-height:1;
  color:#2c1a13;
  letter-spacing:.4px;
}

.brand-subtitle{
  margin:6px 0 0;
  font-size:15px;
  color:#7f6a5d;
  font-weight:500;
}

nav{
  display:flex;
  align-items:center;
  gap:28px;
}

nav a{
  position:relative;
  text-decoration:none;
  color:#5d4d44;
  font-weight:600;
  font-size:16px;
  transition:.25s ease;
}

nav a:hover{
  color:#8d2f2f;
}

nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-7px;
  width:0;
  height:2px;
  background:#8d2f2f;
  transition:.25s ease;
}

nav a:hover::after{
  width:100%;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.icon-btn{
  width:48px;
  height:48px;
  border:none;
  border-radius:16px;
  background:#fff;
  box-shadow:0 6px 16px rgba(0,0,0,.08);
  cursor:pointer;
  font-size:18px;
  transition:.25s ease;
}

.icon-btn:hover{
  transform:translateY(-2px);
  background:#fff7f1;
}

.cart-btn span{
  font-size:14px;
  font-weight:700;
  margin-left:4px;
}

/* Animation */
.brand-animated{
  animation: softFloat 3.5s ease-in-out infinite;
}

.glow-logo{
  animation: logoPulse 1.8s ease-in-out infinite;
}

.pulse-text{
  animation: textGlow 2s ease-in-out infinite;
}

@keyframes logoPulse{
  0%{
    transform:scale(1);
    box-shadow:0 10px 24px rgba(141,47,47,.22);
  }
  50%{
    transform:scale(1.08);
    box-shadow:0 0 0 8px rgba(209,155,98,.10), 0 14px 34px rgba(141,47,47,.32);
  }
  100%{
    transform:scale(1);
    box-shadow:0 10px 24px rgba(141,47,47,.22);
  }
}

@keyframes textGlow{
  0%{
    opacity:1;
    text-shadow:0 0 0 rgba(141,47,47,0);
  }
  50%{
    opacity:.92;
    text-shadow:0 0 12px rgba(209,155,98,.35);
  }
  100%{
    opacity:1;
    text-shadow:0 0 0 rgba(141,47,47,0);
  }
}

@keyframes softFloat{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-2px);
  }
}

@media (max-width: 980px){
  .nav-wrap{
    flex-wrap:wrap;
    justify-content:center;
  }

  nav{
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .brand-title{
    font-size:26px;
  }

  .brand-subtitle{
    font-size:13px;
  }
}