:root{
  --bg:#fffaf7;
  --text:#1f1f1f;
  --muted:#6b7280;
  --accent:#c7a27c;
  --accent-dark:#a67c52;
  --card:#ffffff;
  --border:#eadfd6;
  --danger:#b91c1c;

  --luxury-beige:#f5efe6;
  --peach-pearl:#fadcd2;
  --peach-soft:#f7e6df;
  --gold-soft:#c7a27c;
  --footer-text:#4b3f36;
  --footer-muted:#6e5c4d;
  --footer-border:#ead8cb;
}

*{box-sizing:border-box}
body{margin:0;font-family:Inter,Arial,sans-serif;background:var(--bg);color:var(--text)}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.container{
  width:min(1180px,92%);
  margin:auto;
}

.section{padding:40px 0}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:12px;
  background:var(--accent);
  color:#fff;
  border:none;
  cursor:pointer;
  font-weight:600;
}

.btn.secondary{
  background:#fff;
  color:var(--text);
  border:1px solid var(--border);
}

.btn.danger{
  background:var(--danger);
}

.card,.product-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.grid{display:grid;gap:20px}
.cols-4{grid-template-columns:repeat(4,1fr)}
.cols-2{grid-template-columns:repeat(2,1fr)}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  margin-bottom:20px;
}

.product-card{
  padding:0;
  overflow:hidden;
}

.product-card img{
  width:100%;
  height:320px;
  object-fit:cover;
}

.product-body{padding:14px}
.muted{color:var(--muted)}
.strike{text-decoration:line-through;color:var(--muted);margin-left:8px}

.filters,.stack-form{display:grid;gap:12px}

.filters{
  grid-template-columns:2fr 1fr 1fr auto;
  margin-bottom:22px;
}

.filters input,
.filters select,
.stack-form input,
.stack-form textarea,
.stack-form select{
  width:100%;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
}

.stack-form textarea{min-height:120px}

.product-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
}

.gallery{display:grid;gap:12px}

.gallery img{
  border-radius:16px;
  aspect-ratio:3/4;
  object-fit:cover;
  background:#fff;
}

.price{
  font-size:1.5rem;
  font-weight:700;
}

.inline-actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.admin-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.table-wrap{overflow:auto}

.table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
}

.table th,.table td{
  padding:12px 14px;
  border-bottom:1px solid var(--border);
  text-align:left;
  vertical-align:middle;
}

.thumb{
  width:60px;
  height:76px;
  object-fit:cover;
  border-radius:10px;
}

.checkbox{
  display:flex;
  gap:8px;
  align-items:center;
}

.mt-24{margin-top:24px}

.badge{
  padding:4px 10px;
  border-radius:999px;
  background:#f8efe8;
  color:#9b6b44;
  font-size:.82rem;
  font-weight:600;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,250,247,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
  width:100%;
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:16px 0;
}

.logo-wrap{
  display:flex;
  flex-direction:column;
  line-height:1.05;
  min-width:max-content;
}

.logo-main{
  font-size:28px;
  font-weight:800;
  letter-spacing:3px;
  color:#b9916b;
}

.logo-sub{
  font-size:10px;
  letter-spacing:3.2px;
  color:#6f5a4b;
  margin-top:4px;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.main-nav a,
.nav-dropdown span{
  color:#4b3f36;
  font-size:14px;
  font-weight:500;
  transition:.2s ease;
}

.main-nav a:hover,
.nav-dropdown span:hover{
  color:#c7a27c;
}

.cart-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.nav-form{
  margin:0;
}

.nav-dropdown{
  position:relative;
  cursor:pointer;
}

.dropdown-menu{
  position:absolute;
  top:28px;
  left:0;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px 0;
  display:none;
  flex-direction:column;
  min-width:190px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.dropdown-menu a{
  padding:8px 16px;
  white-space:nowrap;
}

.nav-dropdown:hover .dropdown-menu{
  display:flex;
}

/* Hero */
.hero-designer{
  padding:70px 0;
  background:linear-gradient(135deg,#fffaf7,#f8eee8,#f7e4da);
}

.hero-designer-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:50px;
  align-items:center;
}

.hero-text h1{
  font-size:54px;
  line-height:1.15;
  margin:12px 0 16px;
  color:#4b3f36;
}

.hero-text p{
  max-width:460px;
  color:#6b7280;
  line-height:1.8;
}

.hero-badge{
  font-size:12px;
  letter-spacing:3px;
  color:#c7a27c;
  font-weight:700;
}

.hero-actions{
  margin-top:24px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero-image img{
  width:100%;
  border-radius:28px;
  box-shadow:0 40px 80px rgba(0,0,0,.08);
  object-fit:cover;
}

.hero-feature-row{
  margin-top:28px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hero-feature{
  padding:10px 14px;
  border:1px solid #ecdccf;
  border-radius:999px;
  background:rgba(255,255,255,.55);
  color:#6b5647;
  font-size:13px;
  font-weight:600;
}

/* Category cards */
.category-grid{
  margin-top:12px;
}

.category-card{
  display:flex;
  flex-direction:column;
  text-align:center;
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--border);
  transition:.25s;
}

.category-card img{
  height:260px;
  object-fit:cover;
}

.category-card span{
  padding:14px;
  font-weight:600;
}

.category-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,.06);
}

/* Footer */
.site-footer{
  position:relative;
  overflow:hidden;
  margin-top:70px;
  padding-top:50px;
  background:linear-gradient(135deg,var(--luxury-beige) 0%,var(--peach-soft) 45%,var(--peach-pearl) 100%);
  border-top:1px solid var(--footer-border);
  color:var(--footer-text);
}

.site-footer::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.55), transparent 34%),
    radial-gradient(circle at 82% 22%, rgba(255,255,255,0.28), transparent 28%),
    radial-gradient(circle at 55% 85%, rgba(255,255,255,0.18), transparent 32%);
  pointer-events:none;
}

