:root{
  --gold: #E8D1A7;
  --olive: #9D9167;
  --caramel: #84592B;
  --wine: #743014;
  --cocoa: #442D1C;

  --bg-light:#fdfaf6;
  --bg-soft:#f8f4ee;
  --bg-dark:#2a1a12;

  --text-dark:#2b2b2b;
  --text-light:#f5f5f5;
  --text-muted:#8a8175;

  --border-soft: rgba(157,145,103,0.25);
}

[data-theme="dark"]{
  --bg: #1a120d;
  --bg-soft:#2a1a12;
  --text: #f5f5f5;
  --text-muted:#b8a99a;

  --card-bg:#2a1a12;
  --border: rgba(232,209,167,0.15);
  --shadow: 0 15px 40px rgba(0,0,0,0.6);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
body{
  font-family:'Inter',sans-serif;
  background:var(--bg-light);
  color:var(--text-dark);
  overflow-x:hidden;
}
a{
  text-decoration:none;
  color:var(--text-dark);
}

/* ================= TOP BAR ================= */
.topbar{
  background: linear-gradient(135deg, var(--wine), var(--cocoa));
  color:#fff;
  font-size:13px;
  overflow:hidden;
}
.topbar-inner{
  display:flex;
  gap:40px;
  white-space:nowrap;
  animation:scroll 25s linear infinite;
  padding:7px 0;
}
@keyframes scroll{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

/* ================= NAVBAR ================= */
.navbar{
  position:sticky;
  display:flex;
  align-items:center;
  justify-content:space-between;
  top:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 48px;
  background:#fff;
  border-bottom:1px solid var(--border-soft);
  transition:.3s;
}
.navbar.shrink{
  padding:10px 48px;
}
.logo{
  color:var(--gold-dark);
  transition:.3s;
}
.logo img{
  width: 300px;
  max-width: 100%;
}
.navbar.shrink .logo{
  font-size:24px;
}

/* ================= NAV LINKS ================= */
.nav-links{
  display:flex;
  gap:28px;
}
.nav-item{
  position:relative;
}
.nav-item::after{
  content:"";
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  height:40px;
}
.nav-item > a,
.nav-link{
  font-size:16px;
  cursor:pointer;
  transition:.3s;
}
.nav-item > a:hover{
  color:var(--caramel);
  text-shadow:0 0 6px rgba(132,89,43,0.3);
}
.nav-item > a.active{
  border:1px solid var(--gold);
  padding:6px 12px;
}
.badge{
  background:var(--caramel);
  color:#fff;
  font-size:10px;
  padding:2px 6px;
  margin-left:6px;
}

/* ================= DROPDOWN ================= */
.dropdown{
  position:absolute;
  top:100%;
  left:0;
  min-width:220px;
  background:#fff;
  border-radius:6px;
  padding:10px 0;
  display:none;
  border:1px solid var(--border-soft);
  box-shadow:0 10px 30px rgba(132,89,43,0.1);
  z-index:1000;
}
.dropdown a{
  display:block;
  padding:10px 18px;
  font-size:16px;
  color:#333;
  transition:.3s;
}
.dropdown a:hover{
  color:var(--caramel);
  background:rgba(157,145,103,0.08);
}

/* ================= SUBMENU ================= */
.submenu{
  position:absolute;
  top:0;
  left:100%;
  min-width:200px;
  background:#fff;
  border:1px solid #eee;
  border-radius:6px;
  padding:10px 0;
  display:none;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
.dropdown-item{
  position:relative;
}
/* hover bridge fix */
.dropdown-item::after{
  content:"";
  position:absolute;
  right:-15px;
  top:0;
  width:15px;
  height:100%;
}
.has-submenu > a::after{
  content:"›";
  float:right;
  font-size:12px;
}

/* ================= MEGA MENU ================= */
.mega{
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-35%);
  width:850px;
  background:#fff;
  padding:30px 36px;
  display:none;
  border-radius:8px;
  border:1px solid #eee;
  box-shadow:0 20px 60px rgba(0,0,0,0.08);
  z-index:999;
}
.idols-mega-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:36px;
}
.mega h4{
  font-size:18px;
  margin-bottom:15px;
  color:var(--cocoa);
  text-transform:uppercase;
}
.mega a{
  display:block;
  font-size:15px;
  margin-bottom:10px;
  transition:.3s;
}
.mega a:hover{
  color:var(--caramel);
  background:rgba(157,145,103,0.08);
  padding-left:6px;
}
.god-links{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 20px;
}

/* ================= ICONS ================= */
.icons{
  display:flex;
  align-items:center;
  gap:22px;
}
.icon{
  position:relative;
  cursor:pointer;
  font-size:18px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.icon svg{
  width:20px;
  height:20px;
}
.count{
  position:absolute;
  top:-6px;
  right:-8px;
  background:#000;
  color:#fff;
  font-size:10px;
  border-radius:50%;
  padding:2px 5px;
  line-height:1;
}
.icon:hover{
  color:var(--gold-dark);
}

/* ================= SUBNAV ================= */
.subnav-wrapper{
  border-bottom:1px solid #e5e5e5;
}
.subnav-container{
  max-width:1280px;
  margin:0 auto;
  position:relative;
}
.subnav{
  overflow-x:auto;
  scroll-behavior:smooth;
}
.subnav-inner{
  display:flex;
  gap:28px;
  padding:12px 60px;
  width:max-content;
  margin:0 auto;
}
/* arrows */
.scroll-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  border:none;
  background:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
  border-radius:50%;
  cursor:pointer;
  z-index:2;
}
.scroll-btn.left{ left:0; }
.scroll-btn.right{ right:0; }

/* ================= SEARCH ================= */
.search-overlay{
  position:fixed;
  inset:0;
  background:rgba(255,255,255,0.96);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition:.35s ease;
  z-index:9999;
}
.search-overlay.active{
  opacity:1;
  visibility:visible;
}
.search-container{
  width:100%;
  max-width:850px;
  padding:20px;
}
.search-form{
  width:100%;
}
.search-box{
  display:flex;
  align-items:center;
  width:100%;
  border:1px solid var(--border-soft);
  border-radius:18px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(68,45,28,0.08);
}
.search-box input{
  flex:1;
  height:72px;
  border:none;
  padding:0 26px;
  background:transparent;
  font-size:20px;
  color:var(--cocoa);
  outline:none;
}
.search-box input::placeholder{
  color:var(--text-muted);
}
.search-submit{
  height:72px;
  padding:0 34px;
  border:none;
  background:var(--wine);
  color:#fff;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:.3s ease;
}
.search-submit:hover{
  background:var(--cocoa);
}
.close-btn{
  position:absolute;
  top:30px;
  right:40px;
  font-size:34px;
  cursor:pointer;
  color:var(--cocoa);
  transition:.3s ease;
}
.close-btn:hover{
  color:var(--wine);
  transform:rotate(90deg);
}
@media(max-width:768px){
  .search-box{
    flex-direction:column;
    border-radius:22px;
  }
  .search-box input{
    width:100%;
    height:64px;
    font-size:18px;
  }
  .search-submit{
    width:100%;
    height:58px;
  }
  .close-btn{
    top:18px;
    right:22px;
    font-size:28px;
  }
}

/* ================= MOBILE ================= */
.menu-btn{
  display:none;
}
@media(min-width:1025px){
  .nav-item:hover > .mega{
    display:block;
  }
  .nav-item:hover > .dropdown,
  .dropdown:hover{
    display:block;
  }
  .dropdown-item:hover > .submenu,
  .submenu:hover{
    display:block;
  }
  .mega{
    left:50%;
    transform:translateX(-35%);
    width:850px;
  }
  .idols-mega-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:36px;
  }
  .god-links{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0 20px;
  }
}
@media(max-width:1024px){
  .navbar{
    padding:12px 16px;
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
  }
  .logo{
    font-size:22px;
    flex:1;
    text-align:center;
  }
  .menu-btn{
    display:block;
    justify-self:start;
  }
  .dropdown a,
  .nav-item > a,
  .nav-link{
    font-size:14px;
  }
  .nav-links{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    flex-direction:column;
    background:#fff;
    padding:20px;
    display:none;
  }
  .nav-links.active{
    display:flex;
  }
  .dropdown,
  .submenu,
  .mega{
    display:none;
    position:static;
    width:100%;
    transform:none;
    box-shadow:none;
    border:none;
    border-radius:0;
    padding:10px 0 10px 12px;
    background:transparent;
  }
  .nav-item.active > .mega,
  .nav-item.active > .dropdown{
    display:block !important;
  }
  .dropdown-item.active > .submenu{
    display:block;
  }
  .nav-link{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    cursor:pointer;
    font-weight:500;
  }
  .arrow{
    font-size:14px;
  }
  .mega-grid,
  .idols-mega-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:16px;
  }
  .god-links{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0 16px;
  }
  .mega h4{
    margin:10px 0;
    font-size:13px;
  }
  .mega a{
    padding:6px 0;
    font-size:13px;
    margin-bottom:0;
  }
  .mega-preview{
    display:none;
  }
  .subnav-inner a{
    font-size:12px;
  }
  .icons{
    gap:14px;
    margin-left:auto;
    justify-self:end;
  }
  .icon{
    font-size:16px;
  }
  .icon svg{
    width:18px;
    height:18px;
  }
}
@media(max-width:576px){
  .god-links{
    grid-template-columns:1fr;
  }
  .logo img{
    width:220px;
  }
  .nav-links{
    padding:16px;
  }
}

