/* ==================== home ==================== */
/* ===========================
   Base & Reset
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #1e1e1e;
  --white: #ffffff;
  --cream: #f6efdf;
  --cream-soft: #f6efdf;
  --gold: #d0a85b;
  --gold-bg: rgba(208, 168, 91, 0.18);
  --text-muted: #000000;
  --font-heading: "Kalnia", serif;
  --font-body: "Inter", sans-serif;
  --font-des: "Kalnia", serif;
  --container-pad: 100px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  gap:20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 1.5px solid var(--black);
}
.btn-dark:hover {
  background: transparent;
  color: var(--black);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  border: 1.5px solid var(--white) !important;
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
}

.btn-outline-sm {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.btn-outline-sm:hover {
  background: var(--white);
  color: var(--black);
}
.btn-gold {
  background-color: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
}
.btn-gold:hover {
  background: #b3873c;
  border-color: var(--gold-dark);
}

.btn-outline-gold {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

/* ===========================
   Marquee Bar
   =========================== */
.marquee-bar {
  background: #000;
  color: var(--white);
  height: 37px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  padding: 0 40px;
  text-transform: uppercase;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===========================
   Navigation
   =========================== */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px var(--container-pad);
  background: transparent;
  transition:
    background var(--transition),
    box-shadow var(--transition);
}

.nav-left {
  justify-self: start;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  justify-self: center;
}

.logo-icon {
  width: 107px;
  height: 90px;
  /* object-fit: contain;
  filter: brightness(0) invert(1); */
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  gap: 34px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 4px;
  transition: opacity var(--transition);
  font-family: var(--font-des);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}

.icon-btn {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: opacity var(--transition);
}
.icon-btn:hover {
  opacity: 0.7;
}

.cart-btn {
  position: relative;
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}

/* ===========================
   Page Hero / Breadcrumb
   =========================== */
.page-hero {
  position: relative;
  height: 480px;
  background: url("../assets/images/page-hero-bg.jpg") center 28% / cover
    no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}
.page-hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumb a {
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb .current {
  color: rgba(255, 255, 255, 0.6);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  position: relative;
}
.hero-slide.slick-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex !important;
  flex-direction: column;
  overflow: hidden;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.099);
  z-index: 0;
}

.navbar {
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 5;
  margin-top: auto;
  padding: 0 var(--container-pad) 80px;
  max-width: 700px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 35px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-family: var(--font-des);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 344px;
}

.slider-thumps {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  padding: 0px var(--container-pad);
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 600px;
  z-index: 1;
}
.slider-thump {
  width: 110px;
  height: 110px;
  border: 1px solid #fff;
  cursor: pointer;
  transition: 0.3s;
}
.slider-thump.active {
  border: 2px solid #fff;
  transform: scale(1.1);
}
.slider-thump img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================
   Section Headers
   =========================== */
.section-header {
  padding: 80px var(--container-pad) 0px;
  text-align: center;
  background: var(--white);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.section-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  font-family: var(--font-des);
}

/* ================================
   Explore Collections
   ================================ */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 0px;
  margin-bottom: 1.5rem;
}

.collection-card {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
  border-radius: 4px;
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  margin-inline: 1rem;
}

.page-home .collections-grid {
  padding: 50px var(--container-pad) 100px;
  overflow: hidden;
}
.page-home .collection-card {
  height: 400px;
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s;
}

.collection-card:hover .collection-overlay {
  background: rgba(0, 0, 0, 0.36);
}

.collection-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-kalnia);
  font-size: clamp(1.25rem, 2.8vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
  text-align: center;
}

/* Slider Dots */

.collection-slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding-top: 2rem !important;
  bottom: 20px !important;
}
.collection-slider .slick-dots li button::before {
  display: none !important;
}
.collection-slider .slick-dots li button {
  background-color: #e7d3ab !important;
  border-radius: 50%;
  width: 6px !important;
  height: 8px !important;
}
.collection-slider .slick-dots li {
  margin: 0px !important;
}

.collection-slider .slick-dots .slick-active button {
  background-color: #d0a95b !important;
}

/* ===========================
   Products Section
   =========================== */
.products-section {
  padding: 50px var(--container-pad) 100px;
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.products-grid-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}

.product-image-wrap {
  position: relative;
  height: 387px;
  overflow: hidden;
  background: #f9f9f9;
}

.product-image-wrap img {
  transition: transform 0.5s ease;
}

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

.product-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
}

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

.add-to-cart-btn {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.add-to-cart-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.4;
}

.product-price {
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  font-family: var(--font-body);
}

/* ===========================
   More Products Section
   =========================== */
.more-products-section {
  padding: 0 var(--container-pad) 100px;
  background: var(--white);
}

.perfect-header {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  justify-content: flex-end;
  gap: 30px;
  padding: 100px 0px 50px;
}
.section-desc {
  font-family: var(--font-des);
  color: #000;
}
.perfect-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* ===========================
   Full-Width Promo Banner
   =========================== */
.promo-banner {
  position: relative;
  height: 784px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.promo-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.promo-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 600px;
  padding: 0 40px;
}

.promo-title {
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.5px;
}

.promo-text {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 460px;
  font-family: var(--font-des);
}

.promo-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===========================
   Blog Section
   =========================== */
.blog-header {
  padding: 100px var(--container-pad) 0px;
  text-align: center;
  background: #f6efe1;
}

.blog-section {
  background: #f6efe1;
  padding: 0 var(--container-pad) 80px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-image-wrap {
  height: 240px;
  overflow: hidden;
  background: #eee;
}

.blog-image-wrap img {
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image-wrap img {
  transform: scale(1.04);
}

.blog-body {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-date {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.5;
}

.blog-excerpt {
  font-size: 13px;
  font-weight: 300;
  color: #666;
  line-height: 1.8;
}

.blog-read-more {
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
  margin-top: 4px;
}
.blog-read-more:hover {
  gap: 12px;
}

/* ===========================
   Info Bar
   =========================== */
.info-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 40px var(--container-pad);
  background: var(--white);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-right: 1px solid #eee;
  padding-right: 30px;
}
.info-item:last-child {
  border-right: none;
}
.info-item:not(:first-child) {
  padding-left: 30px;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--black);
}

.info-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.info-value {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--black);
  padding: 60px var(--container-pad);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: #ffffff;
}
.footer-contact svg {
  color: var(--gold);
  flex-shrink: 0;
}

