@charset "UTF-8";
:root {
  --g1: #a18d16;
  --g2: #be9c07;
  --g3: #dcc234;
  --g4: #eed900;
  --g5: #c4a214;
  --logo-grad: linear-gradient(135deg, #a18d16 0%, #dcc234 35%, #eed900 60%, #c4a214 100%);
  --sand: linear-gradient(135deg, #ffffff 0%, #f2ead8 50%);
  --sand-2: linear-gradient(135deg, #efefef 0%, #e8ddc6 50%);
  --sand-3: linear-gradient(135deg, #efefef 0%, #d9ccb0 50%);
  --brown-1: #5c4a2a
  --brown-2: #886f44;
  --brown-3: #a08555;
  --brown-light: #c4ab80;
  --ink: #2a1f0e;
  --dark-solid: #110906;
  --dark: linear-gradient(150deg, #110906 0%, #32241d 25%, #110906 80%);
  --dark-2: linear-gradient(165deg, #0e0703 0%, #453329 25%, #0e0703 80%);
  --dark-card: linear-gradient(140deg, #130c04 0%, #453329 25%, #1f1306 80%);
  --radius: 10px;
  --container: 1280px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--sand);
  color: var(--brown-1);
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

img {
  display: block;
}

a {
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--sand-2);
}
::-webkit-scrollbar-thumb {
  background: var(--g3);
  border-radius: 2px;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 300;
  background: var(--dark);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(220, 194, 52, 0.15);
  height: 70px;
}
nav .nav-inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .nav-logo-svg svg {
  height: 34px;
  width: auto;
}
nav .nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
nav .nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 400;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 4px;
}
nav .nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--logo-grad);
  transition: width 0.3s ease;
}
nav .nav-links a:hover {
  color: var(--g3);
}
nav .nav-links a:hover::after {
  width: 100%;
}
nav .nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
nav .nav-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(220, 194, 52, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: var(--transition);
}
nav .nav-icon:hover {
  border-color: var(--g3);
  color: var(--g3);
  background: rgba(220, 194, 52, 0.07);
}
nav .nav-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}
nav .nav-cta {
  padding: 9px 20px;
  background: var(--logo-grad);
  border: none;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: var(--transition);
}
nav .nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }
  nav .nav-links {
    display: none;
  }
}

.hero {
  position: relative;
  height: 80vh;
  min-height: 580px;
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
}
.hero .hero-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.92);
}
.hero .hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 22, 8, 0.62) 0%, rgba(30, 22, 8, 0.42) 100%, rgba(30, 22, 8, 0.15) 100%, transparent 100%), linear-gradient(90deg, rgba(30, 22, 8, 0.5) 0%, rgba(30, 22, 8, 0.25) 30%, transparent 80%);
  mix-blend-mode: multiply;
  z-index: 1;
}
.hero .hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero .hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: scrollBounce 2.5s infinite;
}
.hero .hero-scroll-icon {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(220, 194, 52, 0.7);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}
.hero .hero-scroll-icon::after {
  content: "";
  width: 2px;
  height: 8px;
  background: rgba(220, 194, 52, 0.7);
  border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}
.hero .hero-scroll-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(220, 194, 52, 0.7);
  letter-spacing: 1px;
}
.hero .hero-content {
  flex: 1;
  animation: fadeUp 0.9s ease both;
}
.hero .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 194, 52, 0.12);
  border: 1px solid rgba(220, 194, 52, 0.28);
  border-radius: 40px;
  padding: 8px 18px;
  margin-bottom: 32px;
  width: fit-content;
}
.hero .hero-tag .hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--g3);
  animation: blink 2s infinite;
}
.hero .hero-tag span {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--g3);
  font-weight: 400;
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 5.2vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  color: #f5edd8;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  background: var(--logo-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .hero-sub {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.52);
  max-width: 420px;
  margin-bottom: 40px;
}
.hero .hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero .hero-float-card {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(220, 194, 52, 0.22);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 200px;
}
.hero .hero-float-card > div {
  display: flex;
  flex-direction: column;
}
.hero .hero-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 300;
  background: var(--logo-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.hero .hero-stat-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 400;
}
@media (max-width: 900px) {
  .hero {
    height: auto;
    min-height: 420px;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 40px;
  }
  .hero .hero-bg {
    z-index: 0;
  }
  .hero .hero-container {
    flex-direction: column;
    padding: 40px 0 0 0;
    z-index: 2;
  }
  .hero .hero-scroll-indicator {
    display: none;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--logo-grad);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 28px rgba(196, 162, 20, 0.25);
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(196, 162, 20, 0.35);
}
.scroll-to-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 2.5;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
@keyframes scrollDot {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.cats-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--brown-3);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cats-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--g3);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--logo-grad);
  border: none;
  border-radius: var(--radius);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(220, 194, 52, 0.3);
}
.btn-primary svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--g3);
  color: var(--g3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--brown-3);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--brown-2);
  font-weight: 400;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.btn-outline:hover {
  border-color: var(--g2);
  color: var(--g2);
}