.hero{
  position:relative;
  overflow:hidden;
}
.hero-slider{
  display:flex;
  transition:transform .6s ease;
}
.slide{
  min-width:100%;
}
.slide img{
  width:100%;
  height:600px;
  object-fit:cover;
  display:block;
}
/* arrows */
.hero-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:#fff;
  border:none;
  padding:10px 14px;
  cursor:pointer;
  font-size:18px;
  border-radius:50%;
  box-shadow:0 4px 12px rgba(132,89,43,0.2);
  z-index:2;
}
.hero-btn.prev{ left:20px; }
.hero-btn.next{ right:20px; }
/* dots */
.hero-dots{
  position:absolute;
  bottom:15px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
}
.hero-dots span{
  width:10px;
  height:10px;
  background:#ccc;
  border-radius:50%;
  cursor:pointer;
}
.hero-dots .active{
  background:#000;
}
/* MOBILE */
@media(max-width:768px){
  .slide img{
    height:320px;
  }
  .hero-btn{
    padding:8px 10px;
    font-size:16px;
  }
}

/* SECTION */
.category-section {
  padding: 60px 30px;
  background:var(--bg-soft);
  width: 100%;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 24px;
}
.category-grid .cat-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}
.category-grid .cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}
.category-grid .cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-grid .cat-card:hover img {
  transform: scale(1.08);
}
.category-grid .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(68,45,28,0.7),
    rgba(68,45,28,0.3),
    transparent
  );
}
.category-grid .content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
}
.category-grid .content h2,
.category-grid .content h3,
.category-grid .content h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 6px;
  color: #fff;
}
.category-grid .btn {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 18px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--wine), var(--cocoa));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.category-grid .btn:hover {
  transform: translateY(-2px);
  box-shadow:0 10px 25px rgba(132,89,43,0.4);
}
.category-grid .cat-large {
  grid-column: span 2;
  grid-row: span 2;
}
.category-grid .cat-wide {
  grid-column: span 2;
  grid-row: span 1;
}
@media (max-width: 1000px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-grid .cat-large,
  .category-grid .cat-wide {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width: 600px) {
  .category-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .category-grid .cat-large,
  .category-grid .cat-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .category-grid .content h2 {
    font-size: 18px;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h1, .section-title h2 {
  font-size: 34px;
  color: #6b3d1f;
  font-family: 'Playfair Display', serif;
}
.section-title h1.light, .section-title.light h2 {
  font-size: 34px;
  color: white;
  font-family: 'Playfair Display', serif;
}
.section-title p {
  color: #777;
  margin-top: 10px;
}
.section-title.light p {
  color: white;
}
.section-title::after {
  content: "";
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  display: block;
  margin: 15px auto 0;
}
.view-all-btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  color: #6b3d1f;
  border: 1px solid rgba(184,150,74,0.4);
  transition: 0.3s ease;
}
.view-all-btn:hover {
  background: linear-gradient(135deg, #c9a75d, #a3823d);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(184,150,74,0.3);
}

/* SECTION */
.products-section {
  padding: 100px 25px;
  background:
    radial-gradient(circle at 50% 10%, rgba(232,209,167,0.2), transparent 40%),
    linear-gradient(to bottom, #f8f4ee, #fdfaf6);
  position: relative;
}
.products-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/noise.png');
  opacity: 0.03;
  pointer-events: none;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.product-cta{
  text-align: center;
}
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow:
    0 10px 30px rgba(132,89,43,0.15),
    0 2px 6px rgba(0,0,0,0.05);
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.12);
}
.add-to-cart {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  color: #2b2b2b;
  border: 1px solid rgba(184,150,74,0.3);
  padding: 10px 18px;
  font-size: 13px;
  border-radius: 30px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.35s ease;
}
.product-card:hover .add-to-cart {
  opacity: 1;
  transform: translate(-50%, 0);
}
.add-to-cart:hover {
  background: linear-gradient(135deg, #c9a75d, #a3823d);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(184,150,74,0.3);
}
.product-media {
  position: relative;
  padding: 30px;
  overflow:hidden;
  background: linear-gradient(145deg, #f8f4ee, #fffaf3);
}
.product-media img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.product-card:hover .product-media img {
  transform: scale(1.08);
  filter: brightness(0.85);
}
.product-media::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(184,150,74,0.25),
    transparent
  );
  transform: skewX(-20deg);
}
.product-card:hover .product-media::after {
  animation: shine 1s ease forwards;
}
@keyframes shine {
  to {
    left: 140%;
  }
}
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #c9a75d, #a3823d);
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 20px;
}
.product-info {
  padding: 20px;
}
.product-info h3 {
  font-size: 15px;
  color: #2b2b2b;
  margin-bottom: 10px;
  line-height: 1.5;
}
.price {
  display: flex;
  gap: 10px;
  align-items: center;
}
.price .old {
  text-decoration: line-through;
  color: #999;
  font-size: 13px;
}
.price .new {
  color:var(--caramel);
  font-weight: 600;
  font-size: 16px;
}
.product-actions{
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  display:flex;
  gap:10px;
  padding:16px;
  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
  transition:.35s ease;
  z-index:3;
}
.product-card:hover .product-actions{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.product-btn{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  height:44px;
  border-radius:12px;
  font-size:13px;
  font-weight:600;
  transition:.3s ease;
}
.product-btn.primary{
  background:var(--wine);
  color:#fff;
}
.product-btn.primary:hover{
  background:var(--cocoa);
}
.product-btn.light{
  background:rgba(255,255,255,0.92);
  color:var(--cocoa);
  backdrop-filter:blur(10px);
}
.product-btn.light:hover{
  background:#fff;
}
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-actions{
    opacity:1;
    visibility:visible;
    transform:none;
    position:static;
    padding:14px;
  }
  .product-btn{
    height:42px;
    font-size:12px;
  }
}
@media (max-width: 600px) {
  .products-section {
    padding: 60px 20px;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .product-media img {
    height: 200px;
  }
}

.promo-section {
  position: relative;
  padding: 100px 40px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 75% 30%, rgba(232,209,167,0.2), transparent 40%),
    linear-gradient(120deg, var(--wine), var(--cocoa), var(--bg-dark));
}
.promo-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/noise.png');
  opacity: 0.03;
  pointer-events: none;
}
.promo-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.promo-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: auto;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: all 0.4s ease;
}
.promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}
.promo-card:hover img {
  transform: scale(1.08);
}
.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(68,45,28,0.8),
    rgba(68,45,28,0.4),
    transparent
  );
}
.promo-content {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  max-width: 420px;
}
.promo-content .tag {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f5d27a;
  display: inline-block;
  margin-bottom: 10px;
}
.promo-content h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 10px;
  font-weight: 600;
}
.promo-content p {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 20px;
  line-height: 1.6;
}
.promo-card .btn.light {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  color: #2b2b2b;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(184,150,74,0.3);
  transition: 0.3s;
}
.promo-card .btn.light:hover {
  background: linear-gradient(135deg, #c9a75d, #a3823d);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(184,150,74,0.4);
}
.promo-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(184,150,74,0.25),
    transparent
  );
  transform: skewX(-20deg);
}
.promo-card:hover::after {
  animation: shine 1.2s ease forwards;
}
@keyframes shine {
  to {
    left: 140%;
  }
}
@media (max-width: 900px) {
  .promo-container {
    grid-template-columns: 1fr;
  }
  .promo-card {
    height: 280px;
  }
  .promo-content {
    left: 25px;
  }
}
@media (max-width: 600px) {
  .promo-section {
    padding: 70px 20px;
  }
  .promo-card {
    height: 240px;
  }
  .promo-content h2 {
    font-size: 24px;
  }
  .promo-content p {
    font-size: 13px;
  }
}

/* SECTION */
.alchemy-section {
  padding: 120px 40px;
  background: linear-gradient(120deg, var(--wine), var(--cocoa), var(--bg-dark));
  position: relative;
  overflow: hidden;
}
.alchemy-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/noise.png');
  opacity: 0.03;
  pointer-events: none;
}
.alchemy-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 15px;
}
.alchemy-content h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}
.alchemy-content h2 span {
  color: var(--gold);
}
.alchemy-content p {
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 15px;
}
.cta-btn {
  margin-top: 25px;
  padding: 12px 26px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(135deg, #c9a75d, #a3823d);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(184,150,74,0.25);
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(184,150,74,0.35);
}
.alchemy-media {
  perspective: 1000px;
}
.image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  transform-style: preserve-3d;
}
.image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(184,150,74,0.25), transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.image-wrapper img {
  width: 100%;
  display: block;
  transform: translateY(0);
  transition: transform 0.2s ease-out;
}
.image-wrapper.parallax img {
  will-change: transform;
}
.image-wrapper:hover img {
  transform: scale(1.05);
}
.image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(184,150,74,0.25), transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.alchemy-media::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%);
  filter: blur(60px);
  z-index: -1;
}
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  opacity: 0.6;
  animation: float 10s linear infinite;
}
@keyframes float {
  0% {
    transform: translateY(100vh) scale(1);
    opacity: 0;
  }
  20% { opacity: 0.6; }
  100% {
    transform: translateY(-10vh) scale(0.5);
    opacity: 0;
  }
}
@media (max-width: 1024px) {
  .alchemy-container {
    grid-template-columns: 1fr;
  }
  .alchemy-content h2 {
    font-size: 32px;
  }
}
@media (max-width: 600px) {
  .alchemy-section {
    padding: 80px 20px;
  }
  .alchemy-content h2 {
    font-size: 26px;
  }
  .alchemy-content p {
    font-size: 14px;
  }
}

