:root {
  --gold: #C9A84C;
  --gold-light: #E2D5A0;
  --gold-dark: #9A7B2E;
  --black: #0A0A0A;
  --charcoal: #1A1A1A;
  --dark-gray: #2A2A2A;
  --medium-gray: #555;
  --light-gray: #999;
  --off-white: #F5F2EB;
  --cream: #FAF8F3;
  --white: #FFFFFF;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============ ANNOUNCEMENT BAR ============ */
.announcement {
  background: var(--charcoal);
  color: var(--gold-light);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============ NAVIGATION ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,248,243,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
}
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.logo-img-footer {
  height: 48px;
  filter: brightness(0) invert(1);
}
.hero-logo-img {
  height: 100px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  animation: fadeUp 1s ease both;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--medium-gray);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }
.nav-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cart-count {
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Mobile menu */
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); transition: all 0.3s; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hero-banner.png') center center / cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.85) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(201,168,76,0.03) 80px, rgba(201,168,76,0.03) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(201,168,76,0.03) 80px, rgba(201,168,76,0.03) 81px);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 40px;
  animation: fadeUp 1.2s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-label {
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
  animation: fadeUp 1s 0.2s ease both;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeUp 1s 0.3s ease both;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: 18px;
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 1s 0.4s ease both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.5s ease both;
}
.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.25);
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  animation: fadeUp 1s 0.6s ease both;
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat-label {
  font-size: 11px;
  color: var(--light-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 28px 40px;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.trust-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.5px;
}
.trust-sub {
  font-size: 11px;
  color: var(--light-gray);
  margin-top: 2px;
}

/* ============ SECTION HELPERS ============ */
.section {
  padding: 100px 40px;
}
.section-dark {
  background: var(--charcoal);
  color: var(--white);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--medium-gray);
  line-height: 1.6;
  font-weight: 300;
}
.section-dark .section-sub { color: var(--light-gray); }

/* ============ COLLECTIONS GRID ============ */
.collections-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.collection-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}
.collection-card:hover .collection-card-bg { transform: scale(1.08); }
.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
  transition: background 0.4s;
}
.collection-card:hover .collection-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%);
}
.collection-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
}
.collection-card-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.collection-card-title {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 6px;
}
.collection-card-count {
  font-size: 13px;
  color: var(--light-gray);
}
.collection-card-arrow {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}
.collection-card:hover .collection-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* Collection card bg images */
.cc-mens .collection-card-bg { background: url('collection-mens.png') center center / cover no-repeat; }
.cc-womens .collection-card-bg { background: url('collection-womens.png') center center / cover no-repeat; }
.cc-niche .collection-card-bg { background: url('collection-niche.png') center center / cover no-repeat; }
.cc-under10 .collection-card-bg { background: url('collection-under10.png') center center / cover no-repeat; }
.cc-bundles .collection-card-bg { background: url('collection-bundles.png') center center / cover no-repeat; }
.cc-best .collection-card-bg { background: url('collection-bestsellers.png') center center / cover no-repeat; }

/* ============ PRODUCTS GRID ============ */
.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all 0.4s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.product-img {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.product-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  transition: transform 0.5s;
}
.product-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-img-photo { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 10px;
}
.product-info {
  padding: 20px;
}
.product-brand {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
}
.product-price span {
  font-size: 12px;
  font-weight: 400;
  color: var(--light-gray);
}
.product-sizes {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}
.product-size {
  font-size: 10px;
  padding: 4px 8px;
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--medium-gray);
  letter-spacing: 0.5px;
}
.view-all-wrap {
  text-align: center;
  margin-top: 50px;
}

/* ============ HOW IT WORKS ============ */
.how-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  text-align: center;
}
.how-step-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}
.how-step-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.how-step-desc {
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.7;
}

/* ============ WHAT IS A DECANT ============ */
.decant-section {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.decant-visual {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--charcoal), #2a2520);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.decant-visual::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
}
.decant-visual-icon { font-size: 80px; position: relative; z-index: 1; }
.decant-text h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--charcoal);
}
.decant-text p {
  font-size: 15px;
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.decant-benefits {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.decant-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--charcoal);
  font-weight: 500;
}
.decant-benefit-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 36px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 3px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--light-gray);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}
.testimonial-detail {
  font-size: 11px;
  color: var(--light-gray);
  margin-top: 4px;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon {
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 14px;
  color: var(--medium-gray);
  line-height: 1.7;
}

/* ============ NEWSLETTER ============ */
.newsletter {
  text-align: center;
  background: var(--charcoal);
  padding: 80px 40px;
}
.newsletter h3 {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}
.newsletter p {
  color: var(--light-gray);
  font-size: 15px;
  margin-bottom: 30px;
}
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 14px;
  font-family: var(--sans);
  outline: none;
}
.newsletter-form input::placeholder { color: var(--light-gray); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  padding: 16px 32px;
  background: var(--gold);
  border: none;
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.3s;
}
.newsletter-form button:hover { background: var(--gold-light); }

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  padding: 60px 40px 30px;
  color: var(--light-gray);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { font-size: 20px; display: inline-block; margin-bottom: 16px; }
.footer-desc { font-size: 13px; line-height: 1.7; color: var(--light-gray); max-width: 300px; }
.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--medium-gray); }
.footer-payments {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--medium-gray);
  letter-spacing: 1px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 60px 20px; }
  .nav-inner { padding: 14px 20px; position: relative; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 999;
  }
  .nav-links.mobile-open {
    display: flex;
  }
  .nav-links a {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 14px;
  }
  .nav-links a::after { display: none; }
  .hamburger { display: flex; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero { min-height: 80vh; }
  .hero-stats { gap: 30px; }
  .hero-stat-num { font-size: 28px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .collections-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .decant-section { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .trust-inner { justify-content: center; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-info { padding: 14px; }
  .product-name { font-size: 14px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ SHOPIFY BUY BUTTON OVERRIDES ============ */
.buy-button-container {
  margin-top: 10px;
}
.buy-button-container iframe {
  width: 100% !important;
}
.shopify-buy__btn-wrapper {
  margin-top: 4px !important;
}
.shopify-buy__option-select-wrapper {
  margin-bottom: 4px !important;
}
/* Product cards are no longer links */
.product-card {
  cursor: default;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* ============ DYNAMIC PRODUCT LOADING ============ */
.products-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}
.products-loading p {
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ============ FILTER BAR ============ */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding: 0 20px;
}
.filter-pill {
  padding: 10px 22px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: transparent;
  color: var(--medium-gray);
  cursor: pointer;
  transition: all 0.3s;
}
.filter-pill:hover {
  border-color: var(--gold);
  color: var(--charcoal);
}
.filter-pill.active {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.product-card.filter-hidden {
  display: none !important;
}
.filter-count {
  text-align: center;
  margin-bottom: 30px;
  font-size: 13px;
  color: var(--light-gray);
  letter-spacing: 1px;
}

/* Decant info section photo */
.decant-visual-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