.marquee {
  background: var(--dark-2);
  border-top: 1px solid rgba(220, 194, 52, 0.1);
  border-bottom: 1px solid rgba(220, 194, 52, 0.1);
  padding: 0;
  overflow: hidden;
  height: 52px;
  display: flex;
  align-items: center;
}
.marquee .marquee-track {
  display: flex;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
}
.marquee .marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 40px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(220, 194, 52, 0.55);
  font-weight: 400;
}
.marquee .marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--g2);
  flex-shrink: 0;
}

.cats {
  background: var(--sand);
  padding: 80px 0;
}
.cats .cats-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--brown-3);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cats .cats-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--g3);
}
.cats h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--brown-1);
  margin-bottom: 52px;
  line-height: 1.15;
}
.cats h2 em {
  font-style: italic;
  color: var(--g2);
}
.cats .cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .cats .cats-grid {
    grid-template-columns: 1fr;
  }
}

.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(160, 133, 85, 0.18);
  transition: var(--transition);
}
.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(90, 70, 30, 0.14);
  border-color: rgba(196, 162, 20, 0.35);
}
.cat-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.82) saturate(0.85);
}
.cat-card:hover img {
  transform: scale(1.06);
}
.cat-card .cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 22, 8, 0.8) 0%, rgba(30, 22, 8, 0.1) 55%, transparent 100%);
}
.cat-card .cat-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}
.cat-card .cat-card-tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--g3);
  margin-bottom: 6px;
  font-weight: 400;
}
.cat-card .cat-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 400;
  color: #f5edd8;
  line-height: 1.15;
  margin-bottom: 14px;
}
.cat-card .cat-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--g3);
  font-weight: 400;
  transition: gap 0.25s;
}
.cat-card .cat-card-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.cat-card:hover .cat-card-btn {
  gap: 14px;
}

.about {
  background: var(--dark);
  padding: 100px 0;
}
.about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .about .about-grid {
    grid-template-columns: 1fr;
  }
}
.about .about-imgs {
  position: relative;
}
.about .about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: brightness(0.82) saturate(0.88);
}
.about .about-img-sm {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--dark-solid);
  filter: brightness(0.85);
}
.about .about-frame {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(196, 162, 20, 0.3);
  border-radius: var(--radius);
  pointer-events: none;
}
.about .about-text .cats-label {
  color: var(--g3);
}
.about .about-text .cats-label::before {
  background: var(--g3);
}
.about .about-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 1.15;
  color: #f5edd8;
  margin-bottom: 24px;
}
.about .about-text h2 em {
  font-style: italic;
  background: var(--logo-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about .about-text p {
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 16px;
}
.about .about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0;
}
.about .about-pill {
  padding: 8px 18px;
  background: rgba(220, 194, 52, 0.07);
  border: 1px solid rgba(220, 194, 52, 0.18);
  border-radius: 40px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--g3);
  font-weight: 400;
}

.products {
  background: var(--sand-2);
  padding: 88px 0;
}
.products .products-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.products .products-top h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--brown-1);
}
.products .products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .products .products-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.product-card {
  background: var(--dark-card);
  border: 1px solid rgba(220, 194, 52, 0.15);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(196, 162, 20, 0.2);
  border-color: rgba(196, 162, 20, 0.4);
}
.product-card:hover .product-img {
  transform: scale(1.06);
}
.product-card .product-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.product-card .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.93) saturate(0.9);
}
.product-card .product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
}
.product-card .badge-new {
  background: var(--g3);
  color: var(--ink);
}
.product-card .badge-hot {
  background: var(--g3);
  color: var(--ink);
}
.product-card .product-body {
  padding: 18px 20px 22px;
}
.product-card .product-cat {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(220, 194, 52, 0.6);
  margin-bottom: 6px;
}
.product-card .product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 400;
  color: #f5edd8;
  margin-bottom: 8px;
}
.product-card .product-price {
  display: none;
}

.banner {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.banner .banner-bg {
  position: absolute;
  inset: 0;
  background: url("../images/website/living-decoratie-19.jpeg") bottom 30% center/cover;
  filter: brightness(0.45) saturate(0) grayscale(100%);
}
.banner .banner-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.banner .banner-content {
  position: relative;
  z-index: 2;
}
.banner .banner-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: #f5edd8;
  line-height: 1.1;
  margin-bottom: 20px;
}
.banner .banner-content h2 em {
  font-style: italic;
  background: var(--logo-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.banner .banner-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
  font-weight: 300;
}

.gifts {
  background: var(--sand);
  padding: 88px 0;
}
.gifts .gifts-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.gifts .gifts-top h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--brown-1);
  line-height: 1.15;
}
.gifts .gifts-top h2 em {
  font-style: italic;
  color: var(--g2);
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 14px;
}
.mosaic .mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.mosaic .mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  filter: brightness(0.8) saturate(0.85);
}
.mosaic .mosaic-item:hover img {
  transform: scale(1.07);
}
.mosaic .mosaic-item:nth-child(1) {
  grid-column: span 5;
  height: 340px;
}
.mosaic .mosaic-item:nth-child(2) {
  grid-column: span 7;
  height: 340px;
}
.mosaic .mosaic-item:nth-child(3), .mosaic .mosaic-item:nth-child(4), .mosaic .mosaic-item:nth-child(5) {
  grid-column: span 4;
  height: 260px;
}
.mosaic .mosaic-item .mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 22, 8, 0.78) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.mosaic .mosaic-item .mosaic-tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--g3);
  margin-bottom: 4px;
}
.mosaic .mosaic-item .mosaic-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: #f5edd8;
}

