/*body*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

*,
*::before,
*::after {
  font-family: Noah, sans-serif;
}

body {
  font-family: Noah, sans-serif;
  background: #f6f6f6 !important;
}

/* =========================================================
   Garnishme — Hero Slider
   Classes: .hero-slider, .hero-slide, .hero-overlay,
            .hero-content, .eyebrow, .hero-location (NEW —
            add this to a 4th text field for the location line),
            .btn.btn-primary, .hero-dots, .hero-dot, state: .on
   ========================================================= */

.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 640px;
  overflow: hidden;
  border-radius: 0px !important;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease;
}

.hero-slide.on {
  opacity: 1;
  visibility: visible;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.35) 45%,
      rgba(0, 0, 0, 0.15) 100%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  width: 100%;
  max-width: 40%;
  text-align: left;
  padding: 0;
  color: #fff;
}

.hero-content .eyebrow {
  margin: 0 0 18px;
  font-family: Noah, sans-serif;
  font-size: 13px;
  letter-spacing: 6px;
  color: #d9d9d9;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0 0 14px;
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  font-size: 58px;
  line-height: 1.1;
  color: #fdfdfd;
}

.hero-content p {
  margin: 0 0 8px;
  font-family: "Libre Caslon Display", serif;
  font-style: italic;
  font-size: 20px;
  color: #c9a15d;
}

/* Add this class to the 4th field (location line) */
.hero-content .hero-location {
  margin: 0 0 30px;
  font-family: Noah, sans-serif;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #e6e6e6;
}

.hero-content .btn.btn-primary {
  display: inline-block;
  padding: 16px 34px;
  border: 1px solid #c9a15d;
  color: #181717;
  background: transparent;
  font-family: "Libre Caslon Display", serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.hero-content .btn.btn-primary:hover {
  background: #c9a15d;
  color: #1a1a1a;
}

.hero-dots {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.hero-dot.on {
  background: #c9a15d;
  border-color: #c9a15d;
}

@media (max-width: 768px) {
  .hero-content {
    left: 24px;
    max-width: 100%;
    right: 24px;
    width: auto;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-dots {
    right: 16px;
  }


}

/* =========================================================
   Garnishme — Product Rail (light/cream style)
   Classes: .agm-prod-rail-dark (section), .sec-head-center,
            .eyebrow (SCOPED under .sec-head-center — do NOT
            let this bleed into the hero's .eyebrow, which is
            scoped under .hero-content), .agm-prod-grid-dark,
            .agm-prod-d, .agm-prod-d__img, .agm-prod-d__title,
            .agm-prod-d__sub, .agm-prod-d__price,
            .agm-prod-d__meta (NEW wrapper), .agm-prod-d__rating
            (NEW — dynamic partial-fill via --r CSS var, see PHP below)
   ========================================================= */

.agm-prod-rail-dark {
  background: #ece7de;
  padding: 30px 24px;
  margin-top: -25px;
}

.agm-prod-rail-dark .wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.sec-head-center {
  text-align: center;
  margin-bottom: 48px;
  margin-top: 30px;
}

.sec-head-center .eyebrow {
  margin: 0 0 14px;
  font-family: Noah, sans-serif;
  font-size: 10px;
  /* letter-spacing: 3px; */
  color: #a9835a;
  text-transform: uppercase;
}

.eyebrow {
  font-size: .76rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-dark);
}

.sec-head-center h2 {
  margin: 0;
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  font-size: 40px;
  color: #262626;
}

.agm-prod-grid-dark {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.agm-prod-d {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.35s ease;
}

.agm-prod-d:hover {
  transform: translateY(-6px);
}

.agm-prod-d__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 18px;
  background: transparent;
  transition: transform 0.35s ease;
}

.agm-prod-d:hover .agm-prod-d__img {
  /* Removed box-shadow for a clean transparent look */
}

.agm-prod-d__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.agm-prod-d:hover .agm-prod-d__img img {
  transform: scale(1.06);
}

.agm-prod-d__title {
  margin: 0 0 4px;
  font-family: Noah, sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #262626;
  transition: color 0.25s ease;
}

.agm-prod-d:hover .agm-prod-d__title {
  color: #a9835a;
}

.agm-prod-d__sub {
  margin: 0 0 14px;
  font-family: Noah, sans-serif;
  font-size: 12px;
  color: #8f8a80;
}

/* NEW wrapper — wrap rating + price together in the PHP:
   <div class="agm-prod-d__meta">
     <span class="agm-prod-d__rating"></span>
     <span class="agm-prod-d__price">$8.00</span>
   </div>
*/
.agm-prod-d__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Dynamic rating: set inline style="--r: 4.5" (0–5) on .agm-prod-d__rating
   in the PHP, e.g. style="--r: <?= esc($rating) ?>" where $rating = $p['rating'] ?? 5;
   Empty stars sit behind, filled stars are clipped to the rating's width. */
.agm-prod-d__rating {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 2px;
  color: #ddd6c7;
  /* empty star color */
}

.agm-prod-d__rating::before {
  content: "★★★★★";
}

.agm-prod-d__rating::after {
  content: "★★★★★";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(var(--r, 5) / 5 * 100%);
  overflow: hidden;
  white-space: nowrap;
  color: #e2a32d;
}

.agm-prod-d__price {
  font-family: Noah, sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #262626;
}

.agm-prod-grid-dark .agm-prod-d:nth-child(n+5) {
  display: none;
}

@media (max-width: 992px) {
  .agm-prod-grid-dark .agm-prod-d:nth-child(n+3) {
    display: none;
  }

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

}

@media (max-width: 560px) {
  .agm-prod-grid-dark .agm-prod-d:nth-child(n+2) {
    display: none;
  }

  .agm-prod-grid-dark {
    grid-template-columns: 1fr;
  }

  .sec-head-center h2 {
    font-size: 28px;
  }

}

/* =========================================================
   Garnishme — About section
   Classes: .agm-about, .agm-hero, .agm-hero__inner,
            .agm-hero__eyebrow, .agm-hero__heading, .agm-hero__text,
            .agm-stats, .agm-stats__inner, .agm-stats__grid,
            .agm-stat, .agm-stat__num, .agm-stat__label
   Note: .agm-hero and .agm-hero__eyebrow are distinct names from
   the homepage's .hero-slider / .eyebrow — no clash there.
   The overlap effect (stats bar pulled up over the hero image and
   poking past its own footprint) is done with a negative margin-top
   on .agm-stats plus z-index, no JS/positioning needed.
   ========================================================= */

.agm-about {
  position: relative;
  margin-top: -25px;
}

.agm-hero {
  position: relative;
  min-height: 600px;
  padding: 150px 0 140px;
  background-image: url("/uploads/shop4/assets/about-garnishme-hero.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.agm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.6) 32%,
      rgba(0, 0, 0, 0.2) 58%,
      rgba(0, 0, 0, 0) 78%);
}

.agm-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-left: 9%;
  padding-right: 24px;
}

.agm-hero__eyebrow {
  /*margin: 0 0 14px;*/
  font-family: Noah, sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: #a9835a;
  text-transform: uppercase;
}

.agm-hero__heading {
  margin: 0 0 26px;
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  font-size: 52px;
  color: #d7a53c;
}

.agm-hero__text {
  margin: 0 0 18px;
  font-family: Noah, sans-serif;
  font-size: 12px;
  /*line-height: 1.8;*/
  color: #d3d3d3;
}

.agm-hero__text:last-child {
  margin-bottom: 0;
}

/* ---- Overlapping stats bar ---- */

.agm-stats {
  position: relative;
  z-index: 2;
  margin-top: -120px;
  /* pulls the bar up over the hero image */
}

.agm-stats__inner {
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
  background: #000000;
  padding: 34px 40px;
}

.agm-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.agm-stat__num {
  display: block;
  font-family: Noah, sans-serif;
  font-weight: 700;
  font-size: 38px;
  color: #d7a53c;
}

.agm-stat__label {
  display: block;
  margin-top: 6px;
  font-family: Noah, sans-serif;
  font-size: 13px;
  color: #cfcfcf;
}

@media (max-width: 992px) {
  .agm-hero__heading {
    font-size: 40px;
  }

  .agm-stats {
    margin-top: -90px;
  }

  .agm-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

}

@media (max-width: 640px) {
  .agm-hero {
    padding: 110px 0 180px;
    min-height: 0;
  }

  .agm-hero__inner {
    margin-left: 6%;
    max-width: 90%;
  }

  .agm-stats {
    margin-top: -130px;
  }

  .agm-stats__inner {
    width: 92%;
    padding: 28px 24px;
  }

  .agm-stats__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }


}