.seasonal-section {
  padding: 100px 40px;
  background:
    radial-gradient(circle at 75% 30%, rgba(232,209,167,0.15), transparent 40%),
    linear-gradient(to bottom, #f8f4ee, #fdfaf6);
}
.seasonal-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.seasonal-left {
  position: sticky;
  top: 120px; /* adjust based on header height */
}
.seasonal-hero {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-height: 80vh;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
.seasonal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seasonal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.2),
    transparent
  );
}
.seasonal-container .hero-content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  z-index: 2;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 14px;
}
.seasonal-container .hero-content .tag {
  font-size: 12px;
  color: #c9a75d;
  letter-spacing: 1px;
}
.seasonal-container .hero-content h3 {
  font-size: 24px;
  margin: 6px 0;
}
.seasonal-container .hero-content .price {
  font-size: 22px;
  font-weight: 600;
  color: #6b3d1f;
}
.seasonal-container .hero-content .desc {
  font-size: 13px;
  color: #777;
  margin-bottom: 12px;
}
.seasonal-container .btn-primary {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c9a75d, #a3823d);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}
.seasonal-container .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(184,150,74,0.4);
}
.seasonal-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}
.seasonal-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.08),
    0 2px 6px rgba(0,0,0,0.04);
  transition: 0.4s;
  cursor: pointer;
}
.seasonal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.seasonal-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-bottom: 15px;
}
.seasonal-card h3 {
  font-size: 24px;
  margin: 6px 0;
  color: #2b2b2b;
}
.seasonal-card span {
  color:var(--caramel);
  font-weight: 600;
}
@media (max-width: 1000px) {
  .seasonal-container {
    grid-template-columns: 1fr;
  }
  .seasonal-left {
    position: relative;
    top: 0;
  }
  .seasonal-hero {
    height: 420px;
  }
}
@media (max-width: 600px) {
  .seasonal-section {
    padding: 60px 20px;
  }
}

.special-section {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(184,150,74,0.08), transparent 40%),
    linear-gradient(to bottom, #f8f5ef, #fdfaf6);
}
.special-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    var(--bg-soft),
    transparent 70%
  );
  pointer-events: none;
}
.special-section .particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.special-section .particles span {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  width: var(--size);
  height: var(--size);
  background: radial-gradient(
    circle,
    var(--text-muted),   /* soft visible */
    var(--border),       /* subtle fade */
    transparent 70%
  );
  filter: blur(1.8px);
  opacity: 0;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% {
    transform: translateY(120vh) translateX(0) scale(0.8);
    opacity: 0;
  }
  20% {
    transform: translateY(120vh) translateX(0) scale(0.8);
    opacity: 0.6;
  }
  60% {
    transform: translateY(40vh) translateX(20px);
    opacity: 0.4;
  }
  100% {
    transform: translateY(-20vh) translateX(-20px) scale(1.2);
    opacity: 0;
  }
}
.special-section .timeline {
  position: relative;
  max-width: 1100px;
  margin: auto;
}
.special-section .timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1.5px;
  height: 100%;
  background: var(--caramel);
  transform: translateX(-50%);
}
.special-section .timeline::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: var(--line-height, 0%);
  background: linear-gradient(
    to bottom,
    transparent,
    var(--gold),
    var(--caramel),
    var(--gold),
    transparent
  );
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(184,150,74,0.5);
  transition: height 0.25s ease-out;
}
.special-section .timeline-item {
  position: relative;
  width: 50%;
  padding: 40px;
  opacity: 0;
  transform: translateX(var(--offsetX, 0));
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.special-section .timeline-item.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.special-section .timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}
.special-section .timeline-item:nth-child(even) {
  left: 50%;
}
.special-section .timeline-item::before {
  content: "";
  position: absolute;
  top: 70px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(212,175,55,0.6);
}
.special-section .timeline-item:nth-child(odd)::before {
  right: -5px;
}
.special-section .timeline-item:nth-child(even)::before {
  left: -5px;
}
.special-section .timeline-item::after {
  content: "";
  position: absolute;
  top: 75px;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.special-section .timeline-item:nth-child(even)::after {
  left: -60px;
}
.special-section .timeline-item:nth-child(odd)::after {
  right: -60px;
  background: linear-gradient(to left, var(--gold), transparent);
}
.special-section .timeline-card {
  position: relative;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  overflow: hidden;
  max-width: 600px;
  width: 100%;
  transform-style: preserve-3d;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.2s ease-out, box-shadow 0.3s ease;
}
.special-section .timeline-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.special-section .timeline-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212,175,55,0.25), transparent 70%);
  top: var(--y, 50%);
  left: var(--x, 50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.special-section .timeline-card:hover::before {
  opacity: 1;
}
.special-section .timeline-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.special-section .content {
  padding: 22px;
}
.special-section .content h3 {
  color: #6b3d1f;
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 10px;
}
.special-section .content p {
  color: #666;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .special-section .timeline-item:nth-child(odd) {
    left: 0;
    transform: translateX(-5%);
  }
  .special-section .timeline-item:nth-child(even) {
    left: 50%;
    transform: translateX(5%);
  }
  .special-section .timeline-item:nth-child(3n) {
    transform: translateX(-10%);
  }
  .special-section .timeline-item:nth-child(4n) {
    transform: translateX(10%);
  }
}
@media (max-width: 1024px) {
  .special-section .timeline-item {
    padding: 60px 30px;
  }
  .special-section .timeline-card {
    max-width: 360px;
  }
  .special-section .timeline-card img {
    height: 220px;
  }
}
@media (max-width: 768px) {
  .special-section .timeline::before, .special-section .timeline::after {
    left: 20px;
  }
  .special-section .timeline-item {
    width: 100%;
    padding-left: 50px 20px 50px 70px;
    left: 0 !important;
    text-align: left !important;
    transform: none !important;
  }
  .special-section .timeline-item::before {
    left: 14px !important;
  }
  .special-section .timeline-item::after {
    left: 20px !important;
    width: 30px;
  }
  .timeline-card {
    max-width: 100%;
  }
  .timeline-card img {
    height: 200px;
  }
}

.cta-section {
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--wine), var(--cocoa), var(--bg-dark));
}
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/noise.png');
  opacity: 0.05;
  pointer-events: none;
}
.cta-container {
  max-width: 800px;
  margin: auto;
  position: relative;
  z-index: 2;
}
.cta-container h2 {
  font-size: 40px;
  color: #fff;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}
.shimmer-text {
  font-size: 40px;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(
    120deg,
    #6b5a2b 0%,
    #b8964a 25%,
    #ffd700 50%,
    #b8964a 75%,
    #6b5a2b 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 8px rgba(255, 215, 0, 0.15),
    0 0 20px rgba(184,150,74,0.2);
  animation: goldShimmer 5s ease-in-out infinite;
  animation-delay: 2s;
}
@keyframes goldShimmer {
  0% {background-position: 200% center;}
  100% {background-position: -200% center;}
}
.cta-container p {
  color: #bbb;
  font-size: 16px;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--gold), var(--caramel));
  color:#2b2b2b;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(184,150,74,0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--caramel), var(--cocoa));
  color:#fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(184,150,74,0.4);
}
.btn-secondary {
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  border: 1px solid rgba(184,150,74,0.4);
  color: #fff;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: rgba(184,150,74,0.1);
  transform: translateY(-3px);
}
.cta-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184,150,74,0.3), transparent 70%);
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(80px);
}

@media (max-width: 768px) {
  .cta-container h2 {
    font-size: 28px;
  }
  .cta-container p {
    font-size: 14px;
  }
}

.insta-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(232,209,167,0.1), transparent 40%),
    linear-gradient(to bottom, #f8f4ee, #fdfaf6);
  overflow: hidden;
}
.insta-header {
  text-align: center;
  margin-bottom: 50px;
}
.insta-title {
  font-size: 28px;
  letter-spacing: 3px;
  color: #fff;
  background: linear-gradient(120deg, #c9a75d, #ffd700, #c9a75d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.insta-slider {
  position: relative;
  overflow: hidden;
}
.insta-slider::before,
.insta-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.insta-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollInsta 35s linear infinite;
}
.insta-slider:hover .insta-track {
  animation-play-state: paused;
}
.insta-card {
  min-width: 260px;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.insta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 215, 0, 0.25),
    transparent
  );
  transform: skewX(-20deg);
}
.insta-card:hover::before {
  animation: shimmerSweep 1s ease;
}
@keyframes shimmerSweep {
  100% {left: 150%;}
}
.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.insta-card:hover img {
  transform: scale(1.1);
}
.insta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 215, 0, 0.15),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.insta-card:hover::after {
  opacity: 1;
}
.insta-card:hover {
  transform: translateY(-8px);
}
@keyframes scrollInsta {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .insta-card {
    min-width: 200px;
    height: 260px;
  }
  .insta-title {
    font-size: 20px;
  }
}

.testimonial-section {
  padding: 100px 20px;
  background: linear-gradient(120deg, var(--wine), var(--cocoa));
  color: #fff;
  overflow: hidden;
}
.testimonial-header {
  text-align: center;
  margin-bottom: 50px;
}
.testimonial-title {
  font-size: 32px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  background: linear-gradient(120deg, #c9a75d, #ffd700, #c9a75d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rating-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 40px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}
.google {
  font-weight: bold;
  color: #fff;
}
.rating {
  font-size: 20px;
  font-weight: bold;
}
.stars {
  color:var(--gold);
}
.reviews {
  color: #aaa;
  font-size: 14px;
}
.testimonial-slider {
  overflow: hidden;
  position: relative;
}
.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollTestimonial 25s linear infinite;
}
.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}
.testimonial-card {
  min-width: 300px;
  max-width: 450px;
  padding: 25px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s ease;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 215, 0, 0.2),
    transparent
  );
  transform: skewX(-20deg);
}
.testimonial-card:hover::before {
  animation: shimmerCard 1s ease;
}
@keyframes shimmerCard {
  100% {left: 150%;}
}
.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(184,150,74,0.4);
  box-shadow: 0 15px 40px rgba(184,150,74,0.15);
}
.user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a75d, #a3823d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.testimonial-card p {
  color: #ddd;
  font-size: 14px;
  line-height: 1.6;
}
@keyframes scrollTestimonial {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .testimonial-title {
    font-size: 24px;
  }
  .testimonial-card {
    min-width: 240px;
  }
}