.quote-bar {
  background: var(--dark-2);
  padding: 64px 0;
  border-top: 1px solid rgba(220, 194, 52, 0.1);
  border-bottom: 1px solid rgba(220, 194, 52, 0.1);
  text-align: center;
}
.quote-bar blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  color: rgba(245, 237, 216, 0.85);
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.55;
}
.quote-bar cite {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--g2);
  font-style: normal;
}

.testimonials {
  background: var(--sand-2);
  padding: 88px 0;
}
.testimonials h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--brown-1);
  margin-bottom: 48px;
}
.testimonials h2 em {
  font-style: italic;
  color: var(--g2);
}
.testimonials .testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 30px 28px;
  border: 1px solid rgba(160, 133, 85, 0.14);
  transition: var(--transition);
}
.testi-card:hover {
  box-shadow: 0 12px 40px rgba(90, 70, 30, 0.1);
  transform: translateY(-3px);
}
.testi-card .testi-stars {
  font-size: 14px;
  color: var(--g3);
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testi-card .testi-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--brown-2);
  margin-bottom: 20px;
  font-style: italic;
}
.testi-card .testi-author {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--brown-3);
  font-weight: 500;
}

.insta {
  background: var(--dark);
  padding: 88px 0;
}
.insta .insta-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.insta .insta-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 300;
  color: #f5edd8;
}
.insta .insta-handle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--g3);
}
.insta .insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.insta-tile {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border-radius: 8px;
}
.insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.75);
  transition: all 0.45s;
}
.insta-tile:hover img {
  transform: scale(1.08);
  filter: brightness(0.95) saturate(0.95);
}
.insta-tile::after {
  content: "♡";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  background: rgba(30, 22, 8, 0);
  transition: background 0.3s;
}
.insta-tile:hover::after {
  background: rgba(196, 162, 20, 0.2);
}

.newsletter {
  background: var(--sand);
  padding: 80px 0;
  border-top: 1px solid rgba(160, 133, 85, 0.18);
}
.newsletter .newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.newsletter .newsletter-inner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--brown-1);
  margin-bottom: 12px;
}
.newsletter .newsletter-inner h2 em {
  font-style: italic;
  color: var(--g2);
}
.newsletter .newsletter-inner p {
  font-size: 15px;
  color: var(--brown-2);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 32px;
}

.nl-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(160, 133, 85, 0.35);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(90, 70, 30, 0.08);
}
.nl-form input {
  flex: 1;
  padding: 15px 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  border: none;
  outline: none;
  color: var(--brown-1);
  background: transparent;
}
.nl-form input::placeholder {
  color: var(--brown-light);
}
.nl-form button {
  padding: 15px 28px;
  border: none;
  cursor: pointer;
  background: var(--logo-grad);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: var(--ink);
  transition: opacity 0.25s;
}
.nl-form button:hover {
  opacity: 0.88;
}

footer {
  background: var(--dark-solid);
  border-top: 1px solid rgba(220, 194, 52, 0.4);
  padding: 72px 0 36px;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
footer .footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.32);
  font-weight: 300;
  max-width: 240px;
  margin-top: 16px;
}
footer .footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
footer .footer-social {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(220, 194, 52, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition);
  font-size: 11px;
}
footer .footer-social:hover {
  border-color: var(--g3);
  color: var(--g3);
}
footer .footer-col h5 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--g2);
  font-weight: 500;
  margin-bottom: 20px;
}
footer .footer-col ul {
  list-style: none;
}
footer .footer-col ul li {
  margin-bottom: 10px;
}
footer .footer-col ul a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.32);
  font-weight: 300;
  transition: color 0.2s;
}
footer .footer-col ul a:hover {
  color: rgba(220, 194, 52, 0.8);
}
footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(220, 194, 52, 0.08);
}
footer .footer-bottom p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.5px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal.reveal-delay-3 {
  transition-delay: 0.24s;
}
.reveal.reveal-delay-4 {
  transition-delay: 0.32s;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero .hero-right {
    display: none;
  }
  .hero .hero-left {
    padding: 60px 0;
  }

  .cats-grid,
.testi-grid {
    grid-template-columns: 1fr;
  }

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

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

  .mosaic {
    grid-template-columns: 1fr 1fr;
  }
  .mosaic .mosaic-item {
    grid-column: span 1 !important;
  }

  nav {
    padding: 0 24px;
  }
  nav .nav-links {
    display: none;
  }

  .container {
    padding: 0 24px;
  }
}
.woocommerce-products-header {
  background: var(--sand);
  padding: 40px 0;
  border-bottom: 1px solid rgba(160, 133, 85, 0.12);
}