/*====================================================
  GarnishMe Testimonial Section
====================================================*/

.top-sel {
  margin-top: -85px;
}

.agm-testi-wrap {
  position: relative;
  width: 100%;
  margin: 0 0 220px;
}

.agm-testi {
  position: relative;
  width: 100%;
  min-height: 460px;
  overflow: hidden;
}

.agm-testi__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.agm-testi__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, .88) 0%,
      rgba(0, 0, 0, .68) 45%,
      rgba(0, 0, 0, .45) 100%);
}

.agm-testi__inner {

  width: 100%;
  max-width: 1200px;

  margin: 0 auto;

  min-height: 460px;

  display: flex;

  align-items: center;

  padding: 50px 40px;

  position: relative;

  z-index: 2;
}

.agm-testi__content {
  width: 55%;
}

.agm-testi__track {
  position: relative;
  min-height: 320px;
}

.agm-testi__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}

.agm-testi__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.agm-testi__stars {
  color: #cfa24f;
  font-size: 20px;
  letter-spacing: 5px;
  margin-bottom: 25px;
}

.agm-testi__quote {

  margin: 0;
  font-family: Noah, sans-serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.75;
  color: #fff;
  max-width: 560px;
}

.agm-testi__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.agm-testi__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
}

.agm-testi__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agm-testi__author-text {
  display: flex;
  flex-direction: column;
}

.agm-testi__name {
  font-family: "Libre Caslon Display", serif;
  font-size: 24px;
  color: #cfa24f;
}

.agm-testi__role {
  margin-top: 5px;
  color: #ddd;
  font-size: 14px;
}

.agm-testi__dots {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.agm-testi__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: .3s;
}

.agm-testi__dot.is-active {
  background: #cfa24f;
  transform: scale(1.2);
}

/*==========================================
 Floating Product Image
==========================================*/

.agm-testi__floating {

  position: absolute;

  top: 40px;

  right: calc((100vw - 1200px)/2 + 40px);

  width: 400px;

  z-index: 100;
}

.agm-testi__floating img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .40);
}

/*==========================================
 Responsive
==========================================*/

@media (max-width:1100px) {

  .agm-testi-wrap {
    margin-bottom: 60px;
  }

  .agm-testi {
    min-height: auto;
  }

  .agm-testi__inner {
    min-height: auto;
    padding: 70px 30px 40px;
  }

  .agm-testi__content {
    width: 100%;
  }

  .agm-testi__track {
    min-height: 360px;
  }

  .agm-testi__floating {
    position: relative;
    right: auto;
    top: auto;
    width: 360px;
    margin: 40px auto 0;
  }

}

@media (max-width:768px) {

  .agm-testi__quote {
    font-size: 18px;
    line-height: 1.8;
  }

  .agm-testi__name {
    font-size: 21px;
  }

  .agm-testi__inner {
    padding: 60px 20px 30px;
  }

  .agm-testi__floating {
    width: 280px;
  }



}

/* =========================================================
   Garnishme — Features Strip (Breakfast / Lunch / Dinner)
   Classes: .agm-features, .agm-features__banner (top-right image
            strip — set as background-image or <img> per markup),
            .agm-features__inner, .agm-features__grid, .agm-feature,
            .agm-feature__icon, .agm-feature__body
   Note: New, independent block — does not touch .hero-*, .agm-prod-*,
   .agm-hero*, .agm-stats*, or .agm-testi* rules above.
   ========================================================= */

.agm-features {
  position: relative;
  background: #f6f6f6;
  padding: 0 0 90px;
}