.journal-section{
  background:
    radial-gradient(circle at 50% 20%, rgba(232,209,167,0.15), transparent 40%),
    linear-gradient(to bottom, #f7f3ec, #fdfaf6);
  padding: 80px 20px;
}
.journal-container{
  max-width: 1200px;
  margin: auto;
}
.journal-header{
  text-align: center;
  margin-bottom: 50px;
}
.journal-header h2{
  font-size: 32px;
  letter-spacing: 1px;
}
.divider{
  width:120px;
  height:2px;
  background:linear-gradient(to right,transparent,#c9a45c,transparent);
  margin:0 auto 40px;
}
.journal-grid{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}
.featured-blog{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  cursor: pointer;
}
.featured-blog img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.featured-blog:hover{
  transform: translateY(-6px);
  box-shadow: 
    0 15px 40px rgba(0,0,0,0.08),
    0 0 0 1px rgba(184,150,74,0.15),
    0 0 20px rgba(184,150,74,0.12);
}
.featured-blog:hover img{
  transform: scale(1.04);
}
.featured-content{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  color: #fff;
}
.featured-content h3{
  font-size: 24px;
  margin-bottom: 8px;
}
.featured-content p{
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 8px;
}
.featured-content .meta{
  font-size: 12px;
  color: #e6d3a3;
}
.side-blogs{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-item{
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  transition: all 0.35s ease;
  cursor: pointer;
}
.blog-item:hover{
  transform: translateX(6px);
  border-color: rgba(184,150,74,0.3);
  box-shadow: 
    0 10px 25px rgba(0,0,0,0.05),
    0 0 12px rgba(184,150,74,0.15);
}
.blog-item img{
  width: 95px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}
.blog-item h4{
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 500;
}
.blog-item span{
  font-size: 12px;
  color: #777;
}
.journal-cta{
  text-align: center;
  margin-top: 50px;
}
.journal-cta a{
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.journal-cta a:hover{
  background: var(--gold);
  color: #000;
}

@media (max-width: 992px){
  .journal-grid{
    grid-template-columns: 1fr;
  }
  .featured-blog{
    height: 350px;
  }
}
@media (max-width: 600px){
  .journal-header h2{
    font-size: 26px;
  }
  .blog-item img{
    width: 70px;
    height: 60px;
  }
}

/* Section */
.retail-section{
  background: linear-gradient(120deg, var(--wine), var(--cocoa));
  padding: 100px 20px;
}
.retail-wrapper{
  max-width: 1200px;
  margin: auto;
  position: relative;
}
.retail-image{
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.retail-image img{
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) contrast(1.05);
}
.retail-image::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 40%,
    transparent 75%
  );
}
.retail-card{
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  max-width: 420px;
  backdrop-filter: blur(12px);
  padding: 35px;
  border-radius: 18px;
  color: var(--text-light);
  background: rgba(30,20,15,0.8);
  border:1px solid var(--border-soft);
  transition: all 0.4s ease;
}
.retail-card:hover{
  box-shadow:
    0 30px 70px rgba(0,0,0,0.7),
    0 0 25px rgba(184,150,74,0.25);
}
.retail-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 30px;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.label{
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.retail-card h2{
  font-size: 26px;
  margin-bottom: 15px;
  color: #fff;
}
.address{
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 15px;
}
.retail-card p{
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text-muted);
}
.direction-btn{
  display: inline-block;
  margin-top: 15px;
  padding: 10px 24px;
  border-radius: 30px;
  border:1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.direction-btn:hover{
  background:var(--gold);
  color:#000;
  box-shadow: 0 0 14px rgba(184,150,74,0.5);
}
@media (max-width: 992px){
  .retail-card{
    left: 30px;
    max-width: 360px;
  }
}
@media (max-width: 768px){
  .retail-wrapper{
    display: flex;
    flex-direction: column;
  }
  .retail-image img{
    height: 320px;
  }
  .retail-image::after{
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.7),
      transparent
    );
  }
  .retail-card{
    position: relative;
    transform: none;
    top: -60px;
    left: 0;
    margin: 0 15px;
  }
}
@media (max-width: 480px){
  .retail-card{
    padding: 25px;
  }
  .retail-card h2{
    font-size: 22px;
  }
}

.footer{
  background:
    radial-gradient(circle at 50% 20%, rgba(232,209,167,0.15), transparent 40%),
    linear-gradient(to bottom, #f7f3ec, #fdfaf6);
  position: relative;
  padding: 80px 20px 40px;
  overflow: hidden;
}
.footer-container{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.logo{
  margin-bottom: 15px;
}
.footer-col p{
  font-size: 14px;
  margin-bottom: 15px;
}
.footer-col h4{
  margin-bottom: 15px;
  font-size: 16px;
}
.footer-col ul{
  list-style: none;
}
.footer-col ul li{
  margin-bottom: 10px;
}
.footer-col ul li a{
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover{
  color:var(--caramel);
  transform: translateX(4px);
}
.contact a{
  display: block;
  margin-bottom: 6px;
  color: var(--text-dark);
  text-decoration: none;
}
.socials{
  margin-top: 15px;
  display: flex;
  gap: 10px;
}
.socials a{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #444;
  transition: all 0.3s ease;
}
.socials a:hover{
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 10px rgba(184,150,74,0.3);
}
.newsletter-box{
  display:flex;
  align-items:center;
  margin-top:16px;
  border:1px solid var(--border-soft);
  border-radius:999px;
  overflow:hidden;
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(8px);
  transition:all .3s ease;
  box-shadow:0 8px 24px rgba(68,45,28,0.06);
}
.newsletter-box:focus-within{
  border-color:var(--olive);
  box-shadow:0 10px 30px rgba(157,145,103,0.18);
  background:#fff;
}
.newsletter-box input{
  flex:1;
  border:none;
  padding:14px 18px;
  outline:none;
  background:transparent;
  color:var(--text-dark);
  font-size:14px;
  font-family:'Inter',sans-serif;
}
.newsletter-box input::placeholder{
  color:var(--text-muted);
}
.newsletter-box button{
  border:none;
  padding:14px 22px;
  background:linear-gradient(
    135deg,
    var(--olive),
    var(--caramel)
  );
  color:#fff;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  transition:all .3s ease;
  white-space:nowrap;
}
.newsletter-box button:hover{
  background:linear-gradient(
    135deg,
    var(--caramel),
    var(--wine)
  );
}
.newsletter-box button:active{
  transform:scale(.98);
}
.payments{
  margin-top: 15px;
}
.payments img{
  width: 100%;
  max-width: 220px;
  opacity: 0.8;
}
.footer-bottom{
  text-align: center;
  margin-top: 50px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom i{
  color: crimson;
}

@media (max-width: 992px){
  .footer-container{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px){
  .footer-container{
    grid-template-columns: 1fr;
  }
  .newsletter-box{
    flex-direction:column;
    border-radius:18px;
    overflow:hidden;
  }
  .newsletter-box input{
    width:100%;
    padding:14px 16px;
  }
  .newsletter-box button{
    width:100%;
    border-radius:0;
  }
}

.breadcrumb-hero{
  position:relative;
  min-height:260px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  background:
    radial-gradient(circle at top right,
      rgba(232,209,167,0.45),
      transparent 30%
    ),
    radial-gradient(circle at bottom left,
      rgba(157,145,103,0.12),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #fffdf9,
      var(--bg-soft)
    );
  border-bottom:1px solid var(--border-soft);
}
.breadcrumb-content{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:auto;
  text-align:center;
}
.breadcrumb-content h1{
  font-size:54px;
  line-height:1.1;
  margin-bottom:18px;
  color:var(--cocoa);
  font-weight:700;
}
.breadcrumb-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  font-size:15px;
}
.breadcrumb-nav a{
  color:var(--text-muted);
  transition:.3s ease;
}
.breadcrumb-nav a:hover{
  color:var(--caramel);
}
.breadcrumb-nav span{
  color:rgba(132,89,43,0.35);
}
.breadcrumb-nav strong{
  color:var(--wine);
  font-weight:500;
}
@media(max-width:768px){
  .breadcrumb-hero{
    padding:70px 16px 55px;
  }
  .breadcrumb-content h1{
    font-size:36px;
  }
  .breadcrumb-nav{
    font-size:14px;
    gap:8px;
  }
}

.category-showcase-section{
  padding:90px 20px;
  background:var(--bg-light);
}
.section-header{
  max-width:760px;
  margin:0 auto 55px;
  text-align:center;
}
.section-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 16px;
  margin-bottom:18px;
  border-radius:999px;
  background:rgba(232,209,167,0.22);
  border:1px solid rgba(157,145,103,0.18);
  color:var(--caramel);
  font-size:13px;
  font-weight:600;
  letter-spacing:.8px;
  text-transform:uppercase;
}
.section-header h2{
  font-size:48px;
  line-height:1.1;
  margin-bottom:16px;
  color:var(--cocoa);
}
.section-header p{
  font-size:16px;
  line-height:1.8;
  color:var(--text-muted);
}
.category-showcase-grid{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}
.category-card{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  background:#fff;
  border:1px solid var(--border-soft);
  transition:.4s ease;
  box-shadow:
    0 10px 30px rgba(68,45,28,0.05);
}
.category-card:hover{
  transform:translateY(-8px);
  box-shadow:
    0 25px 60px rgba(68,45,28,0.12);
}
.category-image{
  position:relative;
  overflow:hidden;
  height:340px;
}
.category-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}
.category-card:hover .category-image img{
  transform:scale(1.08);
}
.category-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to top,
      rgba(68,45,28,0.55),
      rgba(68,45,28,0.05)
    );
}
.category-content{
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  padding:28px;
  z-index:2;
}
.category-content h3{
  font-size:28px;
  margin-bottom:10px;
  color:#fff;
}
.category-content span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--gold);
  font-size:14px;
  font-weight:500;
}
.category-content span::after{
  content:"→";
  transition:transform .3s ease;
}
.category-card:hover .category-content span::after{
  transform:translateX(4px);
}
@media(max-width:1024px){
  .category-showcase-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .category-image{
    height:300px;
  }
}
@media(max-width:768px){
  .category-showcase-section{
    padding:70px 16px;
  }
  .section-header h2{
    font-size:36px;
  }
  .category-showcase-grid{
    grid-template-columns:1fr;
    gap:22px;
  }
  .category-image{
    height:260px;
  }
  .category-content h3{
    font-size:24px;
  }
}