.site-footer .container{
  position:relative;
  z-index:1;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1.2fr;
  gap:40px;
}

.site-footer h3{
  margin:0 0 16px;
  font-size:28px;
  font-weight:800;
  letter-spacing:.4px;
  color:#5c4b3d;
}

.site-footer h4{
  margin:0 0 14px;
  font-size:17px;
  color:#5c4b3d;
}

.footer-text{
  color:var(--footer-muted);
  line-height:1.7;
  font-size:14px;
  margin-bottom:22px;
  max-width:420px;
}

.footer-contact-box{
  margin-top:18px;
  background:rgba(255,255,255,0.48);
  border:1px solid #efd9cc;
  border-radius:16px;
  padding:18px 20px;
  backdrop-filter:blur(8px);
  box-shadow:0 10px 30px rgba(199,162,124,.10);
}

.footer-contact-box p{
  margin:0 0 10px;
  color:#5b4b3d;
  font-size:14px;
  line-height:1.7;
}

.footer-links-list{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links-list li{
  margin-bottom:12px;
}

.footer-links-list a,
.footer-bottom-links a{
  color:#6b5647;
  text-decoration:none;
  transition:.25s ease;
}

.footer-links-list a:hover,
.footer-bottom-links a:hover{
  color:var(--gold-soft);
}

.footer-newsletter{
  margin-top:28px;
}

.footer-newsletter p{
  color:var(--footer-muted);
  font-size:14px;
  margin-bottom:12px;
}

.newsletter-form{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.newsletter-form input{
  height:44px;
  border-radius:12px;
  border:1px solid #e5d4c7;
  background:rgba(255,250,247,.92);
  color:#4b3f36;
  padding:0 14px;
  outline:none;
}

.newsletter-form input::placeholder{
  color:#9a8573;
}

.newsletter-form button{
  height:44px;
  border:0;
  border-radius:12px;
  background:linear-gradient(90deg,#e9c5b5,#f2b6aa);
  color:#4b3f36;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(199,162,124,.18);
}

.footer-bottom{
  margin-top:40px;
  padding:18px 0 22px;
  border-top:1px solid var(--footer-border);
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#6b5647;
  font-size:14px;
  gap:20px;
  flex-wrap:wrap;
}

.footer-bottom-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

/* Static pages */
.policy-page h1,
.contact-page h1{
  margin-bottom:16px;
}

.policy-page p{
  line-height:1.8;
  color:#555;
  margin-bottom:14px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.success-box{
  margin-bottom:16px;
  padding:12px 14px;
  border-radius:12px;
  background:#ecfdf5;
  color:#166534;
  border:1px solid #bbf7d0;
}

@media(max-width:992px){
  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:28px;
  }
}

@media(max-width:960px){
  .hero-designer-grid,
  .product-layout,
  .cols-4,
  .cols-2,
  .filters{
    grid-template-columns:1fr;
  }

  .section-head{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media(max-width:860px){
  .header-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .main-nav{
    width:100%;
    gap:12px;
  }

  .contact-grid{
    grid-template-columns:1fr;
  }

  .hero-text h1{
    font-size:40px;
  }
}

@media(max-width:640px){
  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}
.hero-video{
position:relative;
height:85vh;
overflow:hidden;
}

.hero-bg-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-1;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
rgba(0,0,0,0.25),
rgba(0,0,0,0.45)
);
display:flex;
align-items:center;
}

.hero-content{
color:white;
max-width:520px;
}

.hero-content h1{
font-size:60px;
line-height:1.1;
margin-bottom:20px;
}

.hero-content p{
font-size:16px;
margin-bottom:28px;
opacity:.9;
}

.hero-buttons{
display:flex;
gap:14px;
}