.footer-map {
  display: block;
  width: 100%;
  height: 150px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3);
}

.footer-logo-icon {
  width: 103px;
  height: 106px;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 3px;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  font-size: 13px;
  font-weight: 300;
  color: #ffffff;
  transition: color var(--transition);
}
.footer-links-col a:hover {
  color: var(--gold);
}

.footer-newsletter-text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: border var(--transition);
}
.footer-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.footer-input:focus {
  border-color: var(--gold);
}

/* ===========================
   Footer Bottom
   =========================== */
.footer-bottom {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px var(--container-pad) 10px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: clamp(60px, 16vw, 220px);
  font-weight: 700;
  color: #c1ab70;
  letter-spacing: clamp(4px, 2vw, 24px);
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}

/* ===========================
   Cart Sidebar
   =========================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.15);
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid #eee;
}

.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
}

.close-cart {
  font-size: 20px;
  color: #888;
  transition: color var(--transition);
}
.close-cart:hover {
  color: var(--black);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-empty {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 40px;
}

.cart-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cart-item-img {
  width: 70px;
  height: 90px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f5f5f5;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-size: 13px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

.cart-item-price {
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
}

.cart-item-remove {
  font-size: 12px;
  color: #aaa;
  transition: color var(--transition);
  margin-top: 4px;
}
.cart-item-remove:hover {
  color: #e00;
}

.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}

/* ===========================
   Scroll Reveal Animation
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

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

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1200px) {
  :root {
    --container-pad: 60px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .collections-grid {
    flex-direction: column;
  }
  .collection-card {
    height: 280px;
  }
  .slick-slide.collection-card {
    height: 440px;
  }
  .info-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --container-pad: 32px;
  }

  .hero-content {
    padding: 0 var(--container-pad) 200px;
  }
  .slider-thumps {
    width: 100%;
    justify-content: flex-start;
    bottom: 50px;
  }
  .slider-thump {
    width: 95px;
    height: 95px;
  }

  .hero-title {
    font-size: 44px;
  }
  .section-title {
    font-size: 32px;
  }
  .promo-title {
    font-size: 40px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .perfect-header {
    grid-template-columns: 1fr;
  }
  .perfect-cta {
    justify-content: start;
  }

  .products-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .logo-icon {
    width: 60px !important;
    height: auto;
  }
}

@media (max-width: 600px) {
  :root {
    --container-pad: 20px;
  }

  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 13px;
  }
  .promo-title {
    font-size: 28px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .products-grid-3 {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .product-image-wrap {
    height: 260px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
  .info-bar {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .info-item {
    border-right: none;
    padding-right: 0;
  }
  .info-item:not(:first-child) {
    padding-left: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-brand-name {
    font-size: 36px;
    letter-spacing: 10px;
  }
  .promo-btns {
    flex-direction: column;
    align-items: center;
  }

  .collections-grid {
    padding-bottom: 60px;
  }
  .page-home .collection-card {
    margin-inline: 0.5rem;
  }

  .cart-sidebar {
    width: 100%;
  }
}

/* Mobile nav open */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 200;
  width: 100%;
}

.nav-links.open a {
  font-size: 22px;
  letter-spacing: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ==================== collections ==================== */

/* ===========================
   Collections Grid
   =========================== */

.page-collections .collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 80px var(--container-pad) 100px;
}
.page-collections .collection-card {
  margin: 0;
  height: 500px !important;
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
  background: #f2f2f2;
}

.collection-card img {
  transition: transform 0.6s ease;
  object-position: top;
}
.collection-card:hover img {
  transform: scale(1.06);
}

.collection-card:hover .collection-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
}
.collection-label {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 1px;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* ===========================
   Cart Sidebar
   =========================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.15);
}
.cart-sidebar.open {
  transform: translateX(0);
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid #eee;
}
.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
}
.close-cart {
  font-size: 20px;
  color: #888;
  transition: color var(--transition);
}
.close-cart:hover {
  color: var(--black);
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart-empty {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 40px;
}
.cart-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cart-item-img {
  width: 70px;
  height: 90px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f5f5f5;
}
.cart-item-details {
  flex: 1;
}
.cart-item-name {
  font-size: 13px;
  font-family: var(--font-heading);
  margin-bottom: 6px;
}
.cart-item-price {
  font-size: 12px;
  font-weight: 500;
}
.cart-item-remove {
  font-size: 12px;
  color: #aaa;
  margin-top: 4px;
  transition: color var(--transition);
}
.cart-item-remove:hover {
  color: #e00;
}
.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
}