.subcategory-section{
  padding:90px 20px;
  background:linear-gradient(
    to bottom,
    #fff,
    var(--bg-soft)
  );
}
.subcategory-grid{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}
.subcategory-card{
  display:flex;
  align-items:stretch;
  overflow:hidden;
  background:#fff;
  border-radius:26px;
  border:1px solid var(--border-soft);
  transition:.4s ease;
  box-shadow:0 10px 30px rgba(68,45,28,0.05);
}
.subcategory-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 50px rgba(68,45,28,0.12);
}
.subcategory-image{
  width:42%;
  min-height:280px;
  overflow:hidden;
}
.subcategory-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}
.subcategory-card:hover img{
  transform:scale(1.06);
}
.subcategory-content{
  flex:1;
  padding:34px 30px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.subcategory-label{
  display:inline-flex;
  width:max-content;
  padding:6px 14px;
  margin-bottom:16px;
  border-radius:999px;
  background:rgba(232,209,167,0.18);
  color:var(--caramel);
  font-size:12px;
  font-weight:600;
  letter-spacing:.6px;
  text-transform:uppercase;
}
.subcategory-content h3{
  font-size:32px;
  line-height:1.2;
  margin-bottom:14px;
  color:var(--cocoa);
}
.subcategory-content p{
  font-size:15px;
  line-height:1.8;
  color:var(--text-muted);
  margin-bottom:24px;
}
.subcategory-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--wine);
  font-size:14px;
  font-weight:600;
}
.subcategory-link::after{
  content:"→";
  transition:transform .3s ease;
}
.subcategory-card:hover .subcategory-link::after{
  transform:translateX(5px);
}
@media(max-width:1024px){
  .subcategory-grid{
    grid-template-columns:1fr;
  }
}
@media(max-width:768px){
  .subcategory-section{
    padding:70px 16px;
  }
  .subcategory-card{
    flex-direction:column;
  }
  .subcategory-image{
    width:100%;
    min-height:240px;
  }
  .subcategory-content{
    padding:24px 22px;
  }
  .subcategory-content h3{
    font-size:26px;
  }
}

.collection-section{
  padding:90px 20px;
  background:#fff;
}
.collection-grid{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.collection-card{
  position:relative;
  overflow:hidden;
  background:#fff;
  border-radius:22px;
  border:1px solid var(--border-soft);
  transition:.35s ease;
  box-shadow:0 8px 24px rgba(68,45,28,0.05);
}
.collection-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(68,45,28,0.12);
}
.collection-image{
  position:relative;
  overflow:hidden;
  height:240px;
}
.collection-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}
.collection-card:hover img{
  transform:scale(1.08);
}
.collection-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to top,
      rgba(68,45,28,0.5),
      rgba(68,45,28,0.02)
    );
}
.collection-content{
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  padding:22px;
  z-index:2;
}
.collection-content h3{
  font-size:22px;
  line-height:1.2;
  color:#fff;
  margin-bottom:8px;
}
.collection-content span{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--gold);
  font-size:13px;
  font-weight:500;
}
.collection-content span::after{
  content:"→";
  transition:transform .3s ease;
}
.collection-card:hover .collection-content span::after{
  transform:translateX(4px);
}
@media(max-width:1200px){
  .collection-grid{
    grid-template-columns:repeat(3,1fr);
  }
}
@media(max-width:768px){
  .collection-section{
    padding:70px 16px;
  }
  .collection-grid{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
  }
  .collection-image{
    height:210px;
  }
  .collection-content{
    padding:18px;
  }
  .collection-content h3{
    font-size:18px;
  }
}
@media(max-width:576px){
  .collection-grid{
    grid-template-columns:1fr;
  }
  .collection-image{
    height:240px;
  }
}

.shop-section{
  padding:80px 20px;
  background:var(--bg-light);
}
.shop-container{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:280px 1fr;
  gap:34px;
}
.shop-sidebar{
  position:sticky;
  top:110px;
  height:max-content;
}
.filter-box{
  background:#fff;
  border:1px solid var(--border-soft);
  border-radius:22px;
  padding:24px;
  margin-bottom: 15px;
}
.filter-box h3{
  font-size:22px;
  margin-bottom:20px;
  color:var(--cocoa);
}
.filter-group{
  padding:14px 0;
  border-bottom:1px solid var(--border-soft);
}
.filter-group:last-child{
  border-bottom:0;
}
.filter-title{
  display:block;
  font-weight:700;
  color:var(--wine);
  margin-bottom:10px;
}
.filter-link{
  display:block;
  padding:6px 0 6px 12px;
  font-size:14px;
  color:var(--text-muted);
}
.filter-link:hover{
  color:var(--caramel);
}
.shop-topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:24px;
}
.shop-topbar h2{
  font-size:34px;
  color:var(--cocoa);
}
.shop-topbar span{
  color:var(--text-muted);
  font-size:14px;
}
.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
@media(max-width:1024px){
  .shop-container{
    grid-template-columns:1fr;
  }
  .shop-sidebar{
    position:static;
  }
  .product-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:576px){
  .product-grid{
    grid-template-columns:1fr;
  }
  .shop-topbar{
    align-items:flex-start;
    flex-direction:column;
    gap:8px;
  }
}

.product-detail-section{
  padding:80px 20px;
  background:var(--bg-light);
}
.product-detail-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}
.product-gallery{
  background:#fff;
  border:1px solid var(--border-soft);
  border-radius:28px;
  padding:20px;
}
.main-product-img{
  width:100%;
  height:560px;
  object-fit:cover;
  border-radius:22px;
}
.thumb-gallery{
  display:flex;
  gap:12px;
  margin-top:14px;
  overflow-x:auto;
}
.thumb-gallery img{
  width:88px;
  height:88px;
  object-fit:cover;
  border-radius:12px;
  border:2px solid transparent;
  cursor:pointer;
  transition:.3s ease;
}
.thumb-gallery img:hover{
  border-color:var(--gold);
}
.thumb-gallery img.active{
  border-color:var(--wine);
  transform:scale(1.04);
}
.product-detail-info h1{
  font-size:42px;
  color:var(--cocoa);
  margin:18px 0 10px;
}
.breadcrumb-mini{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  font-size:14px;
  color:var(--text-muted);
}
.breadcrumb-mini a{
  color:var(--caramel);
}
.product-code{
  color:var(--text-muted);
  margin-bottom:18px;
}
.detail-price{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}
.detail-price .old{
  color:var(--text-muted);
  text-decoration:line-through;
  font-size:18px;
}
.detail-price .new{
  color:var(--wine);
  font-size:30px;
  font-weight:700;
}
.detail-price .discount{
  background:rgba(116,48,20,0.1);
  color:var(--wine);
  padding:6px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
}
.stock{
  margin-bottom:24px;
  font-weight:600;
}
.in-stock{
  color:var(--olive);
}
.out-stock{
  color:var(--wine);
}
.product-actions-detail{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:28px;
}
.product-actions-detail input{
  width:60px;
  height:46px;
  text-align:center;
  border:1px solid var(--border-soft);
  border-radius:10px;
}
.qty-btn{
  width:46px;
  height:46px;
  border:none;
  border-radius:10px;
  background:var(--bg-soft);
  cursor:pointer;
}
.cart-btn{
  padding:15px 28px;
  border:none;
  border-radius:12px;
  background:var(--wine);
  color:#fff;
  font-weight:600;
  cursor:pointer;
}
.product-meta,
.product-attributes{
  padding:18px 0;
  border-top:1px solid var(--border-soft);
}
.product-meta p,
.product-attributes p{
  margin-bottom:10px;
  color:var(--text-muted);
}
.product-meta strong,
.product-attributes strong{
  color:var(--cocoa);
}
.product-description-section{
  padding:0 20px 80px;
  background:var(--bg-light);
}
.product-description-container{
  max-width:1300px;
  margin:auto;
  background:#fff;
  border:1px solid var(--border-soft);
  border-radius:24px;
  padding:34px;
}
.product-description-container h2{
  color:var(--cocoa);
  margin-bottom:14px;
}
.product-description-container p{
  color:var(--text-muted);
  line-height:1.8;
}
@media(max-width:900px){
  .product-detail-container{
    grid-template-columns:1fr;
    gap:34px;
  }
  .main-product-img{
    height:420px;
  }
  .product-detail-info h1{
    font-size:32px;
  }
}