/* Top-right banner strip — add a container above .agm-features__inner
   in the HTML if you want it as an <img>/<div> rather than a
   ::before background; shown here as a ::before for zero markup change. */
.agm-features::before {
  content: "";
  display: block;
  margin-left: auto;
  width: 34%;
  min-width: 340px;
  height: 0px;
  background-image: url("/uploads/shop4/assets/features-banner.jpg");
  background-size: cover;
  background-position: center;
}

.agm-features__inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0px 1px 0 0px;
}

.agm-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 105px;
}

.agm-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.agm-feature__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #c9a15d;
}

.agm-feature__icon svg {
  width: 40px;
  height: 40px;
}

.agm-feature__body h3 {
  margin: 0 0 12px;
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  font-size: 26px;
  color: #1c1c1c;
}

.agm-feature__body p {
  margin: 0;
  font-family: Noah, sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: #8a8a8a;
  max-width: 350px;
}

@media (max-width: 992px) {
  .agm-features__grid {
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    gap: 40px 24px;
  }

  .agm-features::before {
    width: 50%;
  }

}

@media (max-width: 640px) {
  .agm-features__grid {
    grid-template-columns: 1fr;
  }

  .agm-features::before {
    width: 70%;
    height: 60px;
  }

  .agm-features__inner {
    padding-top: 50px;
  }


}

/* =========================================================
   Garnishme — Collection Slider (dark section, 2 full-width cards)
   Classes: .collection, .collection .eyebrow (scoped so it does
            NOT clash with .hero-content .eyebrow or
            .sec-head-center .eyebrow used elsewhere), .section-title.serif,
            .slider-wrap, .slider-track, .slide-card (now an <a>),
            .slide-card img, .slide-caption, .tag, .slider-arrow,
            .arrow-left, .arrow-right
   ========================================================= */

.collection {
  position: relative;

  padding: 90px 24px 0;
  text-align: center;
  overflow: visible;
  background-image: url(/uploads/promo-cover.webp);

}

/* Upper section with transparent image */
.collection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Cover the entire section */
  background-image: linear-gradient(to bottom, rgba(10, 9, 8, 0.6), rgba(10, 9, 8, 0.9)), url("/uploads/testi-one.png");
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  filter: blur(6px);
  transform: scale(1.02);
  z-index: -1;
}

.collection .eyebrow {
  margin: 0 0 16px;
  font-family: Noah, sans-serif;
  font-size: 13px;
  /*letter-spacing: 4px;*/
  color: #c9a15d;
  text-transform: uppercase;
}

.collection .section-title.serif {
  margin: 0 0 70px;
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  font-size: 48px;
  color: #d7a53c;
}

.slider-wrap {
  position: relative;
  max-width: 840px;
  /* Reduced further to make cards smaller */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center the cards */
  gap: 16px;
}

.slider-track {
  display: flex;
  justify-content: center;
  /* Center the cards within the track */
  gap: 24px;
  overflow: hidden;
  width: 100%;
}

/* card is an <a> now — reset link defaults, fill the section
   in two equal full-width columns */
.slide-card {
  position: relative;
  display: block;
  flex: 0 0 calc((100% - 48px) / 3);
  /* 3 columns! */
  aspect-ratio: 4 / 5;
  /* Retain ratio, but now they are appropriately sized */
  overflow: hidden;
  background: #000;
  color: inherit;
  text-decoration: none;
  transition: transform 0.35s ease;
}

.slide-card:hover {
  transform: translateY(-4px);
}

.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.slide-card:hover img {
  transform: scale(1.05);
}

.slide-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.35) 35%,
      rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
}

.slide-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  text-align: left;
}

.slide-caption .tag {
  margin: 0 0 10px;
  font-family: Noah, sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: #c9a15d;
  text-transform: uppercase;
}

.slide-caption h3 {
  margin: 0 0 8px;
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  font-size: 26px;
  color: #fdfdfd;
}

.slide-caption p {
  margin: 0;
  font-family: Noah, sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  color: #d8d8d8;
  max-width: 90%;
}

.slider-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.slider-arrow:hover {
  background: #c9a15d;
  border-color: #c9a15d;
  color: #1a1a1a;
}

@media (max-width: 992px) {
  .collection .section-title.serif {
    font-size: 34px;
  }

  .slide-card {
    flex: 0 0 calc((100% - 24px) / 2);
    /* 2 columns on tablet */
  }

}

@media (max-width: 640px) {
  .slider-wrap {
    gap: 8px;
  }

  .slide-card {
    flex: 0 0 100%;
  }

  .slider-arrow {
    display: flex;
  }

  .collection .section-title.serif {
    font-size: 28px;
  }

  .collection {
    padding: 60px 16px 70px;
  }


}

/* =========================================================
   Garnishme — New Arrivals (dark variant of product rail)
   Scoped entirely under ".new_items" so none of this touches
   the existing light/cream ".agm-prod-rail-dark" / ".agm-prod-d"
   rules used elsewhere — those keep working as-is for other
   sections that don't carry the "new_items" class.
   ========================================================= */

.new_items.agm-prod-rail-dark {
  overflow: hidden;
  z-index: 1;
}

/* Upper section with transparent image */
.collection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Cover the entire section */
  background-image: linear-gradient(to bottom, rgba(10, 9, 8, 0.6), rgba(10, 9, 8, 0.9)), url("/uploads/testi-one.png");
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  filter: blur(6px);
  transform: scale(1.02);
  z-index: -1;
}

.collection .eyebrow {

  margin: 0 0 14px;
  font-family: Noah, sans-serif;
  font-size: 10px;
  color: #a9835a;
  text-transform: uppercase;
}

.collection .section-title.serif {
  margin: 0 0 70px;
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  font-size: 48px;
  color: #d7a53c;
}

.slider-wrap {
  position: relative;
  max-width: 840px;
  /* Reduced further to make cards smaller */
  margin: 0 auto -140px;
  /* Negative bottom margin to overlap next section */
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center the cards */
  gap: 16px;
  z-index: 3;
}