/* ===========================
   Reveal
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1100px) {
  :root {
    --container-pad: 48px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 900px) {
  .navbar {
    grid-template-columns: 1fr auto;
  }
  .nav-left {
    display: none;
  }
  .nav-logo {
    justify-self: start;
  }
  .hamburger {
    display: flex;
  }
  .page-hero {
    height: 380px;
  }
  .page-hero-title {
    font-size: 36px;
  }
  .page-collections .collections-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .page-hero {
    height: 300px;
  }
  .page-hero-title {
    font-size: 28px;
  }
  .page-collections .collections-grid {
    grid-template-columns: 1fr;
  }

  .collection-card {
    height: 400px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cart-sidebar {
    width: 100%;
  }
}

/* Mobile nav open */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--black);
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 200;
}
.nav-links.open a {
  font-size: 22px;
  letter-spacing: 3px;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ==================== blog ==================== */
/* ===========================
   Base & Reset
   =========================== */

/* ===========================
   Blog Grid
   =========================== */
.blog-section {
  background: var(--cream-soft);
  padding: 50px var(--container-pad);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 30px;
  max-width: 1280px;
  margin: 0 auto;
}
.blog-card {
  display: flex;
  flex-direction: column;
}
.blog-image-wrap {
  display: block;
  height: 230px;
  overflow: hidden;
  background: #e7ddc8;
}
.blog-image-wrap img {
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-image-wrap img {
  transform: scale(1.05);
}
.blog-body {
  padding: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-date {
  font-size: 11px;
  font-weight: 400;
  color: #9a8f78;
  letter-spacing: 0.5px;
}
.blog-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.45;
}
.blog-excerpt {
  font-size: 12.5px;
  font-weight: 300;
  color: #6b6b6b;
  line-height: 1.85;
}
.blog-read-more {
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  border-bottom: 1px solid var(--black);
  padding-bottom: 3px;
  width: fit-content;
  transition:
    gap var(--transition),
    color var(--transition),
    border-color var(--transition);
}
.blog-read-more span {
  transition: transform var(--transition);
}
.blog-read-more:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}
.blog-read-more:hover span {
  transform: translateX(4px);
}

/* ===========================
   Promo Banner
   =========================== */
.promo-banner {
  position: relative;
  min-height: 560px;

  display: flex;
  align-items: center;
}
.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.5) 55%,
    rgba(0, 0, 0, 0.2) 100%
  );
}
.promo-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--container-pad);
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  margin: 0 auto;
}
.promo-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
}
.promo-text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 440px;
}
.promo-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===========================
   Cart Sidebar
   =========================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.15);
}
.cart-sidebar.open {
  transform: translateX(0);
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid #eee;
}
.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
}
.close-cart {
  font-size: 20px;
  color: #888;
  transition: color var(--transition);
}
.close-cart:hover {
  color: var(--black);
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart-empty {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 40px;
}
.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1100px) {
  :root {
    --container-pad: 48px;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 900px) {
  :root {
    --container-pad: 32px;
  }
  .navbar {
    grid-template-columns: 1fr auto;
  }
  .nav-left {
    display: none;
  }
  .nav-logo {
    justify-self: start;
  }
  .hamburger {
    display: flex;
  }
  .page-hero {
    height: 320px;
  }
  .page-hero-title {
    font-size: 36px;
  }
  .promo-title {
    font-size: 38px;
  }
}
@media (max-width: 600px) {
  :root {
    --container-pad: 20px;
  }
  .page-hero {
    height: 280px;
  }
  .page-hero-title {
    font-size: 28px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .promo-title {
    font-size: 30px;
  }
  .promo-btns {
    flex-direction: column;
    align-items: center;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cart-sidebar {
    width: 100%;
  }
}

/* Mobile nav open */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--black);
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 200;
}
.nav-links.open a {
  font-size: 22px;
  letter-spacing: 3px;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ==================== blog-detail ==================== */

/* ===========================
   Post / Article
   =========================== */
.post {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px var(--container-pad) 40px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--gold-dark);
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
.post-dot {
  color: #ccc;
}
.post-cat,
.post-read {
  color: var(--text-muted);
}
.post-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 30px;
}
.post-hero-image {
  width: 100%;
  height: 440px;
  overflow: hidden;
  margin-bottom: 40px;
  background: #f0e9d8;
}
.post-hero-image img {
  transition: transform 0.6s ease;
}
.post-hero-image:hover img {
  transform: scale(1.03);
}

.post-body p {
  font-size: 15px;
  font-weight: 300;
  color: #555;
  line-height: 2;
  margin-bottom: 24px;
}
.post-quote {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--black);
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 28px;
  margin: 36px 0;
}
.post-subtitle {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  margin: 12px 0 18px;
}
.post-inline-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0 36px;
}
.post-inline-images img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #eee;
}
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  font-size: 12px;
  font-weight: 400;
  color: #555;
  background: var(--cream);
  padding: 7px 16px;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
}
.tag:hover {
  background: var(--gold);
  color: var(--white);
}
.post-share {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.post-share a {
  width: 34px;
  height: 34px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: all var(--transition);
}
.post-share a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ===========================
   Related Articles
   =========================== */
.related-blogs {
  background: var(--cream-soft);
  padding: 70px var(--container-pad) 80px;
}
.related-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 44px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  display: flex;
  flex-direction: column;
}
.blog-image-wrap {
  display: block;
  height: 220px;
  overflow: hidden;
  background: #e7ddc8;
}
.blog-image-wrap img {
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-image-wrap img {
  transform: scale(1.05);
}
.blog-body {
  padding: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-date {
  font-size: 11px;
  font-weight: 400;
  color: #9a8f78;
  letter-spacing: 0.5px;
}
.blog-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}
.blog-read-more {
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--black);
  padding-bottom: 3px;
  width: fit-content;
  transition:
    gap var(--transition),
    color var(--transition),
    border-color var(--transition);
}
.blog-read-more span {
  transition: transform var(--transition);
}
.blog-read-more:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}
.blog-read-more:hover span {
  transform: translateX(4px);
}

/* ===========================
   Cart Sidebar
   =========================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.15);
}
.cart-sidebar.open {
  transform: translateX(0);
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid #eee;
}
.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
}
.close-cart {
  font-size: 20px;
  color: #888;
  transition: color var(--transition);
}
.close-cart:hover {
  color: var(--black);
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart-empty {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 40px;
}
.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
}

/* ===========================
   Reveal
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1100px) {
  :root {
    --container-pad: 48px;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 900px) {
  :root {
    --container-pad: 32px;
  }
  .navbar {
    grid-template-columns: 1fr auto;
  }
  .nav-left {
    display: none;
  }
  .nav-logo {
    justify-self: start;
  }
  .hamburger {
    display: flex;
    z-index: 1000;
  }
  .page-hero {
    height: 320px;
  }
  .page-hero-title {
    font-size: 34px;
  }
  .post-title {
    font-size: 30px;
  }
  .post-hero-image {
    height: 340px;
  }
}
@media (max-width: 600px) {
  :root {
    --container-pad: 20px;
  }
  .page-hero {
    height: 280px;
  }
  .page-hero-title {
    font-size: 26px;
  }
  .post-title {
    font-size: 25px;
  }
  .post-hero-image {
    height: 240px;
  }
  .post-inline-images {
    grid-template-columns: 1fr;
  }
  .post-inline-images img {
    height: 260px;
  }
  .post-quote {
    font-size: 18px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cart-sidebar {
    width: 100%;
  }
  .post-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile nav open */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--black);
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 200;
}
.nav-links.open a {
  font-size: 22px;
  letter-spacing: 3px;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ==================== about ==================== */

/* ===========================
   Our Story
   =========================== */
.our-story {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  padding: 80px var(--container-pad);
  align-items: start;
}
.eyebrow {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}
.story-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 22px;
}
.story-text p {
  font-size: 16px;
  font-weight: 300;
  color: #000000;
  line-height: 2;
}