.product-reviews-section{
  padding:0 20px 80px;
  background:var(--bg-light);
}
.review-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  margin-top:30px;
}
.review-card{
  background:#fff;
  border:1px solid var(--border-soft);
  border-radius:22px;
  padding:24px;
}
.review-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  margin-bottom:16px;
}
.review-top h4{
  color:var(--cocoa);
  margin-bottom:6px;
}
.review-top span{
  color:var(--text-muted);
  font-size:14px;
}
.review-rating{
  min-width:70px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(232,209,167,0.2);
  color:var(--wine);
  font-size:14px;
  font-weight:600;
}
.review-card p{
  color:var(--text-muted);
  line-height:1.8;
}
.empty-review{
  color:var(--text-muted);
}
.related-products-section{
  padding:0 20px 100px;
  background:var(--bg-light);
}
.related-products-container{
  max-width:1300px;
  margin:auto;
}
@media(max-width:768px){
  .review-grid{
    grid-template-columns:1fr;
  }
}

.review-form-section{
  padding:0 20px 100px;
  background:var(--bg-light);
}
.review-form{
  margin-top:28px;
}
.review-grid-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.review-form .form-group{
  display:flex;
  flex-direction:column;
  margin-bottom:10px;
}
.review-form label{
  margin-bottom:10px;
  color:var(--cocoa);
  font-size:14px;
  font-weight:600;
}
.review-form input,
.review-form select,
.review-form textarea{
  width:100%;
  padding:14px 18px;
  border-radius:14px;
  border:1px solid var(--border-soft);
  background:#fff;
  font-size:15px;
  color:var(--text-dark);
  outline:none;
  transition:.3s ease;
}
.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus{
  border-color:var(--olive);
}
.review-form textarea{
  resize:none;
}
.submit-review-btn{
  height:52px;
  padding:0 28px;
  border:none;
  border-radius:14px;
  background:var(--wine);
  color:#fff;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:.3s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.submit-review-btn:hover{
  background:var(--cocoa);
}
@media(max-width:768px){
  .review-grid-form{
    grid-template-columns:1fr;
  }
}

.cart-section{
  padding:50px 20px;
  background:var(--bg-light);
}
.cart-container{
  max-width:1300px;
  margin:auto;
}
.cart-header{
  margin-bottom:34px;
}
.cart-header h1{
  font-size:42px;
  color:var(--cocoa);
  margin-bottom:8px;
}
.cart-header p{
  color:var(--text-muted);
}
.cart-layout{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:34px;
}
.cart-items,
.cart-summary,
.empty-cart{
  background:#fff;
  border:1px solid var(--border-soft);
  border-radius:26px;
  padding:26px;
}
.cart-item{
  display:grid;
  grid-template-columns:1fr 120px 130px 120px 40px;
  gap:18px;
  align-items:center;
  padding:22px 0;
  border-bottom:1px solid var(--border-soft);
}
.cart-item:last-child{
  border-bottom:none;
}
.cart-product{
  display:flex;
  align-items:center;
  gap:16px;
}
.cart-product img{
  width:96px;
  height:96px;
  object-fit:cover;
  border-radius:16px;
}
.cart-product h3{
  font-size:17px;
  color:var(--cocoa);
  margin-bottom:6px;
}
.cart-product p{
  font-size:13px;
  color:var(--text-muted);
  margin-bottom:6px;
}
.cart-product a{
  font-size:13px;
  color:var(--wine);
  font-weight:600;
}
.cart-price,
.cart-total{
  font-weight:700;
  color:var(--cocoa);
}
.cart-qty{
  display:flex;
  align-items:center;
  border:1px solid var(--border-soft);
  border-radius:12px;
  overflow:hidden;
  width:max-content;
}
.cart-qty button{
  width:38px;
  height:38px;
  border:none;
  background:var(--bg-soft);
  cursor:pointer;
}
.cart-qty input{
  width:46px;
  height:38px;
  border:none;
  text-align:center;
  background:#fff;
}
.cart-remove{
  width:38px;
  height:38px;
  border:none;
  border-radius:50%;
  background:rgba(116,48,20,0.08);
  color:var(--wine);
  cursor:pointer;
}
.cart-summary{
  height:max-content;
  position:sticky;
  top:110px;
}
.cart-summary h2{
  color:var(--cocoa);
  margin-bottom:24px;
}
.summary-row{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:16px 0;
  border-top:1px solid var(--border-soft);
  color:var(--text-muted);
}
.summary-row strong{
  color:var(--cocoa);
  text-align:right;
}
.summary-row.total{
  font-size:20px;
  color:var(--cocoa);
}
.checkout-btn,
.continue-btn{
  width:100%;
  height:52px;
  margin-top:18px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  transition:.3s ease;
}
.checkout-btn{
  background:var(--wine);
  color:#fff;
}
.checkout-btn:hover{
  background:var(--cocoa);
}
.continue-btn{
  border:1px solid var(--border-soft);
  color:var(--cocoa);
}
.continue-btn:hover{
  border-color:var(--olive);
  color:var(--olive);
}
.empty-cart{
  text-align:center;
  padding:70px 20px;
}
.empty-cart h2{
  color:var(--cocoa);
  margin-bottom:10px;
}
.empty-cart p{
  color:var(--text-muted);
  margin-bottom:24px;
}
.empty-cart .checkout-btn{
  max-width:240px;
  margin:20px auto 0;
}
@media(max-width:1024px){
  .cart-layout{
    grid-template-columns:1fr;
  }
  .cart-summary{
    position:static;
  }
}
@media(max-width:768px){
  .cart-section{
    padding:60px 16px;
  }
  .cart-header h1{
    font-size:32px;
  }
  .cart-item{
    grid-template-columns:1fr;
    gap:14px;
  }
  .cart-product{
    align-items:flex-start;
  }
  .cart-price,
  .cart-total{
    display:flex;
    justify-content:space-between;
  }
  .cart-price::before{
    content:"Price";
    color:var(--text-muted);
    font-weight:500;
  }
  .cart-total::before{
    content:"Total";
    color:var(--text-muted);
    font-weight:500;
  }
}

.checkout-section{
  padding:50px 20px;
  background:var(--bg-light);
}
.checkout-container{
  max-width:1300px;
  margin:auto;
}
.checkout-form{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:34px;
}
.checkout-card,
.order-summary{
  background:#fff;
  border:1px solid var(--border-soft);
  border-radius:26px;
  padding:30px;
  margin-bottom:24px;
}
.checkout-card h2,
.order-summary h3{
  color:var(--cocoa);
  margin-bottom:22px;
}
.checkout-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.checkout-form .form-group{
  margin-bottom:18px;
}
.checkout-form label{
  display:block;
  margin-bottom:8px;
  color:var(--cocoa);
  font-size:14px;
  font-weight:600;
}
.checkout-form input,
.checkout-form textarea,
.checkout-form select{
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid var(--border-soft);
  background:#fff;
  outline:none;
}
.same-address{
  display:flex !important;
  align-items:center;
  gap:10px;
  margin-bottom:0 !important;
}
.same-address input{
  width:auto;
}
.checkout-right{
  position:relative;
}
.order-summary{
  position:sticky;
  top:110px;
}
.summary-product{
  display:flex;
  gap:14px;
  padding:14px 0;
  border-bottom:1px solid var(--border-soft);
}
.summary-product img{
  width:74px;
  height:74px;
  object-fit:cover;
  border-radius:12px;
}
.summary-product h4{
  color:var(--cocoa);
  font-size:14px;
  margin-bottom:6px;
}
.summary-product p{
  color:var(--text-muted);
  font-size:13px;
}
.summary-row{
  display:flex;
  justify-content:space-between;
  padding:15px 0;
  border-bottom:1px solid var(--border-soft);
}
.summary-row.total{
  font-size:20px;
  color:var(--wine);
}
.place-order-btn{
  width:100%;
  height:54px;
  margin-top:22px;
  border:none;
  border-radius:14px;
  background:var(--wine);
  color:#fff;
  font-weight:700;
  cursor:pointer;
}
.place-order-btn:hover{
  background:var(--cocoa);
}
@media(max-width:1024px){
  .checkout-form{
    grid-template-columns:1fr;
  }
  .order-summary{
    position:static;
  }
}
@media(max-width:768px){
  .checkout-grid{
    grid-template-columns:1fr;
  }
}