.woocommerce-ordering select {
  padding: 10px 14px;
  font-size: 13px;
  border: 1px solid rgba(160, 133, 85, 0.2);
  border-radius: var(--radius);
  background: #fff;
  color: var(--brown-1);
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: var(--transition);
}
.woocommerce-ordering select:hover, .woocommerce-ordering select:focus {
  border-color: var(--g3);
  outline: none;
}

.woocommerce-pagination ul {
  list-style: none;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(160, 133, 85, 0.2);
  border-radius: 6px;
  font-size: 13px;
  color: var(--brown-2);
  text-decoration: none;
  transition: var(--transition);
}
.woocommerce-pagination ul li a:hover,
.woocommerce-pagination ul li span:hover {
  border-color: var(--g3);
  color: var(--g3);
}
.woocommerce-pagination ul li.active span {
  background: var(--logo-grad);
  border-color: var(--g3);
  color: var(--ink);
  font-weight: 600;
}

.add_to_cart_button,
.product_type_simple,
.product_type_variable {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: var(--logo-grad);
  border: none;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.add_to_cart_button:hover,
.product_type_simple:hover,
.product_type_variable:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.woocommerce-product-rating .star-rating {
  font-size: 12px;
  color: var(--g3);
  margin-bottom: 8px;
}
.woocommerce-product-rating .star-rating span {
  color: var(--g3);
}

.woocommerce-loop-category {
  border-radius: var(--radius);
  border: 1px solid rgba(160, 133, 85, 0.14);
  overflow: hidden;
  transition: var(--transition);
}
.woocommerce-loop-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(90, 70, 30, 0.1);
  border-color: rgba(196, 162, 20, 0.3);
}
.woocommerce-loop-category a {
  text-decoration: none;
}
.woocommerce-loop-category a img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.woocommerce-loop-category:hover a img {
  transform: scale(1.06);
}
.woocommerce-loop-category .woocommerce-loop-category-title {
  padding: 16px;
  background: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: var(--brown-1);
  text-align: center;
}

.woocommerce-sidebar .widget {
  margin-bottom: 48px;
}
.woocommerce-sidebar .widget h2 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--g2);
  font-weight: 500;
  margin-bottom: 20px;
}
.woocommerce-sidebar .widget .price_slider_wrapper .price_slider {
  background: rgba(160, 133, 85, 0.1);
  height: 4px;
  border-radius: 2px;
  margin: 0 0 20px 0;
}
.woocommerce-sidebar .widget .price_slider_wrapper .price_slider .ui-slider-range {
  background: var(--logo-grad);
}
.woocommerce-sidebar .widget .price_slider_wrapper .price_slider .ui-slider-handle {
  background: var(--g3);
  border: 2px solid #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  cursor: pointer;
  top: -6px;
}
.woocommerce-sidebar .widget .price_slider_wrapper .price_label {
  font-size: 13px;
  margin-bottom: 16px;
  color: var(--brown-1);
}
.woocommerce-sidebar .widget .price_slider_wrapper button {
  background: var(--logo-grad);
  color: var(--ink);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  cursor: pointer;
  transition: var(--transition);
}
.woocommerce-sidebar .widget .price_slider_wrapper button:hover {
  opacity: 0.88;
}
.woocommerce-sidebar .widget ul {
  list-style: none;
}
.woocommerce-sidebar .widget ul li {
  margin-bottom: 12px;
}
.woocommerce-sidebar .widget ul li label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--brown-1);
  cursor: pointer;
  transition: color 0.2s;
}
.woocommerce-sidebar .widget ul li label:hover {
  color: var(--g3);
}
.woocommerce-sidebar .widget ul li input[type=checkbox],
.woocommerce-sidebar .widget ul li input[type=radio] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--g3);
}
.woocommerce-sidebar .widget ul li .count {
  font-size: 12px;
  color: var(--brown-3);
  margin-left: auto;
}