.story-image {
  height: 520px;
  overflow: hidden;
}
.story-image img {
  transition: transform 0.6s ease;
}
.story-image:hover img {
  transform: scale(1.04);
}

/* ===========================
   Mission / Vision
   =========================== */
.mv-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 0 var(--container-pad) 90px;
  align-items: stretch;
}
.mv-card {
  background: var(--cream);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}
.mv-icon {
  width: 60px;
  height: 60px;
}
.mv-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 5px;
}
.mv-text {
  font-size: 16px;
  font-weight: 300;
  color: #000000;
  line-height: 1.95;
}
.mv-image {
  min-height: 490px;
  overflow: hidden;
}
.mv-image img {
  transition: transform 0.6s ease;
}
.mv-image:hover img {
  transform: scale(1.05);
}

/* ===========================
   About Founder
   =========================== */
.founder-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  padding: 20px var(--container-pad) 100px;
  align-items: center;
}
.founder-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.founder-image {
  width: 360px;
  height: 310px;
  overflow: hidden;
  background: #eee;
}

.founder-image img {
  transition: transform 0.5s ease;
  object-position: top;
}
.founder-card:hover .founder-image img {
  transform: scale(1.05);
}
.founder-name-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.founder-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
}
.founder-role {
  font-size: 13px;
  color: var(--text-muted);
}
.founder-heading {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #000000;
}
.founder-text p {
  font-size: 16px;
  font-weight: 300;
  color: #000000;
  line-height: 2;
  max-width: 100%;
}

/* ================================
   Customized Outfits
   ================================ */
.custom-section {
  background: var(--cream-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding-left: var(--container-pad);
  /* padding: 80px ; */
}

.custom-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 540px;
  align-items: center;
}

.custom-content .section-title {
  text-align: left;
}

.custom-desc {
  font-family: var(--font-des);
  font-size: 14px;
  color: var(--black);
  line-height: 1.6;
  text-align: center;
  font-weight: 400;
}

.custom-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  margin: 0px !important;
}

.custom-image img {
  width: 100%;
  height: clamp(400px, 60vw, 90vh);
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Slick Dots */

.custom-slider .slick-dots {
  bottom: 30px;
}

.custom-slider .slick-dots li {
  width: 80px;
  margin: 0 10px;
}

.custom-slider .slick-dots li button:before {
  content: "";
  width: 80px;
  height: 2px;
  background: #ffffff;
  opacity: 1;
  display: block;
}

.custom-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  background: #c9a96e;
}
.custom-content .custom-btn-gold-outline {
  display: inline-block;
  padding: 14px 35px;
  border: 1px solid #c9a96e !important;
  color: #000;
  text-decoration: none;
  border-radius: 0px;
  margin-top: 15px;
}
.custom-content .custom-btn-gold-outline:hover {
  background-color: var(--gold);
  color: #fff;
}

/* ===========================
   Info Bar
   =========================== */
.info-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 50px var(--container-pad);
  background: var(--white);
}
.info-item {
  text-align: center;
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-right: 1px solid #eee;
}
.info-item:last-child {
  border-right: none;
}
.info-icon {
  color: var(--gold);
  margin-bottom: 4px;
}
.info-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
}
.info-desc {
  font-size: 11.5px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 200px;
}

/* ===========================
   Cart Sidebar
   =========================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.15);
}
.cart-sidebar.open {
  transform: translateX(0);
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid #eee;
}
.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
}
.close-cart {
  font-size: 20px;
  color: #888;
  transition: color var(--transition);
}
.close-cart:hover {
  color: var(--black);
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart-empty {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 40px;
}
.cart-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cart-item-img {
  width: 70px;
  height: 90px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f5f5f5;
}
.cart-item-details {
  flex: 1;
}
.cart-item-name {
  font-size: 13px;
  font-family: var(--font-heading);
  margin-bottom: 6px;
}
.cart-item-price {
  font-size: 12px;
  font-weight: 500;
}
.cart-item-remove {
  font-size: 12px;
  color: #aaa;
  margin-top: 4px;
  transition: color var(--transition);
}
.cart-item-remove:hover {
  color: #e00;
}
.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
}

/* ===========================
   Reveal
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1100px) {
  :root {
    --container-pad: 48px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 900px) {
  :root {
    --container-pad: 32px;
  }
  .navbar {
    grid-template-columns: 1fr auto;
  }
  .nav-left {
    display: none;
  }
  .nav-logo {
    justify-self: start;
  }
  .hamburger {
    display: flex;
  }
  .page-hero-title {
    font-size: 32px;
  }
  .our-story {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .story-image {
    height: 380px;
  }
  .mv-section {
    grid-template-columns: 1fr;
  }
  .mv-image {
    min-height: 320px;
    order: -1;
  }
  .founder-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .custom-section {
    grid-template-columns: 1fr;
    padding: 60px var(--container-pad);
  }
  .custom-image {
    order: -1;
  }

  .custom-image img {
    max-width: 100%;
  }
  .custom-content {
    max-width: 100%;
  }

  .info-bar {
    grid-template-columns: 1fr 1fr;
    gap: 30px 0;
  }
}
@media (max-width: 600px) {
  :root {
    --container-pad: 20px;
  }
  .page-hero {
    height: 300px;
  }
  .page-hero-title {
    font-size: 26px;
  }
  .story-title,
  .customized-title {
    font-size: 28px;
  }
  .info-bar {
    grid-template-columns: 1fr 1fr;
  }
  .info-item {
    border-right: none;
    padding: 10px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cart-sidebar {
    width: 100%;
  }
  .founder-image {
    width: 160px;
    height: 180px;
  }
}

/* Mobile nav open */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--black);
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 200;
}
.nav-links.open a {
  font-size: 22px;
  letter-spacing: 3px;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ==================== contact ==================== */

/* ===========================
   Contact Section
   =========================== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px var(--container-pad);
  align-items: start;
}
.contact-heading {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 18px;
}
.contact-intro {
  font-size: 18px;
  font-weight: 300;
  color: #666;
  line-height: 1.9;
  max-width: 460px;
  margin-bottom: 36px;
}

.contact-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 24px;
  margin-bottom: 40px;
}
.contact-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid #e3e3e3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}
.contact-block h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 6px;
}
.contact-block p {
  font-size: 12.5px;
  font-weight: 300;
  color: #777;
  line-height: 1.6;
}

.contact-map {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border: 1px solid #eee;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2);
}

/* Form */
.contact-form-wrap {
  background: var(--cream);
  padding: 50px;
}
.form-heading {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 28px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #c9bda0;
  padding: 15px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  outline: none;
  transition: border var(--transition);
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8c8267;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold-dark);
}
.contact-form .btn {
  align-self: flex-start;
  margin-top: 6px;
}
.form-status {
  font-size: 13px;
  font-weight: 400;
  color: var(--gold-dark);
  min-height: 16px;
}
.form-status.error {
  color: #c0392b;
}

