:root {
  --bg: #fffaf6;
  --surface: #ffffff;
  --beige: #efe1d2;
  --champagne: #f4e6d4;
  --powder: #f7dfe6;
  --gold: #c8a96b;
  --gold-soft: #d8bd86;
  --text: #2f2a26;
  --muted: #7f7369;
  --line: #eadfce;
  --shadow-soft: 0 10px 30px rgba(69, 47, 22, 0.08);
  --shadow-hover: 0 18px 40px rgba(69, 47, 22, 0.14);
  --radius-xl: 1.35rem;
  --radius-lg: 1rem;
  --radius-sm: 0.75rem;
  --transition: all 0.35s ease;
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: radial-gradient(circle at 10% 10%, #fffaf8 0%, #fff6f1 30%, var(--bg) 70%);
  color: var(--text);
  line-height: 1.7;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: radial-gradient(rgba(131, 96, 40, 0.04) 0.6px, transparent 0.6px);
  background-size: 2px 2px;
  opacity: 0.35;
}

body.has-announcement {
  padding-top: 38px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  height: auto;
}

.section-space {
  padding: 5rem 0;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
}

.text-muted-soft {
  color: var(--muted);
}

.custom-navbar {
  background: rgba(255, 250, 246, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 169, 107, 0.16);
  transition: box-shadow 0.35s ease, background-color 0.35s ease, border-color 0.35s ease;
}

body.has-announcement .custom-navbar {
  top: 38px;
}

body.hide-announcement .custom-navbar {
  top: 0;
}

.custom-navbar.is-scrolled {
  background: rgba(255, 252, 249, 0.96);
  border-bottom-color: rgba(200, 169, 107, 0.3);
  box-shadow: 0 8px 30px rgba(67, 42, 18, 0.1);
}

.brand-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.nav-link {
  font-weight: 600;
  color: #5c5148;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0.4rem;
  right: 0.4rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #d4b77d, transparent);
  transform: scaleX(0);
  transition: transform 0.32s ease;
  transform-origin: center;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  background: var(--surface);
}

.icon-btn:hover,
.icon-btn.active {
  border-color: var(--gold-soft);
  color: var(--gold);
  box-shadow: 0 8px 18px rgba(102, 72, 34, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 9rem;
  padding-bottom: 5rem;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.hero::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(247, 223, 230, 0.8) 0%, rgba(247, 223, 230, 0) 72%);
  top: -130px;
  left: -110px;
}

.hero::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(239, 225, 210, 0.8) 0%, rgba(239, 225, 210, 0) 72%);
  right: -140px;
  bottom: -180px;
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-image {
  object-fit: cover;
  aspect-ratio: 5 / 4;
  max-height: 500px;
}

.btn-luxury {
  background: linear-gradient(135deg, #c9a766, #dec593);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.78rem 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(201, 167, 102, 0.34);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-luxury:hover {
  color: #fff;
  box-shadow: 0 10px 20px rgba(201, 167, 102, 0.34);
  filter: saturate(1.04);
}

.btn-outline-luxury {
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  color: var(--gold);
  padding: 0.72rem 1.4rem;
  font-weight: 700;
}

.btn-outline-luxury:hover {
  background: var(--champagne);
  color: #8f6d35;
}

.soft-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
}

.soft-card:hover {
  box-shadow: 0 14px 28px rgba(69, 47, 22, 0.11);
}

.category-card {
  position: relative;
  overflow: hidden;
}

.category-card img {
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.06);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 18, 10, 0.6) 10%, rgba(26, 18, 10, 0.04) 60%);
  display: flex;
  align-items: end;
  padding: 1.2rem;
  color: #fff;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  height: 100%;
  transition: var(--transition);
  will-change: transform;
}

.product-card:hover {
  box-shadow: 0 14px 28px rgba(69, 47, 22, 0.11);
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
}

.product-image-wrap img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.05);
}

.product-card .quick-actions {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.product-card:hover .quick-actions {
  opacity: 1;
  transform: translateY(0);
}

.badge-soft {
  background: rgba(255, 255, 255, 0.84);
  color: #73572f;
  border: 1px solid #e4d2b3;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-current {
  font-weight: 800;
  font-size: 1.15rem;
}

.price-old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.9rem;
}

.wishlist-btn {
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  z-index: 2;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 22px rgba(38, 27, 14, 0.12);
  color: #7e6d5a;
}

.wishlist-btn.active {
  color: #d96f8d;
}

.trust-badge {
  border: 1px dashed #d7b978;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #fff 0%, #fff8ef 100%);
}

.story-block {
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.97), rgba(247, 234, 223, 0.9));
  border: 1px solid var(--line);
}

.review-card {
  position: relative;
}

.review-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: rgba(200, 169, 107, 0.18);
  position: absolute;
  top: -16px;
  left: 12px;
}

.instagram-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.instagram-tile img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.instagram-tile:hover img {
  transform: scale(1.08);
}

.instagram-tile::after {
  content: '\f437';
  font-family: 'bootstrap-icons';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(47, 33, 19, 0.34);
  color: #fff;
  font-size: 1.6rem;
  opacity: 0;
  transition: var(--transition);
}

.instagram-tile:hover::after {
  opacity: 1;
}