.thankyou-section{
  padding:50px 20px;
  background:var(--bg-light);
}
.thankyou-container{
  max-width:900px;
  margin:auto;
}
.thankyou-card{
  background:#fff;
  border:1px solid var(--border-soft);
  border-radius:32px;
  padding:60px;
  text-align:center;
  box-shadow:0 20px 60px rgba(68,45,28,0.06);
}
.thankyou-icon{
  width:90px;
  height:90px;
  margin:0 auto 26px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(157,145,103,0.12);
  color:var(--olive);
  font-size:36px;
}
.thankyou-tag{
  display:inline-flex;
  padding:8px 18px;
  border-radius:999px;
  background:rgba(232,209,167,0.2);
  color:var(--wine);
  font-size:13px;
  font-weight:600;
  margin-bottom:18px;
}
.thankyou-card h1{
  font-size:46px;
  color:var(--cocoa);
  margin-bottom:16px;
}
.thankyou-text{
  max-width:640px;
  margin:0 auto 40px;
  color:var(--text-muted);
  line-height:1.8;
}
.order-info-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-bottom:40px;
}
.order-info-item{
  background:var(--bg-soft);
  border-radius:20px;
  padding:24px 18px;
}
.order-info-item span{
  display:block;
  color:var(--text-muted);
  font-size:13px;
  margin-bottom:10px;
}
.order-info-item strong{
  color:var(--cocoa);
  font-size:16px;
}
.thankyou-summary{
  text-align:left;
  border-top:1px solid var(--border-soft);
  padding-top:34px;
  margin-top:10px;
}
.thankyou-summary h3{
  color:var(--cocoa);
  margin-bottom:24px;
}
.summary-product{
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px 0;
  border-bottom:1px solid var(--border-soft);
}
.summary-product img{
  width:90px;
  height:90px;
  object-fit:cover;
  border-radius:16px;
}
.summary-product-content{
  flex:1;
}
.summary-product-content h4{
  color:var(--cocoa);
  margin-bottom:6px;
}
.summary-product-content p{
  color:var(--text-muted);
  font-size:14px;
}
.summary-product strong{
  color:var(--wine);
}
.thankyou-actions{
  display:flex;
  justify-content:center;
  gap:18px;
  margin-top:42px;
}
.thankyou-btn{
  min-width:220px;
  height:56px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  transition:.3s ease;
}
.thankyou-btn.primary{
  background:var(--wine);
  color:#fff;
}
.thankyou-btn.primary:hover{
  background:var(--cocoa);
}
.thankyou-btn.secondary{
  border:1px solid var(--border-soft);
  color:var(--cocoa);
}
.thankyou-btn.secondary:hover{
  border-color:var(--olive);
  color:var(--olive);
}
@media(max-width:900px){
  .order-info-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:768px){
  .thankyou-section{
    padding:70px 16px;
  }
  .thankyou-card{
    padding:36px 24px;
  }
  .thankyou-card h1{
    font-size:34px;
  }
  .order-info-grid{
    grid-template-columns:1fr;
  }
  .summary-product{
    align-items:flex-start;
    flex-direction:column;
  }
  .thankyou-actions{
    flex-direction:column;
  }
  .thankyou-btn{
    width:100%;
  }
}

.thankyou-recommendations{
  margin-top:30px;
  text-align:left;
}
.thankyou-recommendations .section-header{
  margin-bottom:28px;
}
.thankyou-offer{
  margin-top:50px;
  padding:18px 22px;
  border-radius:18px;
  background:
    linear-gradient(
      135deg,
      rgba(232,209,167,0.18),
      rgba(157,145,103,0.12)
    );
  border:1px solid var(--border-soft);
  color:var(--cocoa);
  text-align:center;
  font-size:15px;
}
.thankyou-offer strong{
  color:var(--wine);
}


.track-section{
  padding:50px 20px;
  background:var(--bg-light);
}
.track-container{
  max-width:1100px;
  margin:auto;
}
.track-header{
  text-align:center;
  margin-bottom:34px;
}
.track-header h1{
  font-size:48px;
  color:var(--cocoa);
  margin:14px 0;
}
.track-header p{
  color:var(--text-muted);
}
.track-search-card,
.track-result-card{
  background:#fff;
  border:1px solid var(--border-soft);
  border-radius:28px;
  padding:30px;
  margin-bottom:30px;
}
.track-search-card{
  display:flex;
  gap:14px;
}
.track-search-card input{
  flex:1;
  height:54px;
  border:1px solid var(--border-soft);
  border-radius:14px;
  padding:0 18px;
  outline:none;
}
.track-search-card button{
  height:54px;
  padding:0 30px;
  border:none;
  border-radius:14px;
  background:var(--wine);
  color:#fff;
  font-weight:700;
  cursor:pointer;
}
.track-result-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-bottom:30px;
}
.track-result-top span,
.track-info-grid span{
  display:block;
  color:var(--text-muted);
  font-size:13px;
  margin-bottom:8px;
}
.track-result-top h2{
  color:var(--cocoa);
}
.track-status{
  padding:10px 18px;
  border-radius:999px;
  background:rgba(157,145,103,0.15);
  color:var(--olive);
  font-weight:700;
}
.track-info-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-bottom:44px;
}
.track-info-grid div{
  background:var(--bg-soft);
  border-radius:18px;
  padding:20px;
}
.track-info-grid strong{
  color:var(--cocoa);
}
.track-steps{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:0;
  margin-bottom:44px;
}
.track-step{
  position:relative;
  text-align:center;
}
.track-step::after{
  content:"";
  position:absolute;
  top:15px;
  left:50%;
  width:100%;
  height:2px;
  background:var(--border-soft);
  z-index:1;
}
.track-step:last-child::after{
  display:none;
}
.track-step span{
  width:32px;
  height:32px;
  margin:0 auto 12px;
  display:block;
  border-radius:50%;
  background:#ddd;
  position:relative;
  z-index:2;
}
.track-step.active span{
  background:var(--olive);
}
.track-step p{
  color:var(--text-muted);
  font-size:14px;
}
.track-step.active p{
  color:var(--cocoa);
  font-weight:700;
}
.tracked-items h3{
  color:var(--cocoa);
  margin-bottom:18px;
}
.tracked-item{
  display:grid;
  grid-template-columns:90px 1fr auto;
  gap:18px;
  align-items:center;
  padding:18px 0;
  border-bottom:1px solid var(--border-soft);
}
.tracked-item:last-child{
  border-bottom:none;
}
.tracked-item img{
  width:90px;
  height:90px;
  object-fit:cover;
  border-radius:14px;
}
.tracked-item h4{
  color:var(--cocoa);
  margin-bottom:6px;
}
.tracked-item p{
  color:var(--text-muted);
}
.tracked-item strong{
  color:var(--wine);
}
@media(max-width:768px){
  .track-header h1{
    font-size:34px;
  }
  .track-search-card{
    flex-direction:column;
  }
  .track-info-grid{
    grid-template-columns:1fr;
  }
  .track-steps{
    grid-template-columns:1fr;
    gap:20px;
  }
  .track-step::after{
    display:none;
  }
  .tracked-item{
    grid-template-columns:1fr;
  }
}

.about-hero{
  padding:70px 20px;
  text-align:center;
  background:
    radial-gradient(circle at top right,
      rgba(232,209,167,0.25),
      transparent 30%
    ),
    linear-gradient(to bottom,#fff,var(--bg-soft));
}
.about-hero-content{
  max-width:900px;
  margin:auto;
}
.about-hero h1{
  font-size:64px;
  line-height:1.1;
  color:var(--cocoa);
  margin:20px 0;
}
.about-hero p{
  max-width:720px;
  margin:auto;
  color:var(--text-muted);
  line-height:1.9;
  font-size:17px;
}

.about-story{
  padding:50px 20px;
  background:#fff;
}
.about-story-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}
.about-story-image img{
  width:100%;
  border-radius:28px;
}
.about-story-content h2{
  font-size:48px;
  line-height:1.2;
  margin:18px 0;
  color:var(--cocoa);
}
.about-story-content p{
  color:var(--text-muted);
  line-height:1.9;
  margin-bottom:20px;
}

.about-process{
  padding:50px 20px;
  background:var(--bg-soft);
}
.process-grid{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.process-card{
  background:#fff;
  border-radius:24px;
  padding:40px 30px;
  border:1px solid var(--border-soft);
  transition:.35s ease;
}
.process-card:hover{
  transform:translateY(-8px);
}
.process-number{
  font-size:48px;
  font-weight:700;
  color:rgba(132,89,43,0.12);
  margin-bottom:20px;
}
.process-card h3{
  color:var(--cocoa);
  margin-bottom:12px;
}
.process-card p{
  color:var(--text-muted);
  line-height:1.8;
}

.about-why{
  padding:50px 20px;
  background:#fff;
}
.why-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.why-card{
  padding:34px;
  border-radius:24px;
  background:var(--bg-soft);
}
.why-card h3{
  color:var(--cocoa);
  margin-bottom:12px;
}
.why-card p{
  color:var(--text-muted);
  line-height:1.8;
}

.about-stats{
  padding:90px 20px;
  background:
    linear-gradient(120deg,var(--wine),var(--cocoa));
}

.stats-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.about-gifting{
  padding:70px 20px;
  text-align:center;
  background:var(--bg-light);
}
.about-gifting-content{
  max-width:820px;
  margin:auto;
}
.about-gifting h2{
  font-size:52px;
  line-height:1.2;
  margin:20px 0;
  color:var(--cocoa);
}
.about-gifting p{
  color:var(--text-muted);
  line-height:1.9;
  margin-bottom:30px;
}
@media(max-width:1024px){
  .process-grid,
  .stats-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .about-story-container{
    grid-template-columns:1fr;
  }
}
@media(max-width:768px){
  .about-hero{
    padding:100px 16px;
  }
  .about-hero h1{
    font-size:42px;
  }
  .about-story-content h2,
  .about-gifting h2{
    font-size:34px;
  }
  .process-grid,
  .stats-grid,
  .why-grid{
    grid-template-columns:1fr;
  }
}

.policy-section{
  padding:60px 20px;
  background:var(--bg-light);
}
.policy-container{
  max-width:1000px;
  margin:auto;
}
.policy-card{
  background:#fff;
  border:1px solid var(--border-soft);
  border-radius:28px;
  padding:46px;
  box-shadow:0 20px 60px rgba(68,45,28,0.06);
}
.policy-card h2{
  font-size:38px;
  color:var(--cocoa);
  margin:16px 0 22px;
}
.policy-card h3{
  font-size:22px;
  color:var(--wine);
  margin:34px 0 12px;
}
.policy-card p{
  color:var(--text-muted);
  line-height:1.9;
  margin-bottom:14px;
}
@media(max-width:768px){
  .policy-card{
    padding:30px 22px;
  }
  .policy-card h2{
    font-size:30px;
  }
}

.contact-section{
  padding:60px 20px;
  background:var(--bg-light);
}
.contact-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:34px;
}
.contact-info-card,
.contact-form-card{
  background:#fff;
  border:1px solid var(--border-soft);
  border-radius:28px;
  padding:40px;
  box-shadow:0 20px 60px rgba(68,45,28,0.06);
}
.contact-info-card h2{
  font-size:42px;
  color:var(--cocoa);
  margin:18px 0;
}
.contact-info-card p{
  color:var(--text-muted);
  line-height:1.8;
}
.contact-info-list{
  margin-top:34px;
  display:flex;
  flex-direction:column;
  gap:20px;
}
.contact-info-item{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:18px;
  border-radius:18px;
  background:var(--bg-soft);
}
.contact-info-item i{
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--wine);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}
.contact-info-item span{
  display:block;
  color:var(--cocoa);
  font-weight:700;
  margin-bottom:6px;
}
.contact-info-item a,
.contact-info-item p{
  color:var(--text-muted);
  font-size:14px;
}
.contact-form-card h3{
  font-size:30px;
  color:var(--cocoa);
  margin-bottom:24px;
}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.contact-form-card .form-group{
  margin-bottom:18px;
}
.contact-form-card label{
  display:block;
  margin-bottom:8px;
  color:var(--cocoa);
  font-size:14px;
  font-weight:600;
}
.contact-form-card input,
.contact-form-card textarea{
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid var(--border-soft);
  background:#fff;
  outline:none;
}
.contact-form-card textarea{
  resize:none;
}
.contact-submit{
  width:100%;
  height:54px;
  border:none;
  border-radius:14px;
  background:var(--wine);
  color:#fff;
  font-weight:700;
  cursor:pointer;
}
.contact-submit:hover{
  background:var(--cocoa);
}