/* ===========================
   Info Bar
   =========================== */
.info-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 50px var(--container-pad);
  background: var(--white);
  border-top: 1px solid #eee;
}
.info-item {
  text-align: center;
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-right: 1px solid #eee;
}
.info-item:last-child {
  border-right: none;
}
.info-icon {
  color: var(--gold);
  margin-bottom: 4px;
}
.info-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
}
.info-desc {
  font-size: 11.5px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 200px;
}

/* ===========================
   Cart Sidebar
   =========================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.15);
}
.cart-sidebar.open {
  transform: translateX(0);
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid #eee;
}
.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
}
.close-cart {
  font-size: 20px;
  color: #888;
  transition: color var(--transition);
}
.close-cart:hover {
  color: var(--black);
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart-empty {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 40px;
}
.cart-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cart-item-img {
  width: 70px;
  height: 90px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f5f5f5;
}
.cart-item-details {
  flex: 1;
}
.cart-item-name {
  font-size: 13px;
  font-family: var(--font-heading);
  margin-bottom: 6px;
}
.cart-item-price {
  font-size: 12px;
  font-weight: 500;
}
.cart-item-remove {
  font-size: 12px;
  color: #aaa;
  margin-top: 4px;
  transition: color var(--transition);
}
.cart-item-remove:hover {
  color: #e00;
}
.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
}

/* ===========================
   Reveal
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1100px) {
  :root {
    --container-pad: 48px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 900px) {
  :root {
    --container-pad: 32px;
  }
  .navbar {
    grid-template-columns: 1fr auto;
  }
  .nav-left {
    display: none;
  }
  .nav-logo {
    justify-self: start;
  }
  .hamburger {
    display: flex;
  }
  .page-hero {
    height: 380px;
  }
  .page-hero-title {
    font-size: 36px;
  }
  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .info-bar {
    grid-template-columns: 1fr 1fr;
    gap: 30px 0;
  }
}
@media (max-width: 600px) {
  :root {
    --container-pad: 20px;
  }
  .page-hero {
    height: 300px;
  }
  .page-hero-title {
    font-size: 28px;
  }
  .contact-blocks {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 36px 24px;
  }
  .info-bar {
    grid-template-columns: 1fr 1fr;
  }
  .info-item {
    border-right: none;
    padding: 10px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cart-sidebar {
    width: 100%;
  }
}

/* Mobile nav open */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--black);
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 200;
}
.nav-links.open a {
  font-size: 22px;
  letter-spacing: 3px;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ==================== faq ==================== */

/* ===========================
   Page Hero / Breadcrumb
   =========================== */
.page-hero {
  position: relative;
  height: 540px;
  background: url("../assets/images/1e046363334da44c0231956b6399ba5d28ce3ff7")
    center 30% / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.page-hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumb a {
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb .current {
  color: rgba(255, 255, 255, 0.6);
}

/* ===========================
   FAQ Section
   =========================== */
.faq-section {
  padding: 90px var(--container-pad) 100px;
  max-width: 1240px;
  margin: 0 auto;
}
.faq-head {
  text-align: center;
  margin-bottom: 50px;
}
.faq-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.faq-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #f6efdf;
  transition: background var(--transition);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 34px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  cursor: pointer;
}
.faq-toggle {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--black);
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.faq-toggle::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}
.faq-toggle::after {
  left: 50%;
  top: 0;
  width: 1.5px;
  height: 100%;
  transform: translateX(-50%);
}
.faq-item.open .faq-toggle::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 34px;
}
.faq-a p {
  font-size: 14px;
  font-weight: 300;
  color: #5e5e5e;
  line-height: 1.9;
}
.faq-item.open .faq-a {
  max-height: 320px;
  padding: 0 34px 28px;
}