@media (max-width: 900px) {
  [class*=woocommerce] > div {
    grid-template-columns: 1fr !important;
  }
  [class*=woocommerce] > div > div:first-child {
    grid-column: 1 !important;
  }

  .woocommerce-products-header {
    padding: 32px 0;
  }

  .woocommerce-pagination ul {
    gap: 4px;
  }
  .woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .woocommerce-sidebar {
    grid-column: 1 !important;
    margin-bottom: 40px;
  }
}
.archive-hero {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 70px;
}
.archive-hero .archive-hero-bg {
  position: absolute;
  inset: 0;
}
.archive-hero .archive-hero-bg .archive-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.75);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.archive-hero .archive-hero-bg:hover .archive-hero-img {
  transform: scale(1);
}
.archive-hero .archive-hero-bg .archive-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 14, 4, 0.55) 0%, transparent 40%), linear-gradient(to top, rgba(20, 14, 4, 0.9) 0%, rgba(20, 14, 4, 0.4) 45%, transparent 75%), linear-gradient(135deg, rgba(161, 141, 22, 0.12) 0%, transparent 60%);
}
.archive-hero .archive-hero-bg .archive-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.archive-hero .archive-hero-bg .archive-hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.archive-hero .archive-hero-bg .archive-hero-lines span {
  position: absolute;
  display: block;
  width: 1px;
  height: 200%;
  background: linear-gradient(to bottom, transparent 0%, rgba(220, 194, 52, 0.15) 50%, transparent 100%);
  transform: rotate(25deg) translateY(-30%);
}
.archive-hero .archive-hero-bg .archive-hero-lines span:nth-child(1) {
  left: 20%;
  animation: lineDrift 12s ease-in-out infinite;
}
.archive-hero .archive-hero-bg .archive-hero-lines span:nth-child(2) {
  left: 55%;
  animation: lineDrift 16s ease-in-out infinite reverse;
  opacity: 0.6;
}
.archive-hero .archive-hero-bg .archive-hero-lines span:nth-child(3) {
  left: 80%;
  animation: lineDrift 20s ease-in-out infinite;
  opacity: 0.4;
}
.archive-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.archive-hero .archive-hero-breadcrumb {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.archive-hero .archive-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.archive-hero .archive-hero-breadcrumb a:hover {
  color: var(--g3);
}
.archive-hero .archive-hero-breadcrumb span {
  opacity: 0.3;
}
.archive-hero .archive-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--g3);
  margin-bottom: 20px;
  background: rgba(220, 194, 52, 0.1);
  border: 1px solid rgba(220, 194, 52, 0.25);
  padding: 7px 18px;
  border-radius: 40px;
}
.archive-hero .archive-hero-label .archive-hero-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--g3);
  animation: blink 2s infinite;
}
.archive-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  line-height: 1;
  margin: 0 auto 20px;
  max-width: 800px;
  background: linear-gradient(135deg, #f5edd8 0%, #dcc234 45%, #f5edd8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.archive-hero .archive-hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.archive-hero .archive-hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(220, 194, 52, 0.2);
  border-radius: 60px;
  padding: 16px 32px;
  margin-top: 8px;
}
.archive-hero .archive-hero-stats .archive-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}
.archive-hero .archive-hero-stats .archive-hero-stat strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--g3);
  line-height: 1;
  margin-bottom: 3px;
}
.archive-hero .archive-hero-stats .archive-hero-stat span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
}
.archive-hero .archive-hero-stats .archive-hero-stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(220, 194, 52, 0.2);
}
.archive-hero .archive-hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.archive-hero .archive-hero-scroll .archive-hero-scroll-icon {
  width: 24px;
  height: 38px;
  border: 1px solid rgba(220, 194, 52, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
  animation: scrollBounce 2.5s infinite;
}
.archive-hero .archive-hero-scroll .archive-hero-scroll-icon::after {
  content: "";
  width: 2px;
  height: 7px;
  background: rgba(220, 194, 52, 0.5);
  border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}

@keyframes lineDrift {
  0%, 100% {
    transform: rotate(25deg) translateY(-30%) translateX(0);
  }
  50% {
    transform: rotate(25deg) translateY(-30%) translateX(30px);
  }
}
.archive-main {
  background: var(--sand);
  padding: 64px 0 120px;
}
.archive-main .archive-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}