.slider-track {
  display: flex;
  justify-content: center;
  /* Center the cards within the track */
  gap: 24px;
  overflow: hidden;
  width: 100%;
}

/* card is an <a> now — reset link defaults, fill the section
   in two equal full-width columns */
.slide-card {
  position: relative;
  display: block;
  flex: 0 0 calc((100% - 48px) / 3);
  /* 3 columns! */
  aspect-ratio: 4 / 5;
  /* Retain ratio, but now they are appropriately sized */
  overflow: hidden;
  background: #000;
  color: inherit;
  text-decoration: none;
  transition: transform 0.35s ease;
}

.slide-card:hover {
  transform: translateY(-4px);
}

.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.slide-card:hover img {
  transform: scale(1.05);
}

.slide-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.35) 35%,
      rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
}

.slide-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  text-align: left;
}

.slide-caption .tag {
  margin: 0 0 10px;
  font-family: Noah, sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: #c9a15d;
  text-transform: uppercase;
}

.slide-caption h3 {
  margin: 0 0 8px;
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  font-size: 26px;
  color: #fdfdfd;
}

.slide-caption p {
  margin: 0;
  font-family: Noah, sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  color: #d8d8d8;
  max-width: 90%;
}

.slider-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.slider-arrow:hover {
  background: #c9a15d;
  border-color: #c9a15d;
  color: #1a1a1a;
}

@media (max-width: 992px) {
  .collection .section-title.serif {
    font-size: 34px;
  }

  .slide-card {
    flex: 0 0 calc((100% - 24px) / 2);
    /* 2 columns on tablet */
  }

}

@media (max-width: 640px) {
  .slider-wrap {
    gap: 8px;
  }

  .slide-card {
    flex: 0 0 100%;
  }

  .slider-arrow {
    display: flex;
  }

  .collection .section-title.serif {
    font-size: 28px;
  }

  .collection {
    padding: 60px 16px 70px;
  }


}

/* =========================================================
   Garnishme — New Arrivals (dark variant of product rail)
   Scoped entirely under ".new_items" so none of this touches
   the existing light/cream ".agm-prod-rail-dark" / ".agm-prod-d"
   rules used elsewhere — those keep working as-is for other
   sections that don't carry the "new_items" class.
   ========================================================= */

.new_items.agm-prod-rail-dark {
  background: #0d0c0b;
  padding: 190px 24px 90px;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.new_items .sec-head-center {
  display: none !important;
}

.new_items .agm-prod-grid-dark {
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.new_items .agm-prod-d {
  text-align: center;
}

.new_items .agm-prod-d__img {
  aspect-ratio: 1 / 1;
  background: transparent;
  margin-bottom: 22px;
}

.new_items .agm-prod-d__img img {
  object-fit: contain;
}

.new_items .agm-prod-d:hover .agm-prod-d__img {
  box-shadow: none;
}

.new_items .agm-prod-d__title {
  font-family: Noah, sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #c9a15d;
  margin: 0 0 4px;
}

.new_items .agm-prod-d:hover .agm-prod-d__title {
  color: #f0c987;
}

.new_items .agm-prod-d__sub {
  font-family: Noah, sans-serif;
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 300;
  color: #999;
}

/* markup repeats .agm-prod-d__sub twice — collapse the duplicate line */
.new_items .agm-prod-d__sub~.agm-prod-d__sub {
  display: none;
}

.new_items .agm-prod-d__meta {
  justify-content: center;
}

.new_items .agm-prod-d__rating {
  display: none;
}

.new_items .agm-prod-d__price {
  font-family: Noah, sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #e0a23c;
}

@media (max-width: 992px) {
  .new_items .agm-prod-grid-dark {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 560px) {
  .new_items .agm-prod-grid-dark {
    grid-template-columns: 1fr;
  }



}

/* =========================================================
   Garnishme — Hero Slider (badge + arrows variant)
   Classes: .agm-hero-slider, .agm-hero-slider__bg,
            .agm-hero-slider__overlay, .agm-hero-slider__nav,
            .agm-hero-slider__nav--prev/--next,
            .agm-hero-slider__inner, .agm-hero-slider__badge,
            .agm-hero-slider__badge-shape, .agm-hero-slider__badge-text,
            .agm-hero-slider__eyebrow, .agm-hero-slider__heading,
            .agm-hero-slider__subtext
   Note: independent namespace from .hero-slider/.hero-content used
   on the homepage slider — no overlap, nothing there is touched.
   ========================================================= */

.agm-hero-slider {
  position: relative;
  width: 100%;
  height: 78vh;
  min-height: 560px;
  overflow: hidden;
}

.agm-hero-slider__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.agm-hero-slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.25) 40%,
      rgba(0, 0, 0, 0.65) 100%);
}

.agm-hero-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.agm-hero-slider__nav svg {
  width: 20px;
  height: 20px;
}

.agm-hero-slider__nav:hover {
  background: #c9a15d;
  border-color: #c9a15d;
}

.agm-hero-slider__nav--prev {
  left: 32px;
}

.agm-hero-slider__nav--next {
  right: 32px;
}

.agm-hero-slider__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  width: 100%;
  padding: 0 0 0 60px;
}

.agm-hero-slider__badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin-bottom: 28px;
  color: #c9a15d;
}

.agm-hero-slider__badge-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: rgba(201, 161, 93, 0.12);
  stroke: #c9a15d;
  stroke-width: 1.5;
}

.agm-hero-slider__badge-text {
  position: relative;
  z-index: 1;
  font-family: Noah, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #d9b26a;
  transform: rotate(-14deg);
}

.agm-hero-slider__eyebrow {
  margin: 0 0 16px;
  font-family: Noah, sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: #c9a15d;
  text-transform: uppercase;
}

.agm-hero-slider__heading {
  margin: 0 0 18px;
  max-width: 900px;
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 1.15;
  color: #fdfdfd;
}

.agm-hero-slider__subtext {
  margin: 0;
  font-family: Noah, sans-serif;
  font-size: 15px;
  color: #d8d8d8;
}