/* ===========================
   Cart Sidebar
   =========================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.15);
}
.cart-sidebar.open {
  transform: translateX(0);
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid #eee;
}
.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
}
.close-cart {
  font-size: 20px;
  color: #888;
  transition: color var(--transition);
}
.close-cart:hover {
  color: var(--black);
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart-empty {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 40px;
}
.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
}

/* ===========================
   Reveal
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1100px) {
  :root {
    --container-pad: 48px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 900px) {
  :root {
    --container-pad: 32px;
  }
  .navbar {
    grid-template-columns: 1fr auto;
  }
  .nav-left {
    display: none;
  }
  .nav-logo {
    justify-self: start;
  }
  .hamburger {
    display: flex;
  }
  .page-hero {
    height: 400px;
  }
  .page-hero-title {
    font-size: 38px;
  }
  .faq-title {
    font-size: 30px;
  }
  .faq-q {
    font-size: 18px;
    padding: 22px 24px;
  }
  .faq-a,
  .faq-item.open .faq-a {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 600px) {
  :root {
    --container-pad: 20px;
  }
  .page-hero {
    height: 320px;
  }
  .page-hero-title {
    font-size: 30px;
  }
  .faq-q {
    font-size: 16px;
    padding: 18px 18px;
    gap: 12px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cart-sidebar {
    width: 100%;
  }
}

/* Mobile nav open */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--black);
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 200;
}
.nav-links.open a {
  font-size: 22px;
  letter-spacing: 3px;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ==================== product ==================== */

/* ===========================
   Product Detail
   =========================== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 70px var(--container-pad);
  align-items: start;
}

.product-gallery {
  display: flex;
  gap: 16px;
}
.thumb-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 80px;
  flex-shrink: 0;
}
.thumb {
  width: 80px;
  height: 95px;
  overflow: hidden;
  border: 1px solid transparent;
  opacity: 0.6;
  transition:
    opacity var(--transition),
    border var(--transition);
}
.thumb.active,
.thumb:hover {
  opacity: 1;
  border-color: var(--gold);
}

.main-image {
  flex: 1;
  height: 540px;
  overflow: hidden;
  background: #f5f5f5;
}
.main-image img {
  transition: opacity 0.3s ease;
  object-position: top;
}

.product-summary {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
}
.product-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 18px;
}
.product-price {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
}
.product-desc {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.9;
  margin-bottom: 28px;
  max-width: 460px;
}

.secure-payment {
  margin-bottom: 28px;
}
.secure-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 12px;
}
.payment-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pay-badge {
  height: 28px;
  min-width: 44px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  padding: 0 8px;
  background: #fff;
}
.pay-badge.visa {
  color: #1a1f71;
  font-style: italic;
  letter-spacing: 0.5px;
}
.pay-badge.apay {
  color: #000;
  font-weight: 500;
}
.pay-badge.mc {
  gap: 0;
  padding: 0 10px;
}
.mc-c {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
}
.mc-red {
  background: #eb001b;
}
.mc-yellow {
  background: #f79e1b;
  margin-left: -7px;
  mix-blend-mode: multiply;
}

.product-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Color + Size options */
.product-color {
  margin-bottom: 18px;
}
.opt-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}
.color-options {
  display: flex;
  gap: 12px;
}
.color-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c);
  border: 2px solid #fff;
  outline: 1px solid #ddd;
  transition: all var(--transition);
}
.color-dot:hover {
  transform: scale(1.15);
}
.color-dot.active {
  outline-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
}
.product-size {
  margin-bottom: 28px;
}
.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.size-btn {
  min-width: 44px;
  height: 38px;
  padding: 0 12px;
  border: 1.5px solid #ccc;
  background: #fff;
  color: var(--black);
  font-size: 13px;
  font-family: inherit;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 3px;
}
.size-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.size-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.selected-size-label {
  font-weight: 400;
  font-size: 13px;
  color: var(--gold);
  margin-left: 6px;
}

/* ===========================
   Tabs
   =========================== */
.product-tabs {
  display: flex;
  justify-content: center;
  padding: 20px var(--container-pad) 0;
}
.tab-pills {
  display: flex;
  gap: 12px;
}
.tab-pill {
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 400;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  background: var(--white);
  transition: all var(--transition);
}
.tab-pill:hover {
  background: rgba(199, 154, 75, 0.1);
}
.tab-pill.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ===========================
   Tab Panels
   =========================== */
.tab-panels {
  padding: 40px var(--container-pad) 80px;
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
  background: var(--cream);
  padding: 50px 60px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.about-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 24px;
}
.about-text {
  font-size: 13.5px;
  font-weight: 300;
  color: #555;
  line-height: 2;
  margin-bottom: 24px;
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 300;
  color: #444;
}
.check-icon {
  color: var(--gold);
  flex-shrink: 0;
}

/* FAQ accordion (chevron) */
.faq-acc {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid #c4b896;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  font-size: 22px;
  font-weight: 400;
  font-family: var(--font-heading);
  text-align: left;
  color: var(--black);
  cursor: pointer;
}
.faq-chevron {
  color: var(--black);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 30px;
}
.faq-a p {
  font-size: 14px;
  font-weight: 300;
  color: #5a5a5a;
  line-height: 1.95;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 30px 24px;
}

/* ===========================
   Customized Section
   =========================== */
.customized-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  min-height: 520px;
}
.customized-content {
  padding: 80px var(--container-pad);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.customized-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 8px;
}
.customized-text {
  font-size: 13px;
  font-weight: 300;
  color: #666;
  line-height: 1.9;
  max-width: 420px;
}
.customized-content .btn {
  margin-top: 14px;
  align-self: flex-start;
}
.customized-image {
  height: 100%;
  min-height: 520px;
  overflow: hidden;
}

/* ===========================
   Related Products
   =========================== */
.related-section {
  padding: 80px var(--container-pad);
  background: var(--white);
}
.related-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 40px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
}
.product-image-wrap {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: #f9f9f9;
}
.product-image-wrap img {
  transition: transform 0.5s ease;
}
.product-card:hover .product-image-wrap img {
  transform: scale(1.04);
}
.product-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
}
.product-card:hover .product-actions {
  transform: translateY(0);
}
.add-to-cart-btn {
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  transition: background var(--transition);
}
.add-to-cart-btn:hover {
  background: var(--gold);
  color: var(--white);
}
.product-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
}
.product-price-sm {
  font-size: 12px;
  font-weight: 500;
  color: #555;
}