.archive-sidebar {
  position: sticky;
  top: 32px;
}
.archive-sidebar .archive-sidebar-inner {
  background: var(--dark-card);
  border: 1px solid rgba(220, 194, 52, 0.12);
  border-radius: 4px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.archive-sidebar .archive-sidebar-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(161, 141, 22, 0.15) 0%, rgba(161, 141, 22, 0.05) 100%);
  border-bottom: 1px solid rgba(220, 194, 52, 0.15);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--g3);
  font-weight: 600;
}
.archive-sidebar .archive-sidebar-header svg {
  width: 16px;
  height: 16px;
  stroke: var(--g3);
  flex-shrink: 0;
}
.archive-sidebar .archive-filter-block {
  padding: 24px 24px 0;
}
.archive-sidebar .archive-sidebar-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  margin-top: auto;
  border-top: 1px solid rgba(220, 194, 52, 0.1);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.archive-sidebar .archive-sidebar-footer svg {
  width: 14px;
  height: 14px;
  stroke: rgba(220, 194, 52, 0.4);
  flex-shrink: 0;
}
.archive-sidebar .archive-filter-block {
  padding: 24px 24px 0;
}
.archive-sidebar .archive-filter-block .archive-filter-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(220, 194, 52, 0.1);
}
.archive-sidebar .archive-filter-block ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.archive-sidebar .archive-filter-block ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}
.archive-sidebar .archive-filter-block ul li a:hover, .archive-sidebar .archive-filter-block ul li a.active {
  color: var(--g3);
}
.archive-sidebar .archive-filter-block ul .filter-count {
  color: rgba(255, 255, 255, 0.25);
  font-size: 11px;
}
.archive-sidebar .archive-filter-block ul .children {
  padding-left: 12px;
  margin-top: 4px;
}
.archive-sidebar .widget {
  padding: 24px 24px 0;
}
.archive-sidebar .widget .widget-title,
.archive-sidebar .widget .widgettitle {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(220, 194, 52, 0.1);
  font-family: "DM Sans", "Nunito Sans", sans-serif;
}
.archive-sidebar .widget ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.archive-sidebar .widget ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.archive-sidebar .widget ul li a:hover {
  color: var(--g3);
}
.archive-sidebar .widget ul .count {
  color: rgba(255, 255, 255, 0.25);
  font-size: 11px;
  margin-left: 4px;
}
.archive-sidebar .widget input[type=submit],
.archive-sidebar .widget button[type=submit] {
  background: var(--g3);
  color: var(--dark-solid);
  border: none;
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 12px;
  margin-bottom: 24px;
}
.archive-sidebar .widget input[type=submit]:hover,
.archive-sidebar .widget button[type=submit]:hover {
  background: var(--g5);
}

.archive-sortbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(160, 133, 85, 0.14);
}
.archive-sortbar .archive-count {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--brown-3);
  text-transform: uppercase;
}
.archive-sortbar .archive-ordering select {
  border: 1px solid rgba(160, 133, 85, 0.25);
  background: #fff;
  color: var(--brown-2);
  font-size: 13px;
  padding: 8px 16px;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23a18d16' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  transition: border-color 0.2s;
}
.archive-sortbar .archive-ordering select:hover, .archive-sortbar .archive-ordering select:focus {
  border-color: var(--g3);
}

.archive-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.archive-card .archive-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 4, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
  z-index: 2;
}
.archive-card .archive-card-overlay .archive-card-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--logo-grad);
  border-radius: var(--radius);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.archive-card .archive-card-overlay .archive-card-overlay-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.archive-card:hover .archive-card-overlay {
  background: rgba(20, 14, 4, 0.5);
}
.archive-card:hover .archive-card-overlay-btn {
  opacity: 1;
  transform: translateY(0);
}

.archive-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--g3);
  text-decoration: none;
  margin-top: 12px;
  transition: gap 0.2s;
}
.archive-card-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.archive-card-btn:hover {
  gap: 14px;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.archive-pagination {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}
.archive-pagination .woocommerce-pagination ul,
.archive-pagination nav.woocommerce-pagination ul {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.archive-pagination .woocommerce-pagination ul li a,
.archive-pagination .woocommerce-pagination ul li span,
.archive-pagination nav.woocommerce-pagination ul li a,
.archive-pagination nav.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(160, 133, 85, 0.25);
  font-size: 13px;
  color: var(--brown-2);
  text-decoration: none;
  transition: all 0.2s;
}
.archive-pagination .woocommerce-pagination ul li a:hover, .archive-pagination .woocommerce-pagination ul li a.current,
.archive-pagination .woocommerce-pagination ul li span:hover,
.archive-pagination .woocommerce-pagination ul li span.current,
.archive-pagination nav.woocommerce-pagination ul li a:hover,
.archive-pagination nav.woocommerce-pagination ul li a.current,
.archive-pagination nav.woocommerce-pagination ul li span:hover,
.archive-pagination nav.woocommerce-pagination ul li span.current {
  background: var(--g3);
  color: #fff;
  border-color: var(--g3);
}

.archive-empty {
  text-align: center;
  padding: 80px 0;
}
.archive-empty p {
  font-size: 16px;
  color: var(--brown-2);
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .archive-hero {
    height: 320px;
  }
  .archive-hero .archive-hero-content {
    padding-bottom: 40px;
  }
  .archive-hero .archive-hero-content h1 {
    font-size: 36px;
  }

  .archive-main {
    padding: 40px 0 80px;
  }
  .archive-main .archive-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .archive-sidebar {
    position: static;
  }

  .archive-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.sp-breadcrumb {
  background: var(--sand);
  padding: 22px 0;
  border-bottom: 1px solid rgba(160, 133, 85, 0.12);
  margin-top: 70px;
}
.sp-breadcrumb .sp-breadcrumb-inner {
  font-size: 12px;
  letter-spacing: 0.8px;
  color: var(--brown-3);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.sp-breadcrumb .sp-breadcrumb-inner a {
  color: var(--brown-2);
  text-decoration: none;
  transition: color 0.2s;
}
.sp-breadcrumb .sp-breadcrumb-inner a:hover {
  color: var(--g3);
}
.sp-breadcrumb .sp-breadcrumb-inner .sp-breadcrumb-sep {
  margin: 0 10px;
  opacity: 0.35;
}

.sp-main {
  background: var(--sand);
  padding: 64px 0 80px;
}
.sp-main .sp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.sp-gallery {
  position: sticky;
  top: 96px;
}
.sp-gallery .sp-gallery-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(160, 133, 85, 0.14);
  margin-bottom: 12px;
}
.sp-gallery .sp-gallery-main .sp-gallery-main-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.sp-gallery .sp-gallery-main .sp-gallery-main-img:hover {
  transform: scale(1.03);
}
.sp-gallery .sp-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  z-index: 2;
}
.sp-gallery .sp-badge.badge-sale {
  background: var(--g3);
  color: var(--ink);
}
.sp-gallery .sp-badge.badge-featured {
  background: var(--brown-1);
  color: #f5edd8;
}
.sp-gallery .sp-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sp-gallery .sp-thumbs .sp-thumb {
  width: calc(25% - 8px);
  aspect-ratio: 1/1;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}
.sp-gallery .sp-thumbs .sp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 0.2s;
}
.sp-gallery .sp-thumbs .sp-thumb:hover img, .sp-gallery .sp-thumbs .sp-thumb.active img {
  filter: brightness(1);
}
.sp-gallery .sp-thumbs .sp-thumb.active {
  border-color: var(--g3);
}