@media (max-width: 768px) {
  .agm-hero-slider__inner {
    padding: 0 40px;
  }

  .agm-hero-slider__heading {
    font-size: 32px;
  }

  .agm-hero-slider__nav--prev {
    left: 14px;
  }

  .agm-hero-slider__nav--next {
    right: 14px;
  }


}

/* =========================================================
   Garnishme — Wholesale / B2B Section
   Classes: .agm-wholesale, .agm-wholesale__inner,
            .agm-wholesale__col--text, .agm-wholesale__eyebrow,
            .agm-wholesale__heading, .agm-wholesale__desc,
            .agm-wholesale__list, .agm-wholesale__check,
            .agm-wholesale__actions, .agm-btn, .agm-btn--solid,
            .agm-btn--outline, .agm-wholesale__col--stats,
            .agm-stats-card, .agm-stats-card__cell,
            .agm-stats-card__num, .agm-stats-card__label,
            .agm-stats-card__word
   ========================================================= */

.agm-wholesale {
  position: relative;
  z-index: 2;
}

.agm-wholesale.is-overlap {
  margin-top: -90px;
}

@media (max-width: 992px) {
  .agm-wholesale.is-overlap {
    margin-top: -90px;
  }

}

@media (max-width: 640px) {
  .agm-wholesale.is-overlap {
    margin-top: -60px;
  }

}

.agm-wholesale {
  background: #141210;
  padding: 90px 24px;
  margin-left: 9%;
  width: 80%;
}

.agm-wholesale__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.agm-wholesale__eyebrow {
  margin: 0 0 18px;
  font-family: Noah, sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: #c9a15d;
  text-transform: uppercase;
}

.agm-wholesale__heading {
  margin: 0 0 26px;
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.25;
  color: #d7a53c;
}

.agm-wholesale__desc {
  margin: 0 0 30px;
  max-width: 460px;
  font-family: Noah, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #cfcfcf;
}

.agm-wholesale__list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.agm-wholesale__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Noah, sans-serif;
  font-size: 15px;
  color: #e8e8e8;
}

.agm-wholesale__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #d7a53c;
}

.agm-wholesale__check svg {
  width: 100%;
  height: 100%;
}

.agm-wholesale__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.agm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 32px;
  font-family: "Libre Caslon Display", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.agm-btn--solid {
  background: #e0b23c;
  color: #1a1a1a;
  border: 1px solid #e0b23c;
}

.agm-btn--solid:hover {
  opacity: 0.88;
}

.agm-btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.agm-btn--outline:hover {
  background: #fff;
  color: #1a1a1a;
}

.agm-stats-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: transparent;
  padding: 0;
  gap: 0;
  border: 1px solid #333;
  border-radius: 12px;
}

.agm-stats-card__cell {
  padding: 40px;
  text-align: left;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
}

.agm-stats-card__cell:nth-child(2n) {
  border-right: none;
}

.agm-stats-card__cell:nth-last-child(-n+2) {
  border-bottom: none;
}

.agm-stats-card__num {
  display: block;
  margin-bottom: 10px;
  font-family: Noah, sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #e0b23c;
}

.agm-stats-card__num small {
  font-size: 24px;
  font-weight: 700;
}

.agm-stats-card__word {
  font-family: Noah, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #e0b23c;
  text-transform: none;
  letter-spacing: 0;
}

.agm-stats-card__label {
  display: block;
  font-family: Noah, sans-serif;
  font-size: 14px;
  color: #999;
}

@media (max-width: 992px) {
  .agm-stats-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .agm-wholesale__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .agm-wholesale__heading {
    font-size: 34px;
  }

}

@media (max-width: 560px) {
  .agm-stats-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .agm-stats-card__cell {
    padding: 30px;
    border-right: none;
  }

  .agm-stats-card__cell:nth-last-child(-n+2) {
    border-bottom: 1px solid #333;
    /* Restore border for mobile stacked layout */
  }

  .agm-stats-card__cell:last-child {
    border-bottom: none;
    /* Last cell shouldn't have bottom border */
  }

  .agm-stats-card__num {
    font-size: 36px;
  }

  .agm-wholesale__actions {
    flex-direction: column;
  }

  .agm-btn {
    width: 100%;
  }

}

.white {
  background: #f6f6f6;
  margin-bottom: 90px !important;
}



/* =========================================================
   Garnishme — Why Bar Programs Switch to Us
   Classes: .agm-why, .agm-why__inner, .agm-why__head,
            .agm-why__eyebrow, .agm-why__heading, .agm-why__grid,
            .agm-why__cell, .agm-why__icon, .agm-why__contact,
            .agm-why__contact-info, .agm-why__phone, .agm-why__email,
            .agm-why__subscribe, .agm-why__social
   ========================================================= */

.agm-why {
  background: #0d0c0b;
  padding: 90px 24px 70px;
}

.agm-why__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.agm-why__head {
  text-align: center;
  margin-bottom: 56px;
}

.agm-why__eyebrow {
  margin: 0 0 16px;
  font-family: Noah, sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: #c9a15d;
  text-transform: uppercase;
}

.agm-why__heading {
  margin: 0;
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  font-size: 46px;
  color: #d7a53c;
}

/* ---- feature grid ---- */

.agm-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
}