/* ===========================
   Cart Sidebar
   =========================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.15);
}
.cart-sidebar.open {
  transform: translateX(0);
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid #eee;
}
.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
}
.close-cart {
  font-size: 20px;
  color: #888;
  transition: color var(--transition);
}
.close-cart:hover {
  color: var(--black);
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart-empty {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 40px;
}
.cart-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cart-item-img {
  width: 70px;
  height: 90px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f5f5f5;
}
.cart-item-details {
  flex: 1;
}
.cart-item-name {
  font-size: 13px;
  font-family: var(--font-heading);
  margin-bottom: 6px;
}
.cart-item-price {
  font-size: 12px;
  font-weight: 500;
}
.cart-item-remove {
  font-size: 12px;
  color: #aaa;
  margin-top: 4px;
  transition: color var(--transition);
}
.cart-item-remove:hover {
  color: #e00;
}
.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
}

/* ===========================
   Reveal
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1100px) {
  :root {
    --container-pad: 48px;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  :root {
    --container-pad: 32px;
  }
  .navbar {
    grid-template-columns: 1fr auto;
  }
  .nav-left {
    display: none;
  }
  .nav-logo {
    justify-self: start;
  }
  .hamburger {
    display: flex;
  }
  .page-hero-title {
    font-size: 32px;
  }
  .product-detail {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .main-image {
    height: 460px;
  }
  .customized-section {
    grid-template-columns: 1fr;
  }
  .customized-image {
    min-height: 360px;
  }
  .tab-panel#tab-description {
    padding: 36px 28px;
  }
}

@media (max-width: 600px) {
  :root {
    --container-pad: 20px;
  }
  .page-hero {
    height: 320px;
  }
  .page-hero-title {
    font-size: 24px;
  }
  .breadcrumb {
    font-size: 11px;
    gap: 6px;
    flex-wrap: wrap;
  }
  .product-title {
    font-size: 30px;
  }
  .product-gallery {
    flex-direction: column-reverse;
  }
  .thumb-column {
    flex-direction: row;
    width: auto;
  }
  .main-image {
    height: 380px;
  }
  .product-cta {
    flex-direction: column;
  }
  .product-cta .btn {
    width: 100%;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .product-image-wrap {
    height: 240px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cart-sidebar {
    width: 100%;
  }
  .tab-pills {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Mobile nav open */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--black);
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 200;
}
.nav-links.open a {
  font-size: 22px;
  letter-spacing: 3px;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ==================== shop ==================== */
/* ===========================
   Base & Reset
   =========================== */
.page-shop .btn-gold {
  background-color: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
}
/* ===========================
   Navigation
   =========================== */
.navbar {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px var(--container-pad);
  background: transparent;
}

/* ===========================
   Shop Layout (sidebar LEFT)
   =========================== */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  padding: 70px var(--container-pad) 90px;
  align-items: start;
}

/* Sidebar */
.shop-sidebar {
  position: sticky;
  top: 100px;
}
.filter-toggle {
  display: none;
}
.filter-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #eee;
  background: var(--cream-soft);
}

/* Accordion block */
.filter-block {
  border-bottom: 1px solid #e6dcc5;
}
.filter-block:last-of-type {
  border-bottom: none;
}
.filter-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  color: var(--black);
  text-align: left;
  cursor: pointer;
}
.acc-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  background: var(--gold-dark);
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.acc-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}
.acc-icon::after {
  left: 50%;
  top: 0;
  width: 1.5px;
  height: 100%;
  transform: translateX(-50%);
}
.filter-block.open .acc-icon::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}

.filter-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 22px;
}
.filter-block.open .filter-body {
  max-height: 420px;
  padding: 0 22px 22px;
}

/* Category list */
.filter-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filter-tab {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  font-size: 13.5px;
  font-weight: 400;
  color: #555;
  text-align: left;
  border-radius: 3px;
  transition: all var(--transition);
}
.filter-tab:hover {
  background: rgba(199, 154, 75, 0.12);
  color: var(--black);
}
.filter-tab.active {
  background: var(--gold);
  color: var(--white);
}
.cat-count {
  font-size: 11px;
  opacity: 0.75;
}
.filter-tab.active .cat-count {
  opacity: 0.9;
}

/* Price radios */
.filter-radios {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.filter-radios label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #555;
  cursor: pointer;
}
.filter-radios input[type="radio"] {
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.filter-radios label:hover {
  color: var(--black);
}

/* Color swatches */
.color-swatches {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c);
  border: 2px solid transparent;
  outline: 1px solid #ddd;
  transition: all var(--transition);
}
.swatch:hover {
  transform: scale(1.12);
}
.swatch.active {
  border-color: var(--white);
  outline-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
}
.color-note {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
}

/* Clear */
.clear-filters {
  margin: 18px 22px 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--black);
  padding: 12px;
  border: 1px solid var(--black);
  transition: all var(--transition);
}
.clear-filters:hover {
  background: var(--black);
  color: var(--white);
}

/* Main column */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
  gap: 14px;
}
.result-count {
  font-size: 13px;
  color: var(--text-muted);
}
.sort-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sort-wrap label {
  font-size: 13px;
  color: var(--text-muted);
}
.sort-wrap select {
  font-family: var(--font-body);
  font-size: 13px;
  padding: 9px 14px;
  border: 1px solid #ddd;
  background: var(--white);
  color: var(--black);
  outline: none;
  cursor: pointer;
}
.sort-wrap select:focus {
  border-color: var(--gold);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.product-image-wrap {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: #f7f4ee;
}
.product-image-wrap img {
  transition: transform 0.5s ease;
}
.product-card:hover .product-image-wrap img {
  transform: scale(1.05);
}
.product-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
}
.product-card:hover .product-actions {
  transform: translateY(0);
}
.add-to-cart-btn {
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  transition: background var(--transition);
}
.add-to-cart-btn:hover {
  background: var(--gold);
  color: var(--white);
}
.product-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
}
.product-price {
  font-size: 13px;
  font-weight: 500;
  color: #000;
}

.no-results {
  text-align: center;
  padding: 60px 0;
  font-size: 15px;
  color: var(--text-muted);
}