.sp-info .sp-cat {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--g2);
  margin-bottom: 14px;
  font-weight: 500;
}
.sp-info .sp-cat a {
  color: inherit;
  text-decoration: none;
}
.sp-info .sp-cat a:hover {
  color: var(--g3);
}
.sp-info .sp-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--brown-1);
  line-height: 1.1;
  margin-bottom: 16px;
}
.sp-info .sp-rating {
  margin-bottom: 20px;
}
.sp-info .sp-rating .woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sp-info .sp-rating .woocommerce-product-rating .star-rating {
  color: var(--g3);
  font-size: 14px;
}
.sp-info .sp-rating .woocommerce-product-rating .woocommerce-review-link {
  font-size: 12px;
  color: var(--brown-3);
  text-decoration: none;
}
.sp-info .sp-rating .woocommerce-product-rating .woocommerce-review-link:hover {
  color: var(--g2);
}
.sp-info .sp-price {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(160, 133, 85, 0.14);
}
.sp-info .sp-price .price {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--brown-1);
}
.sp-info .sp-price .price del {
  font-size: 20px;
  color: var(--brown-3);
  margin-right: 10px;
  opacity: 0.6;
}
.sp-info .sp-price .price ins {
  text-decoration: none;
  color: var(--g2);
}
.sp-info .sp-short-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--brown-2);
  font-weight: 300;
  margin-bottom: 28px;
}
.sp-info .sp-short-desc p {
  margin-bottom: 10px;
}
.sp-info .sp-cart {
  margin-bottom: 28px;
}
.sp-info .sp-cart form.cart {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.sp-info .sp-cart form.cart .quantity {
  display: flex;
  align-items: center;
  border: 1px solid rgba(160, 133, 85, 0.3);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.sp-info .sp-cart form.cart .quantity input[type=number] {
  width: 60px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 15px;
  padding: 12px 8px;
  font-family: "DM Sans", sans-serif;
  color: var(--brown-1);
  background: transparent;
}
.sp-info .sp-cart form.cart .quantity input[type=number]::-webkit-inner-spin-button, .sp-info .sp-cart form.cart .quantity input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.sp-info .sp-cart form.cart .single_add_to_cart_button {
  flex: 1;
  min-width: 180px;
  padding: 14px 28px;
  background: var(--logo-grad);
  border: none;
  border-radius: var(--radius);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: var(--transition);
}
.sp-info .sp-cart form.cart .single_add_to_cart_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(220, 194, 52, 0.3);
}
.sp-info .sp-usps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid rgba(160, 133, 85, 0.12);
  border-bottom: 1px solid rgba(160, 133, 85, 0.12);
  margin-bottom: 24px;
}
.sp-info .sp-usps .sp-usp {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--brown-2);
}
.sp-info .sp-usps .sp-usp svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--g3);
  fill: none;
  stroke-width: 2.5;
}
.sp-info .sp-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-info .sp-meta .sp-meta-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 12px;
}
.sp-info .sp-meta .sp-meta-row .sp-meta-label {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brown-3);
  font-size: 10px;
  min-width: 100px;
  flex-shrink: 0;
}
.sp-info .sp-meta .sp-meta-row .sp-meta-val {
  color: var(--brown-2);
}
.sp-info .sp-meta .sp-meta-row .sp-meta-val a {
  color: var(--brown-2);
  text-decoration: none;
}
.sp-info .sp-meta .sp-meta-row .sp-meta-val a:hover {
  color: var(--g2);
}