.agm-why__cell {
  padding: 40px 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.agm-why__cell:nth-child(3n) {
  border-right: none;
}

.agm-why__cell:nth-child(n+4) {
  border-bottom: none;
}

.agm-why__icon {
  display: inline-flex;
  margin-bottom: 22px;
  color: #e0b23c;
}

.agm-why__icon svg {
  width: 26px;
  height: 26px;
}

.agm-why__cell h3 {
  margin: 0 0 10px;
  font-family: 'Libre Caslon Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: #f5f1e8;
}

.agm-why__cell p {
  margin: 0;
  font-family: Noah, sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: #a9a49b;
}

/* ---- contact / subscribe strip ---- */

.agm-why__contact {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.agm-why__contact-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.agm-why__phone,
.agm-why__email {
  font-family: Noah, sans-serif;
  font-size: 15px;
  color: #f5f1e8;
  text-decoration: none;
  transition: color 0.25s ease;
}

.agm-why__phone:hover,
.agm-why__email:hover {
  color: #e0b23c;
}

.agm-why__subscribe {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  overflow: hidden;
}

.agm-why__subscribe input {
  border: none;
  background: transparent;
  padding: 14px 20px;
  min-width: 220px;
  font-family: Noah, sans-serif;
  font-size: 14px;
  color: #f5f1e8;
  outline: none;
}

.agm-why__subscribe input::placeholder {
  color: #8a857c;
}

.agm-why__subscribe button {
  border: none;
  background: #e0b23c;
  color: #1a1a1a;
  padding: 14px 26px;
  font-family: "Libre Caslon Display", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.agm-why__subscribe button:hover {
  opacity: 0.88;
}

/* ---- social row ---- */

.agm-why__social {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.agm-why__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #f5f1e8;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.agm-why__social a svg {
  width: 17px;
  height: 17px;
}

.agm-why__social a:hover {
  background: #e0b23c;
  border-color: #e0b23c;
  color: #1a1a1a;
}

@media (max-width: 900px) {
  .agm-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .agm-why__cell:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .agm-why__cell:nth-child(2n) {
    border-right: none;
  }

  .agm-why__cell:nth-child(n+4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .agm-why__cell:nth-child(n+5) {
    border-bottom: none;
  }

  .agm-why__heading {
    font-size: 32px;
  }

}

@media (max-width: 560px) {
  .agm-why__grid {
    grid-template-columns: 1fr;
    border-radius: 10px;
  }

  .agm-why__cell {
    padding: 32px 28px;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  }

  .agm-why__cell:last-child {
    border-bottom: none !important;
  }

  .agm-why__contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .agm-why__subscribe {
    width: 100%;
  }

  .agm-why__subscribe input {
    flex: 1;
    min-width: 0;
  }



}

/* =========================================================
   Garnishme — FAQ (Top Questions)
   Classes: .agm-faq, .agm-faq__inner, .agm-faq__col--head,
            .agm-faq__eyebrow, .agm-faq__heading, .agm-faq__cta-text,
            .agm-faq__cta-link, .agm-faq__col--list, .agm-faq-item,
            .agm-faq-item summary, .agm-faq-item__answer
   ========================================================= */

.agm-faq {
  background: #fff;
  padding: 100px 24px;
}

.agm-faq__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
}

.agm-faq__eyebrow {
  margin: 0 0 18px;
  font-family: Noah, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #c9a15d;
  text-transform: uppercase;
}

.agm-faq__heading {
  margin: 0 0 22px;
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  font-size: 42px;
  line-height: 1.2;
  color: #262626;
}

.agm-faq__cta-text {
  margin: 0 0 4px;
  font-family: Noah, sans-serif;
  font-style: italic;
  font-size: 17px;
  color: #a9835a;
}

.agm-faq__cta-link {
  display: inline-block;
  font-family: Noah, sans-serif;
  font-size: 16px;
  color: #262626;
  text-decoration: none;
  border-bottom: 1px solid #262626;
}

.agm-faq__col--list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.agm-faq-item {
  background: #ececec;
  border-radius: 6px;
  padding: 22px 28px;
}

.agm-faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: Noah, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #1e1e1e;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.agm-faq-item summary::-webkit-details-marker {
  display: none;
}

.agm-faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: Noah, sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #8a8a8a;
  line-height: 1;
  transform: translateY(2px);
}

.agm-faq-item[open] summary::after {
  content: "\2212";
}

.agm-faq-item__answer {
  margin-top: 16px;
  font-family: Noah, sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: #6f6f6f;
}

@media (max-width: 900px) {
  .agm-faq__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .agm-faq__heading {
    font-size: 32px;
  }

}

@media (max-width: 560px) {
  .agm-faq {
    padding: 70px 18px;
  }

  .agm-faq-item {
    padding: 18px 20px;
  }


}

/* =========================================================
   Garnishme — Instagram / Gallery (Follow us behind the bar)
   Classes: .agm-gallery, .agm-gallery__inner, .agm-gallery__head,
            .agm-gallery__eyebrow, .agm-gallery__heading,
            .agm-gallery__grid, .agm-gallery__item,
            .agm-gallery__item--a/--b/--c/--d/--e
   ========================================================= */

.agm-gallery {
  background: #fff;
  padding: 40px 24px 100px;
}

.agm-gallery__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.agm-gallery__head {
  text-align: center;
  margin-bottom: 48px;
}

.agm-gallery__eyebrow {
  margin: 0 0 16px;
  font-family: Noah, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #c9a15d;
  text-transform: uppercase;
}

.agm-gallery__heading {
  margin: 0;
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  font-size: 44px;
  color: #262626;
}

.agm-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.agm-gallery__item {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.agm-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.agm-gallery__item:hover img {
  transform: scale(1.06);
}

/* second row: item d spans two columns (wide), item e stays single */
.agm-gallery__item--d {
  grid-column: span 2;
}

.agm-gallery__item--e {
  grid-column: span 1;
}

@media (max-width: 900px) {
  .agm-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .agm-gallery__item--d,
  .agm-gallery__item--e {
    grid-column: span 1;
  }

  .agm-gallery__heading {
    font-size: 32px;
  }

}

@media (max-width: 560px) {
  .agm-gallery__grid {
    grid-template-columns: 1fr;
  }



}

/* =========================================================
   Garnishme — CTA Banner (Get first access)
   Classes: .agm-cta, .agm-cta__bg, .agm-cta__overlay,
            .agm-cta__inner, .agm-cta__text, .agm-cta__stars,
            .agm-cta__stars .ic, .agm-cta__heading,
            .agm-cta__images, .agm-cta__img, .agm-cta__img--main,
            .agm-cta__img--product, .agm-cta__badges,
            .agm-cta__scroll-top (circular arrow button, top right)
   Note: reuses the existing .agm-btn / .agm-btn--solid rules
   already defined for the wholesale section — not redeclared here.
   ========================================================= */

.agm-cta {
  position: relative;
  overflow: hidden;
}

.agm-cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.agm-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.7) 40%,
      rgba(0, 0, 0, 0.35) 65%,
      rgba(0, 0, 0, 0.55) 100%);
}