.contact-map-section{
  padding:0 20px 80px;
  background:var(--bg-light);
}
.contact-map-container{
  max-width:1300px;
  margin:auto;
  border-radius:28px;
  overflow:hidden;
  border:1px solid var(--border-soft);
}
.contact-map-container iframe{
  width:100%;
  height:420px;
  border:0;
  display:block;
}
@media(max-width:900px){
  .contact-container{
    grid-template-columns:1fr;
  }
  .contact-grid{
    grid-template-columns:1fr;
  }
  .contact-info-card h2{
    font-size:32px;
  }
}

.message-box.info{
  background:#84592B;
}

.blogs-page-section{
  padding:60px 20px;
  background:var(--bg-light);
}
.blogs-container{
  max-width:1300px;
  margin:auto;
}
.featured-blog-card{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  overflow:hidden;
  border-radius:30px;
  background:#fff;
  border:1px solid var(--border-soft);
  margin-bottom:40px;
}
.featured-blog-card img{
  width:100%;
  height:420px;
  object-fit:cover;
}
.featured-blog-content{
  padding:46px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.featured-blog-content span,
.blog-card-content span{
  color:var(--caramel);
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
}
.featured-blog-content h2{
  font-size:38px;
  color:var(--cocoa);
  margin:16px 0;
}
.featured-blog-content p,
.blog-card-content p{
  color:var(--text-muted);
  line-height:1.8;
}
.blogs-layout{
  display:grid;
  grid-template-columns:1fr 280px;
  gap:34px;
}
.blogs-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:26px;
}
.blog-card{
  background:#fff;
  border:1px solid var(--border-soft);
  border-radius:24px;
  overflow:hidden;
  transition:.35s ease;
}
.blog-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(68,45,28,0.1);
}
.blog-card-image img{
  width:100%;
  height:260px;
  object-fit:cover;
}
.blog-card-content{
  padding:24px;
}
.blog-card-content h3{
  color:var(--cocoa);
  font-size:22px;
  margin:12px 0;
}
.blog-card-content small{
  display:block;
  margin-top:16px;
  color:var(--text-muted);
}
.blog-sidebar{
  position:sticky;
  top:110px;
  height:max-content;
}
@media(max-width:900px){
  .featured-blog-card,
  .blogs-layout{
    grid-template-columns:1fr;
  }
  .blogs-grid{
    grid-template-columns:1fr;
  }
  .blog-sidebar{
    position:static;
  }
}

.blog-detail-hero{
  position:relative;
  height:620px;
  overflow:hidden;
}
.blog-detail-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.blog-detail-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.82),
      rgba(0,0,0,0.25)
    );
}
.blog-detail-hero-content{
  position:absolute;
  left:50%;
  bottom:70px;
  transform:translateX(-50%);
  width:100%;
  max-width:1100px;
  padding:0 20px;
  z-index:2;
}
.blog-category{
  display:inline-flex;
  padding:8px 18px;
  border-radius:999px;
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(10px);
  color:#fff;
  font-size:13px;
  margin-bottom:22px;
}
.blog-detail-hero-content h1{
  max-width:850px;
  font-size:64px;
  line-height:1.08;
  color:#fff;
  margin-bottom:20px;
}
.blog-meta{
  display:flex;
  align-items:center;
  gap:12px;
  color:rgba(255,255,255,0.75);
  font-size:14px;
}

.blog-detail-section{
  padding:60px 20px;
  background:var(--bg-light);
}
.blog-detail-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 320px;
  gap:34px;
}
.blog-content-card,
.blog-sidebar-card{
  background:#fff;
  border:1px solid var(--border-soft);
  border-radius:28px;
  padding:40px;
}
.blog-intro{
  font-size:22px;
  line-height:1.8;
  color:var(--cocoa);
  margin-bottom:34px;
  font-weight:500;
}
.blog-content{
  color:var(--text-muted);
  line-height:2;
  font-size:16px;
}
.blog-content h2,
.blog-content h3{
  color:var(--cocoa);
  margin:40px 0 18px;
}
.blog-content img{
  width:100%;
  border-radius:22px;
  margin:30px 0;
}
.blog-content ul,
.blog-content ol{
  padding-left:24px;
  margin:20px 0;
}
.blog-content blockquote{
  margin:34px 0;
  padding:24px 28px;
  border-left:4px solid var(--gold);
  background:var(--bg-soft);
  border-radius:18px;
  color:var(--cocoa);
}
.blog-detail-sidebar{
  position:sticky;
  top:110px;
  height:max-content;
}
.blog-sidebar-card h3{
  color:var(--cocoa);
  margin-bottom:26px;
}
.latest-blog-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.latest-blog-item{
  display:flex;
  gap:14px;
  align-items:center;
}
.latest-blog-item img{
  width:90px;
  height:90px;
  object-fit:cover;
  border-radius:16px;
}
.latest-blog-item h4{
  color:var(--cocoa);
  font-size:15px;
  line-height:1.5;
  margin-bottom:6px;
}
.latest-blog-item span{
  color:var(--text-muted);
  font-size:13px;
}
.related-blogs-section{
  padding:0 20px 100px;
  background:var(--bg-light);
}
.related-blogs-container{
  max-width:1300px;
  margin:auto;
}
@media(max-width:1024px){
  .blog-detail-container{
    grid-template-columns:1fr;
  }
  .blog-detail-sidebar{
    position:static;
  }
  .blog-detail-hero-content h1{
    font-size:48px;
  }
}
@media(max-width:768px){
  .blog-detail-hero{
    height:520px;
  }
  .blog-detail-hero-content h1{
    font-size:34px;
  }
  .blog-content-card,
  .blog-sidebar-card{
    padding:28px 22px;
  }
  .blog-intro{
    font-size:18px;
  }
}

.web-error-section{
  min-height:72vh;
  padding:90px 20px;
  background:
    radial-gradient(circle at top right, rgba(232,209,167,.35), transparent 32%),
    linear-gradient(135deg, #fffdf9, var(--bg-soft));
  display:flex;
  align-items:center;
  justify-content:center;
}
.web-error-card{
  max-width:760px;
  width:100%;
  text-align:center;
  background:#fff;
  border:1px solid var(--border-soft);
  border-radius:34px;
  padding:70px 44px;
  box-shadow:0 24px 70px rgba(68,45,28,.08);
}
.web-error-code{
  display:block;
  font-size:120px;
  line-height:1;
  font-weight:800;
  color:rgba(116,48,20,.12);
  margin-bottom:18px;
}
.web-error-card h1{
  font-size:44px;
  color:var(--cocoa);
  margin-bottom:16px;
}
.web-error-card p{
  max-width:560px;
  margin:0 auto 34px;
  color:var(--text-muted);
  line-height:1.8;
}
.web-error-actions{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}
.web-error-btn{
  min-width:190px;
  height:54px;
  border-radius:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  transition:.3s ease;
}
.web-error-btn.primary{
  background:var(--wine);
  color:#fff;
}
.web-error-btn.primary:hover{
  background:var(--cocoa);
}
.web-error-btn.secondary{
  border:1px solid var(--border-soft);
  color:var(--cocoa);
}
.web-error-btn.secondary:hover{
  border-color:var(--olive);
  color:var(--olive);
}
@media(max-width:768px){
  .web-error-section{
    padding:70px 16px;
  }
  .web-error-card{
    padding:46px 24px;
  }
  .web-error-code{
    font-size:82px;
  }
  .web-error-card h1{
    font-size:32px;
  }
  .web-error-btn{
    width:100%;
  }
}