.newsletter-box {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(120deg, #fff, #fdf4f0);
  box-shadow: var(--shadow-soft);
}

.form-control,
.form-select {
  border: 1px solid #e6d7c8;
  border-radius: 0.85rem;
  padding: 0.72rem 0.95rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 0.18rem rgba(201, 167, 102, 0.2);
}

.footer {
  background: linear-gradient(180deg, #f9f0e8, #f8ece6);
  border-top: 1px solid var(--line);
}

.footer h6 {
  font-weight: 800;
  letter-spacing: 0.03em;
}

.breadcrumb {
  --bs-breadcrumb-divider: '>'; 
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #e8d9c8;
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  background: #fff;
  font-size: 0.88rem;
  transition: var(--transition);
  cursor: pointer;
}

.filter-chip.active {
  border-color: var(--gold-soft);
  background: #fdf5ea;
}

.pagination-luxury {
  gap: 0.45rem;
}

.pagination-luxury .page-link {
  border: 1px solid #e8d8c3;
  color: #7a6750;
  border-radius: 999px;
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.95rem;
  background: #fff;
  box-shadow: 0 6px 16px rgba(60, 41, 19, 0.05);
  font-weight: 700;
  transition: var(--transition);
}

.pagination-luxury .page-link:hover {
  border-color: #d7b777;
  background: #fff8ef;
  color: #9e7338;
}

.pagination-luxury .page-item.active .page-link {
  color: #fff;
  border-color: #cfad72;
  background: linear-gradient(135deg, #c8a968, #ddc48f);
  box-shadow: 0 10px 20px rgba(181, 143, 68, 0.28);
}

.pagination-luxury .page-item.disabled .page-link {
  color: #b7a899;
  border-color: #efe4d7;
  background: #fffdf9;
  box-shadow: none;
}

.pagination-luxury .page-link:focus {
  box-shadow: 0 0 0 0.2rem rgba(201, 167, 102, 0.2);
}

.sticky-summary {
  position: sticky;
  top: 105px;
}

.product-gallery-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
}

.product-gallery-main img {
  width: 100%;
  height: clamp(340px, 46vw, 460px);
  object-fit: cover;
  transition: transform 0.28s ease;
}

.product-gallery-main.zoom img {
  transform: scale(1.18);
}

.thumbnail {
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  overflow: hidden;
  cursor: pointer;
}

.thumbnail.active {
  border-color: var(--gold-soft);
}

.thumbnail img {
  width: 100%;
  height: 90px;
  object-fit: cover;
}

.thumbnail:hover {
  border-color: #d8bd86;
}

.quantity-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e7d8c9;
  border-radius: 999px;
  overflow: hidden;
}

.quantity-box button {
  border: none;
  width: 38px;
  height: 38px;
  background: #fff;
  font-weight: 700;
  transition: var(--transition);
}

.quantity-box button:hover {
  background: #fcf4e8;
  color: #9c7439;
}

.quantity-box input {
  border: none;
  width: 44px;
  text-align: center;
  font-weight: 700;
}

.timeline-list li {
  margin-bottom: 0.9rem;
}

.faq-item {
  border: 1px solid #e8dccf;
  border-radius: 0.9rem;
  overflow: hidden;
}

.faq-item .btn {
  font-weight: 600;
}

.blog-card img,
.blog-cover {
  width: 100%;
  object-fit: cover;
}

.blog-card img {
  height: 240px;
}

.blog-cover {
  height: clamp(260px, 36vw, 430px);
  border-radius: var(--radius-xl);
}

.split-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.table.cart-table th,
.table.cart-table td {
  vertical-align: middle;
}

.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1060;
  background: linear-gradient(90deg, #d4b57a, #e7cd9a, #d4b57a);
  color: #473015;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.42rem 0.9rem;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.announcement-bar.is-hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.announcement-close {
  border: none;
  background: transparent;
  color: #5a3d1f;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.1rem 0.25rem;
  border-radius: 0.3rem;
}

.announcement-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1070;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #b68d4b, #e7cb95);
}

.luxury-strip {
  border-top: 1px solid rgba(200, 169, 107, 0.24);
  border-bottom: 1px solid rgba(200, 169, 107, 0.24);
  background: linear-gradient(90deg, #fff6ee, #fffbf6);
}

.luxury-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 0.35rem;
  color: #79674f;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.atelier-flow {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, #fff, #fdf4ec);
  position: relative;
  overflow: hidden;
}

.atelier-flow::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -100px;
  background: radial-gradient(circle, rgba(244, 230, 212, 0.75) 0%, rgba(244, 230, 212, 0) 72%);
}

.atelier-step {
  border: 1px solid #eddcc8;
  border-radius: 1rem;
  background: #fffdf9;
  padding: 1.1rem;
  height: 100%;
}

.atelier-step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cfad71, #e8cf9c);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.editorial-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(247, 223, 230, 0.32));
  border: 1px solid var(--line);
}

.editorial-card img {
  min-height: 320px;
  object-fit: cover;
}

.checkout-stepper {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0.35rem;
}

.checkout-stepper .step {
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font-size: 0.84rem;
  color: #8b7d70;
  font-weight: 700;
}

.checkout-stepper .step.active {
  background: #fff5e8;
  color: #9e7338;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-luxury {
  border: 1px solid #ead9be;
  background: #fffdf8;
}

@media (max-width: 991px) {
  .section-space {
    padding: 4rem 0;
  }

  .product-gallery-main img {
    height: clamp(300px, 55vw, 380px);
  }

  .hero {
    padding-top: 7.5rem;
  }

  body.has-announcement {
    padding-top: 34px;
  }

  body.has-announcement .custom-navbar {
    top: 34px;
  }
}

@media (max-width: 575px) {
  .hero-card {
    border-radius: 1rem;
  }

  .hero-image {
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .section-space {
    padding: 3.2rem 0;
  }
}