.sp-tabs-section {
  background: #fff;
  padding: 72px 0;
  border-top: 1px solid rgba(160, 133, 85, 0.12);
  border-bottom: 1px solid rgba(160, 133, 85, 0.12);
}
.sp-tabs-section .woocommerce-tabs .tabs {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  border-bottom: 1px solid rgba(160, 133, 85, 0.14);
  margin-bottom: 48px;
}
.sp-tabs-section .woocommerce-tabs .tabs li a {
  display: block;
  padding: 14px 28px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brown-3);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.sp-tabs-section .woocommerce-tabs .tabs li a:hover {
  color: var(--brown-1);
}
.sp-tabs-section .woocommerce-tabs .tabs li.active a {
  color: var(--brown-1);
  border-bottom-color: var(--g3);
}
.sp-tabs-section .woocommerce-tabs .woocommerce-Tabs-panel {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--brown-2);
  font-weight: 300;
}
.sp-tabs-section .woocommerce-tabs .woocommerce-Tabs-panel h2 {
  display: none;
}
.sp-tabs-section .woocommerce-tabs .woocommerce-Tabs-panel p {
  margin-bottom: 16px;
}
.sp-tabs-section .woocommerce-tabs .woocommerce-Tabs-panel table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.sp-tabs-section .woocommerce-tabs .woocommerce-Tabs-panel table th,
.sp-tabs-section .woocommerce-tabs .woocommerce-Tabs-panel table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(160, 133, 85, 0.1);
  text-align: left;
}
.sp-tabs-section .woocommerce-tabs .woocommerce-Tabs-panel table th {
  color: var(--brown-3);
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sp-tabs-section .woocommerce-tabs #reviews .woocommerce-Reviews-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--brown-1);
  margin-bottom: 32px;
}
.sp-tabs-section .woocommerce-tabs #reviews .comment_container {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(160, 133, 85, 0.1);
}
.sp-tabs-section .woocommerce-tabs #reviews .comment_container .comment-text {
  flex: 1;
}
.sp-tabs-section .woocommerce-tabs #reviews .comment_container .comment-text .star-rating {
  color: var(--g3);
  font-size: 13px;
  margin-bottom: 8px;
}
.sp-tabs-section .woocommerce-tabs #reviews .comment_container .comment-text p.meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brown-3);
  margin-bottom: 12px;
}
.sp-tabs-section .woocommerce-tabs #reviews .comment_container .comment-text p.meta strong {
  color: var(--brown-1);
}
.sp-tabs-section .woocommerce-tabs #reviews .comment_container .comment-text .description p {
  font-size: 14px;
  color: var(--brown-2);
  line-height: 1.75;
}
.sp-tabs-section .woocommerce-tabs #reviews #review_form {
  margin-top: 48px;
}
.sp-tabs-section .woocommerce-tabs #reviews #review_form .comment-reply-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--brown-1);
  margin-bottom: 24px;
}
.sp-tabs-section .woocommerce-tabs #reviews #review_form textarea,
.sp-tabs-section .woocommerce-tabs #reviews #review_form input[type=text],
.sp-tabs-section .woocommerce-tabs #reviews #review_form input[type=email] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(160, 133, 85, 0.25);
  border-radius: var(--radius);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--brown-1);
  background: var(--sand);
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 14px;
}
.sp-tabs-section .woocommerce-tabs #reviews #review_form textarea:focus,
.sp-tabs-section .woocommerce-tabs #reviews #review_form input[type=text]:focus,
.sp-tabs-section .woocommerce-tabs #reviews #review_form input[type=email]:focus {
  border-color: var(--g3);
}
.sp-tabs-section .woocommerce-tabs #reviews #review_form textarea {
  min-height: 120px;
  resize: vertical;
}
.sp-tabs-section .woocommerce-tabs #reviews #review_form input[type=submit] {
  padding: 14px 32px;
  background: var(--logo-grad);
  border: none;
  border-radius: var(--radius);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: var(--transition);
}
.sp-tabs-section .woocommerce-tabs #reviews #review_form input[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 194, 52, 0.25);
}

.sp-related {
  background: var(--sand-2);
  padding: 88px 0;
}
.sp-related .sp-related-head {
  margin-bottom: 48px;
}
.sp-related .sp-related-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--brown-1);
  line-height: 1.15;
}
.sp-related .sp-related-head h2 em {
  font-style: italic;
  color: var(--g2);
}
.sp-related .sp-related-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 900px) {
  .sp-main {
    padding: 40px 0 60px;
  }
  .sp-main .sp-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sp-gallery {
    position: static;
  }

  .sp-info .sp-title {
    font-size: 32px;
  }

  .sp-related {
    padding: 56px 0;
  }
  .sp-related .sp-related-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}