.agm-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 60px 80px 120px;
}

.agm-cta__text {
  max-width: 480px;
}

.agm-cta__stars {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  color: #d7a53c;
}

.agm-cta__stars .ic svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.agm-cta__heading {
  margin: 0 0 34px;
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 1.3;
  color: #fdfdfd;
}

/* ---- overlapping image stack, right side ---- */

.agm-cta__images {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 470px;
  height: 490px;
}

.agm-cta__img {
  position: absolute;
  display: block;
  object-fit: cover;
}

.agm-cta__img--main {
  width: 100%;
  max-width: 550px;
  height: 620px;
  object-fit: cover;
  border-radius: 0px;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.6);
}

.agm-cta__img--product {
  right: -180px;
  top: 40px;
  width: 260px;
  height: 340px;
  z-index: 1;
  opacity: 0.9;
}

/* ---- badges strip footer ---- */

.agm-cta__badges {
  position: relative;
  z-index: 0;
  background: #171614;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  padding: 30px 24px;
  flex-wrap: wrap;
  padding-left: 128px;
}

.agm-cta__badges img {
  height: 74px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(100%);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.agm-cta__badges img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ---- scroll-to-top button, floating at right edge ---- */

.agm-cta__scroll-top {
  position: absolute;
  right: 32px;
  bottom: 100px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.agm-cta__scroll-top svg {
  width: 18px;
  height: 18px;
}

.agm-cta__scroll-top:hover {
  background: #c9a15d;
  border-color: #c9a15d;
}

@media (max-width: 1200px) {
  .agm-cta__images {
    width: 380px;
    height: 400px;
    right: 40px;
  }

  .agm-cta__img--main {
    width: 380px;
    height: 440px;
  }

  .agm-cta__img--product {
    width: 200px;
    height: 260px;
    right: -130px;
  }

}

@media (max-width: 768px) {
  .agm-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 24px 60px;
  }

  .agm-cta__images {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    height: 300px;
    margin-top: 40px;
  }

  .agm-cta__img--main {
    width: 100%;
    height: 300px;
    right: 0;
  }

  .agm-cta__img--product {
    display: none;
  }

  .agm-cta__badges {
    gap: 12px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .agm-cta__badges img {
    height: 45px;
    object-fit: contain;
  }
}

@media (max-width: 560px) {
  .agm-cta__heading {
    font-size: 28px;
  }

  .agm-cta__scroll-top {
    right: 16px;
    bottom: 16px;
  }

}

section.band {
  display: none;
}



/* =========================================================
   Garnishme — Footer (dark, gold-accented)
   Classes used from markup: footer, .wrap, .foot-grid,
   .foot-about, .site-logo-img, .foot-social-icons,
   .social-circle-btn, .foot-help-zone, .help-contact-info,
   .join-list-title, .foot-news / .newsletter-form,
   .btn.btn-dark.btn-join, .foot-bottom-centered
   New helper class added (optional): .footer-scroll-top —
   a circular back-to-top button you can drop into the markup,
   styled to match the bottom-right arrow in the reference image.
   ========================================================= */

footer {
  position: relative;
  background: #141210;
  padding: 70px 24px 0;
  margin-top: -26px !important;
}

footer .wrap {
  max-width: 1300px;
  margin: 0 auto;
}

footer h4 {
  margin: 0 0 20px;
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  font-size: 26px;
  color: #d7a53c;
}

footer p,
footer li,
footer a {
  font-family: Noah, sans-serif;
  font-size: 14.5px;
  line-height: 1.75;
  color: #b9b3a6;
}

footer a {
  text-decoration: none;
  transition: color 0.25s ease;
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer ul a:hover {
  color: #d7a53c;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

/* ---- About / left column ---- */

.foot-about .site-logo-img {
  height: 34px;
  width: auto;
  margin-bottom: 18px;
}

.foot-about p {
  max-width: 320px;
  margin: 0 0 24px;
}

.foot-social-icons {
  display: flex;
  gap: 12px;
}

.social-circle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(215, 165, 60, 0.4);
  color: #d7a53c;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.social-circle-btn .ic {
  font-size: 14px;
  display: flex;
}

.social-circle-btn:hover {
  background: #d7a53c;
  border-color: #d7a53c;
  color: #1a1a1a;
}

/* ---- Need Help / newsletter column ---- */

.foot-help-zone {
  max-width: 320px;
}

.help-contact-info {
  margin-bottom: 30px;
}

.help-contact-info p {
  margin: 0 0 8px;
  color: #d9d4c8;
}

.help-contact-info strong {
  color: #f5f1e8;
  font-weight: 700;
}

.join-list-title {
  font-size: 22px;
}

.foot-news.newsletter-form {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(215, 165, 60, 0.5);
}

.foot-news.newsletter-form input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 14px 16px;
  font-family: Noah, sans-serif;
  font-size: 14px;
  color: #f5f1e8;
  outline: none;
}

.foot-news.newsletter-form input::placeholder {
  color: #8a857c;
}

.foot-news.newsletter-form .btn.btn-dark.btn-join {
  flex-shrink: 0;
  border: none;
  background: #c9a15d;
  color: #1a1a1a;
  padding: 0 24px;
  font-family: "Libre Caslon Display", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.foot-news.newsletter-form .btn.btn-dark.btn-join:hover {
  opacity: 0.88;
}

/* ---- bottom bar ---- */

.foot-bottom-centered {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 0;
  text-align: center;
}

.foot-bottom-centered span,
.foot-bottom-centered a {
  font-family: Noah, sans-serif;
  font-size: 13.5px;
  color: #8a857c;
}

.foot-bottom-centered a {
  color: #b9924f;
}

.foot-bottom-centered a:hover {
  color: #d7a53c;
}

/* ---- optional scroll-to-top button ---- */

.footer-scroll-top {
  position: absolute;
  right: 32px;
  bottom: 26px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.footer-scroll-top svg {
  width: 18px;
  height: 18px;
}

.footer-scroll-top:hover {
  background: #c9a15d;
  border-color: #c9a15d;
}

@media (max-width: 992px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }

}

@media (max-width: 600px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  footer {
    padding: 50px 18px 0;
  }

  .foot-news.newsletter-form {
    flex-direction: column;
    border: none;
    gap: 10px;
  }

  .foot-news.newsletter-form input {
    border: 1px solid rgba(215, 165, 60, 0.5);
  }

  .foot-news.newsletter-form .btn.btn-dark.btn-join {
    padding: 14px;
    border: 1px solid #c9a15d;
  }

  .footer-scroll-top {
    right: 16px;
    bottom: 16px;
  }

}

.btn-join {
  border-radius: 0px;
}


.prod .info {
  background: #000 !important;
  color: white !important;
}

.prod .cat {
  color: #fff !important;
}

.prod h3 {
  color: #fff !important;
}

.prod .info {
  padding: 16px 7px 6px !important;
  border-radius: 0px !important;
}

.link {
  color: #fff;
  font-weight: 700 !important;
  font-size: .9rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: .35rem !important;
  transition: gap .2s !important;
  background: #070707 !important;
  padding: 10px !important;
}

.prod .prc .now {
  color: #d7a53c !important;
}

.reveal {
  border-radius: 0px !important;
}

.grid-4 {
  margin-bottom: 20px !important;
}

main {
  background: #f6f6f6 !important;
}

.btn-primary {
  background: #d7a53c !important;
}

.btn-primary:hover {
  background: #d7a53c !important;
}

.iconbtn .count {
  background: #d7a53c;
}




/* =========================================================
   Garnish ME — About Us page
   Classes: .gm-about-banner, .gm-about-banner__bg,
            .gm-about-banner__overlay, .gm-about-banner__title,
            .gm-about-story, .gm-about-story__inner,
            .gm-about-story__img (floated right — text wraps it,
            then continues full width once it clears the image),
            .gm-about-story__heading, .gm-about-story__lead,
            .gm-about-story__btn, .gm-about-story__clear
   ========================================================= */

/* ---- Banner ---- */

.gm-about-banner {
  position: relative;
  width: 100%;
  height: 290px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gm-about-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #0a0a0a;
}

.gm-about-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.gm-about-banner__title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: 'Libre Caslon Display', serif;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.5px;
  color: #fff;
}

@media (max-width: 640px) {
  .gm-about-banner {
    height: 160px;
  }

  .gm-about-banner__title {
    font-size: 24px;
  }

}

/* ---- Founders story ---- */

.gm-about-story {
  background: #f6f6f6;
  padding: 70px 24px 100px;
}

.gm-about-story__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* image floats right; text (heading + paragraphs) wraps around
   it for as many lines as the image is tall, then automatically
   continues full width once the content clears the image bottom */
.gm-about-story__img {
  float: right;
  width: 380px;
  max-width: 40%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin: 0 0 24px 40px;
}

.gm-about-story__heading {
  margin: 0 0 20px;
  font-family: 'Libre Caslon Display', serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.3;
  color: #1a1a1a;
}

.gm-about-story__inner p {
  margin: 0 0 20px;
  font-family: Noah, sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: #3a3a3a;
}

.gm-about-story__lead {
  font-weight: 700 !important;
  font-size: 16px !important;
  color: #1a1a1a !important;
}

.gm-about-story__btn {
  display: inline-block;
  margin-top: 4px;
  padding: 10px 20px;
  border: 1px solid #1a1a1a;
  font-family: Noah, sans-serif;
  font-size: 13px;
  color: #1a1a1a;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.gm-about-story__btn:hover {
  background: #1a1a1a;
  color: #fff;
}

/* clears the float so the section's bottom padding measures correctly */
.gm-about-story__clear {
  clear: both;
}

@media (max-width: 768px) {
  .gm-about-story__img {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 28px;
  }

  .gm-about-story__heading {
    font-size: 22px;
  }
}

@media (max-width: 560px) {
  .gm-about-story {
    padding: 50px 18px 70px;
  }
}


.content-page {
  max-width: 100%;
}


.nav-links a {
  color: #fff !important;
}

header {
  background: rgb(2, 2, 2);
  z-index: 999;
}

header .iconbtn {
  color: #fdfdfd;
}

header .nav-links a {
  color: #fdfdfd;
}

/* 
 * The .wrap class is a global container (used in the nav, footer, and main content).
 * Setting padding-top: 4px !important forces the main content to move up and overlap the header.
 * If you need specific padding for the product page, target it explicitly (e.g., .pdp).
 */
/* .wrap {
    padding-top: 4px !important; 
} */

.gm-about-story__inner {
  margin-bottom: 40px;
}

/* =========================================================
   SPACING FIX - Gallery to CTA (Medium Gap)
   ========================================================= */

/* 1. Fix the gallery item that has inline height */
.agm-gallery__item--d {
  grid-column: span 2;
  aspect-ratio: auto !important;
}

.agm-gallery__item--d img {
  height: 87% !important;
  object-fit: cover;
}

/* 2. Create a MODERATE gap between gallery and CTA */
.agm-gallery {
  margin-bottom: -20px !important;
  padding-bottom: 0 !important;
}

.agm-cta {
  margin-top: 130px !important;
  padding-top: 20px !important;
  position: relative;
}

/* Fill the gap above the CTA with pure white */
.agm-cta::before {
  content: '';
  position: absolute;
  top: -130px;
  /* Match the margin-top */
  left: -50vw;
  /* Ensure it covers full width even if container is boxed */
  width: 200vw;
  height: 130px;
  background-color: #ffffff;
  z-index: -1;
}

/* 3. Adjust the CTA inner container padding */
.agm-cta__inner {
  padding-top: 40px !important;
}

/* 4. Ensure the overlay covers the adjusted spacing */
.agm-cta__bg,
.agm-cta__overlay {
  top: 0 !important;
  height: 81% !important;
}

/* Target the Dried.webp image only */
#agmTestiMedia {
  width: 680px;
  height: 520px;
  object-fit: cover;
}

.wrap.content-page h1 {
  display: none;
}