/* ===========================
   Cart Sidebar
   =========================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.15);
}
.cart-sidebar.open {
  transform: translateX(0);
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid #eee;
}
.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
}
.close-cart {
  font-size: 20px;
  color: #888;
  transition: color var(--transition);
}
.close-cart:hover {
  color: var(--black);
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart-empty {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 40px;
}
.cart-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cart-item-img {
  width: 70px;
  height: 90px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f5f5f5;
}
.cart-item-details {
  flex: 1;
}
.cart-item-name {
  font-size: 13px;
  font-family: var(--font-heading);
  margin-bottom: 6px;
}
.cart-item-price {
  font-size: 12px;
  font-weight: 500;
}
.cart-item-remove {
  font-size: 12px;
  color: #aaa;
  margin-top: 4px;
  transition: color var(--transition);
}
.cart-item-remove:hover {
  color: #e00;
}
.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1100px) {
  :root {
    --container-pad: 48px;
  }
  .shop-layout {
    grid-template-columns: 240px 1fr;
    gap: 36px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 900px) {
  :root {
    --container-pad: 32px;
  }
  .navbar {
    grid-template-columns: 1fr auto;
  }
  .nav-left {
    display: none;
  }
  .nav-logo {
    justify-self: start;
  }
  .hamburger {
    display: flex;
  }
  .page-hero {
    height: 300px;
  }
  .page-hero-title {
    font-size: 36px;
  }

  .shop-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .shop-sidebar {
    position: static;
  }
  .filter-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: var(--cream-soft);
  }
  .filter-toggle span {
    font-size: 20px;
    color: var(--gold);
    transition: transform var(--transition);
  }
  .filter-toggle.open span {
    transform: rotate(45deg);
  }
  .filter-panel {
    display: none;
    margin-top: 12px;
  }
  .filter-panel.show {
    display: flex;
  }
}
@media (max-width: 600px) {
  :root {
    --container-pad: 20px;
  }
  .page-hero {
    height: 260px;
  }
  .page-hero-title {
    font-size: 28px;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .product-image-wrap {
    height: 240px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cart-sidebar {
    width: 100%;
  }
}

/* Mobile nav open */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--black);
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 200;
}
.nav-links.open a {
  font-size: 22px;
  letter-spacing: 3px;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ====================================================================
   GLOBAL OVERRIDES, MEGA MENU & PER-PAGE TWEAKS (added in refactor)
   ==================================================================== */

/* Keep product-detail summary price large & gold (beat card rules) */
.product-summary .product-price {
  font-size: 18px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 20px;
}

/* Per-page breadcrumb hero heights via body class */
.page-about .page-hero {
  height: 480px;
  background: url("../assets/images/about-banner.png") center 28% / cover
    no-repeat;
}
.page-contact .page-hero {
  height: 480px;
  background: url(../assets/images/contact.png) center 10% / cover no-repeat;
}
.page-faq .page-hero {
  height: 480px;
  background: url(../assets/images/faq.png) center 10% / cover no-repeat;
}
.page-collections .page-hero {
  height: 480px;
  background: url(../assets/images/collection-banner.png) center 10% / cover
    no-repeat;
}
.page-product .page-hero {
  height: 480px;
}
.page-blog .page-hero {
  height: 480px;
  background: url(../assets/images/news.png) center 85% / cover no-repeat;
}
.page-blog-detail .page-hero {
  height: 480px;
  background: url(../assets/images/blog-img-1.jpg) center 58% / cover no-repeat;
}
.page-shop .page-hero {
  height: 480px;
  background: url(../assets/images/shop.png) center 30% / cover no-repeat;
}

.page-privacy-policy .page-hero {
  height: 480px;
  background: url(../assets/images/privacy-policy.png) center 30% / cover
    no-repeat;
}
.page-terms-and-conditions .page-hero {
  height: 480px;
  background: url(../assets/images/privacy-policy.png) center 30% / cover
    no-repeat;
}
.page-refund-policy .page-hero {
  height: 480px;
  background: url(../assets/images/privacy-policy.png) center 30% / cover
    no-repeat;
}

/* Home "contact bar" (renamed to avoid clashing with the feature info-bar) */
.contact-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 40px var(--container-pad);
  background: var(--white);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.contact-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 30px 20px 0;
  border-right: 1px solid #eee;
}
.contact-bar-item:last-child {
  border-right: none;
}
.contact-bar-item:not(:first-child) {
  padding-left: 30px;
}
.contact-bar .info-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--black);
}
.contact-bar .info-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.contact-bar .info-value {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
}
@media (max-width: 1100px) {
  .contact-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .contact-bar {
    grid-template-columns: 1fr 1fr;
  }
  .contact-bar-item {
    border-right: none;
    padding-right: 0;
  }
  .contact-bar-item:not(:first-child) {
    padding-left: 0;
  }
}

/* ===========================
   Mega Menu (Shop hover)
   =========================== */
.nav-links li.has-mega {
  position: static;
}
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  margin: 0 var(--container-pad);
  background: #fff;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
  padding: 42px 48px;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s;
  border-radius: 2px;
}
.nav-links li.has-mega:hover .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  gap: 44px;
}
.mega-col h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
}
.mega-col ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mega-col ul li a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  font-weight: 300;
  color: #555;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}
.mega-col ul li a:hover {
  color: var(--gold-dark);
  padding-left: 6px;
}

.mega-media {
  display: flex;
  gap: 16px;
}
.mega-media a {
  flex: 1;
  height: 320px;
  overflow: hidden;
  display: block;
  background: #f2efe7;
}
.mega-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.mega-media a:hover img {
  transform: scale(1.05);
}

@media (max-width: 1100px) {
  .mega-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .mega-media {
    grid-column: 1 / -1;
  }
}
@media (max-width: 900px) {
  .mega-menu {
    display: none !important;
  }
}

/* ===========================
  Policy pages
   =========================== */

.policy-section {
  padding: 80px var(--container-pad);
}
.plicy-heading {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 10px;
}
.policy-des {
  font-size: 15px;
  font-weight: 300;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}
.plicy-s-head {
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 10px;
}
