/** Shopify CDN: Minification failed

Line 1255:14 Unexpected "{"
Line 1255:25 Expected ":"
Line 1255:29 Unexpected "{"

**/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&family=Great+Vibes&display=swap');

:root {
  --ag-black: #FBF8F2; /* Warm Ivory background */
  --ag-black-2: #F5E9E3; /* Soft Blush background */
  --ag-gold: #C8A35B; /* Champagne Gold accent */
  --ag-gold-light: #C8A35B;
  --ag-cream: #F7F3EA; /* Cream */
  --ag-muted: #635e59;
  --ag-border: rgba(200, 163, 91, 0.22);
  --ag-heading: 'Cormorant Garamond', Georgia, serif;
  --ag-body: 'Montserrat', Arial, sans-serif;
  --ag-script: 'Great Vibes', cursive;
  --p-ink: #171717;
  --p-cream: #fbf8f2;
  --p-blush: #f5e9e3;
  --p-rose: #b98578;
  --p-rose-beige: #D9BDB4;
  --p-gold: #c8a35b;
  --p-line: #e8e0d7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  background: var(--ag-black);
  color: var(--p-ink);
  font-family: var(--ag-body);
  font-size: 14px;
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
}

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

img {
  max-width: 100%;
  display: block;
}

button, input {
  font: inherit;
}

/* Announcement Bar */
.ag-topbar {
  height: 38px;
  background: var(--ag-black-2);
  border-bottom: 1px solid var(--p-line);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--p-ink);
  overflow-x: auto;
  white-space: nowrap;
  padding: 0 20px;
}

.ag-topbar::-webkit-scrollbar {
  display: none;
}

.ag-topbar__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ag-topbar__item svg {
  width: 14px;
  height: 14px;
  color: var(--p-gold);
}

/* Header */
.ag-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 242, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--p-line);
  transition: box-shadow 0.3s ease;
}

.ag-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.ag-header__main {
  max-width: 1440px;
  margin: auto;
  height: 92px;
  padding: 0 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.ag-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 190px;
}

.ag-logo__img {
  width: 180px;
  height: 68px;
  object-fit: contain;
}

.ag-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.ag-nav__link {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--p-ink);
  transition: color 0.25s ease;
  position: relative;
  padding: 8px 0;
}

.ag-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--p-gold);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ag-nav__link:hover::after {
  width: 100%;
  left: 0;
}

.ag-nav__link:hover {
  color: var(--p-gold);
}

.ag-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.ag-icon-btn {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--p-ink);
}

.ag-icon-btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.ag-cart__count {
  position: absolute;
  top: 2px;
  right: 1px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 20px;
  background: var(--p-ink);
  color: #fff;
  font-size: 8px;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.ag-mobile-toggle, .ag-mobile-menu {
  display: none;
}

/* Sections General */
.ag-section {
  max-width: 1440px;
  margin: auto;
  padding: 88px 42px;
}

.ag-section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 45px;
}

.ag-section__head h2 {
  font-family: var(--ag-heading);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  margin: 8px 0 0 0;
  color: var(--p-ink);
}

.ag-section__head p.ag-eyebrow {
  margin: 0;
}

.ag-section__head > a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--p-ink);
  border-bottom: 1.5px solid var(--p-gold);
  padding-bottom: 4px;
  text-transform: uppercase;
}

.ag-section__head--center {
  justify-content: center;
  text-align: center;
}

.ag-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--p-gold);
  font-weight: 600;
  margin: 0 0 10px;
  text-transform: uppercase;
}

/* Two-Column Hero */
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}

.ag-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 620px;
  background: linear-gradient(135deg, #fbf8f2, #f5e9e3 50%, #efe3dd);
  align-items: center;
  position: relative;
  padding: 60px 7%;
  gap: 40px;
  overflow: hidden;
}

.ag-hero__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.05;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.ag-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 2.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ag-hero__content > * {
  animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ag-hero__content h1 {
  animation-delay: 0.1s;
}

.ag-hero__script {
  animation-delay: 0.25s;
}

.ag-hero__heart {
  animation-delay: 0.35s;
}

.ag-hero__text {
  animation-delay: 0.45s;
}

.ag-hero__buttons {
  animation-delay: 0.55s;
}

.ag-hero__overlay {
  display: none;
}

.ag-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.ag-hero h1 {
  font-family: var(--ag-heading);
  font-size: clamp(48px, 5.8vw, 82px);
  font-weight: 500;
  line-height: 1.05;
  margin: 15px 0 20px;
  letter-spacing: -0.02em;
  color: var(--p-ink);
}

.ag-hero__script {
  font-family: var(--ag-script);
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--p-gold);
  margin: -10px 0 15px;
  line-height: 1.2;
}

.ag-hero__heart {
  color: var(--p-gold);
  font-size: 16px;
  margin-bottom: 20px;
}

.ag-hero__text {
  max-width: 510px;
  color: var(--ag-muted);
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 30px;
}

.ag-hero__buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  transition: 0.25s;
}

.ag-btn--gold {
  background: var(--p-ink);
  color: #fff;
  border: 1px solid var(--p-ink);
}

.ag-btn--gold:hover {
  background: var(--p-gold);
  border-color: var(--p-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.ag-btn--ghost {
  border: none;
  background: transparent;
  color: var(--p-ink);
  padding: 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1.5px solid var(--p-ink);
  border-radius: 0;
  min-height: auto;
}

.ag-btn--ghost:hover {
  color: var(--p-gold);
  border-color: var(--p-gold);
}

/* Badges Strip */
.ag-hero-badges {
  display: flex;
  justify-content: space-around;
  background: #fff;
  border-top: 1px solid var(--p-line);
  border-bottom: 1px solid var(--p-line);
  padding: 24px 7%;
  width: 100%;
}

.ag-hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.ag-hero-badge__icon {
  width: 32px;
  height: 32px;
  background: var(--p-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p-gold);
}

.ag-hero-badge__icon svg {
  width: 16px;
  height: 16px;
}

.ag-hero-badge__content h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 0 2px;
  text-transform: uppercase;
  color: var(--p-ink);
}

.ag-hero-badge__content p {
  font-size: 10px;
  color: #777;
  margin: 0;
}

/* Collections (Circular slider) */
.ag-collections {
  position: relative;
}

.ag-collections__slider-container {
  position: relative;
  width: 100%;
}

.ag-collection-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
}

.ag-collection-grid::-webkit-scrollbar {
  display: none;
}

.ag-collection-card {
  flex-shrink: 0;
  width: calc((100% - 100px) / 6);
  min-width: 140px;
  text-align: center;
  display: block;
}

.ag-collection-card__media {
  aspect-ratio: 1;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--p-line);
  margin-bottom: 14px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
  transition: all 0.4s ease;
}

.ag-collection-card:hover .ag-collection-card__media {
  transform: scale(1.03);
  border-color: var(--p-gold);
  box-shadow: 0 12px 30px rgba(200, 163, 91, 0.1);
}

.ag-collection-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ag-collection-card__veil {
  display: none;
}

.ag-collection-card__content {
  position: static;
  padding: 0;
}

.ag-collection-card__content span,
.ag-collection-card__content strong {
  display: none;
}

.ag-collection-card h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
  color: var(--p-ink);
}

.ag-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--p-line);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  color: var(--p-ink);
  transition: 0.25s;
}

.ag-slider-btn:hover {
  background: var(--p-gold);
  border-color: var(--p-gold);
  color: #fff;
}

.ag-slider-btn--left {
  left: -20px;
}

.ag-slider-btn--right {
  right: -20px;
}

/* 3-Column Promo Grid */
.ag-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ag-promo-card {
  background: var(--ag-black-2);
  border-radius: 16px;
  border: 1px solid var(--p-line);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.01);
  transition: all 0.4s ease;
}

.ag-promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(200, 163, 91, 0.06);
}

.ag-promo-card__media {
  position: absolute;
  right: 15px;
  bottom: 0;
  width: 45%;
  height: 80%;
  z-index: 1;
}

.ag-promo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ag-promo-card__content {
  width: 60%;
  position: relative;
  z-index: 2;
}

.ag-promo-card__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--p-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ag-promo-card h3 {
  font-family: var(--ag-heading);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--p-ink);
}

.ag-promo-card__link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--p-ink);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1.5px solid var(--p-ink);
  padding-bottom: 2px;
}

.ag-promo-card__link:hover {
  color: var(--p-gold);
  border-color: var(--p-gold);
}

/* Products Section */
.ag-products {
  padding-top: 30px;
}

.ag-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ag-product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  background: var(--p-cream);
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--p-line);
}

.ag-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ag-product-card:hover .ag-product-card__media img {
  transform: scale(1.04);
}

.ag-product-card__quick {
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translate(-50%, 12px);
  opacity: 0;
  background: var(--p-ink);
  color: #fff;
  padding: 12px 20px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: 0.25s;
  white-space: nowrap;
}

.ag-product-card:hover .ag-product-card__quick {
  opacity: 1;
  transform: translate(-50%, 0);
}

.ag-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--p-gold);
  color: #fff;
  padding: 5px 10px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 4px;
}

.ag-product-card__info {
  padding: 14px 2px;
  text-align: left;
}

.ag-product-card__vendor {
  font-size: 9px;
  color: var(--p-gold);
  letter-spacing: 0.15em;
  margin: 0 0 4px;
  text-transform: uppercase;
  font-weight: 600;
}

.ag-product-card h3 {
  font-family: var(--ag-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 6px;
  color: var(--p-ink);
}

.ag-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--p-ink);
}

.ag-price s {
  color: #888;
  margin-left: 8px;
  font-weight: 400;
}

/* Trust Badges Ribbon */
.ag-trust-badges {
  background: #fff;
  border-top: 1px solid var(--p-line);
  border-bottom: 1px solid var(--p-line);
  padding: 30px 42px;
}

.ag-trust-badges__grid {
  max-width: 1440px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
}

.ag-trust-badge {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ag-trust-badge__icon {
  width: 38px;
  height: 38px;
  color: var(--p-gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ag-trust-badge__icon svg {
  width: 24px;
  height: 24px;
}

.ag-trust-badge h4 {
  font-size: 11px;
  font-weight: 700;
  margin: 0 0 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--p-ink);
}

.ag-trust-badge p {
  font-size: 9px;
  color: #777;
  margin: 0;
  line-height: 1.3;
}

/* Testimonials Carousel */
.ag-testimonials {
  position: relative;
}

.ag-testimonials__slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.ag-testimonial-slide {
  background: #fff;
  border: 1px solid var(--p-line);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.ag-testimonial-slide__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--p-gold);
  flex-shrink: 0;
}

.ag-testimonial-slide__content {
  flex: 1;
}

.ag-testimonial-slide__stars {
  color: var(--p-gold);
  font-size: 14px;
  margin-bottom: 12px;
}

.ag-testimonial-slide p {
  font-family: var(--ag-heading);
  font-size: 22px;
  line-height: 1.4;
  color: var(--p-ink);
  margin: 0 0 16px;
  font-style: italic;
}

.ag-testimonial-slide footer {
  font-size: 11px;
  font-weight: 700;
  color: var(--p-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ag-testimonial-metrics {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--p-line);
  padding-top: 40px;
}

.ag-testimonial-metric {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ag-testimonial-metric__icon {
  color: var(--p-gold);
  margin-bottom: 8px;
}

.ag-testimonial-metric__icon svg {
  width: 24px;
  height: 24px;
}

.ag-testimonial-metric h3 {
  font-family: var(--ag-heading);
  font-size: 36px;
  font-weight: 500;
  color: var(--p-ink);
  margin: 0 0 4px;
}

.ag-testimonial-metric p {
  font-size: 11px;
  font-weight: 600;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

/* Newsletter Banner */
.ag-newsletter-banner {
  background: var(--ag-black-2);
  border-top: 1px solid var(--p-line);
  border-bottom: 1px solid var(--p-line);
  padding: 70px 42px;
}

.ag-newsletter-banner__inner {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.ag-newsletter-banner h2 {
  font-family: var(--ag-heading);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 10px;
  color: var(--p-ink);
}

.ag-newsletter-banner p {
  font-size: 14px;
  color: var(--ag-muted);
  margin: 0 0 30px;
}

.ag-newsletter-banner__form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 40px;
}

.ag-newsletter-banner__form input {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid var(--p-line);
  border-radius: 4px;
  background: #fff;
  color: var(--p-ink);
  font-size: 13px;
  outline: none;
}

.ag-newsletter-banner__form button {
  padding: 0 28px;
  background: var(--p-ink);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
  transition: 0.25s;
}

.ag-newsletter-banner__form button:hover {
  background: var(--p-gold);
}

.ag-newsletter-banner__values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  border-top: 1px solid var(--p-line);
  padding-top: 30px;
}

.ag-newsletter-banner__value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--p-ink);
}

.ag-newsletter-banner__value svg {
  width: 14px;
  height: 14px;
  color: var(--p-gold);
}

/* Brand Story (Crafted with Care) fallback alignment */
.ag-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: var(--p-cream);
  color: var(--p-ink);
}

.ag-story__media {
  min-height: 600px;
  overflow: hidden;
  background: #0b0b0b;
}

.ag-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ag-story__content {
  padding: 80px 9%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.ag-story__content h2 {
  font-family: var(--ag-heading);
  font-size: 58px;
  font-weight: 500;
  line-height: 0.95;
  margin: 0 0 24px;
}

.ag-story__content > p:not(.ag-eyebrow) {
  max-width: 470px;
  color: var(--ag-muted);
  line-height: 1.8;
}

.ag-text-link {
  margin-top: 22px;
  color: var(--p-ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-bottom: 1.5px solid var(--p-gold);
  padding-bottom: 6px;
  width: max-content;
  text-transform: uppercase;
}

/* Footer */
.ag-footer {
  padding: 80px 42px 30px;
  border-top: 1px solid var(--p-line);
  background: var(--p-cream);
  color: var(--p-ink);
}

.ag-footer__brand {
  text-align: left;
  padding-bottom: 0;
  border-bottom: none;
}

.ag-footer__logo {
  font-family: var(--ag-heading);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--p-ink);
  margin-bottom: 16px;
}

.ag-footer__logo span {
  font-family: var(--ag-script);
  font-size: 32px;
  color: var(--p-gold);
}

.ag-footer__brand p {
  color: var(--ag-muted);
  margin: 0 0 20px;
  font-size: 11px;
  line-height: 1.6;
}

.ag-footer__socials {
  display: flex;
  gap: 10px;
}

.ag-footer__social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--p-line);
  display: grid;
  place-items: center;
  color: var(--p-ink);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.ag-footer__social-link::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--p-gold);
  transition: top 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.ag-footer__social-link:hover::before {
  top: 0;
}

.ag-footer__social-link:hover {
  border-color: var(--p-gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(200, 163, 91, 0.25);
}

.ag-footer__social-link svg {
  width: 16px;
  height: 16px;
}

.ag-footer__grid {
  max-width: 1440px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr 1.3fr;
  gap: 40px;
}

.ag-footer h3 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--p-ink);
  margin: 0 0 20px;
  text-transform: uppercase;
}

.ag-footer__grid > div > a {
  display: block;
  color: var(--ag-muted);
  font-size: 12px;
  margin: 10px 0;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ag-footer__grid > div > a:hover {
  color: var(--p-gold);
  transform: translateX(6px);
}

.ag-footer__payment h3 {
  margin-bottom: 16px;
}

.ag-footer__payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ag-footer__payment-icon {
  height: 24px;
  width: 38px;
  background: #fff;
  border: 1px solid var(--p-line);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

.ag-footer__payment-icon svg {
  width: 100%;
  height: 100%;
}

.ag-footer__bottom {
  max-width: 1440px;
  margin: auto;
  padding-top: 25px;
  border-top: 1px solid var(--p-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #888;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ag-footer__bottom-links {
  display: flex;
  gap: 20px;
}

.ag-footer__bottom-links a:hover {
  color: var(--p-gold);
}

/* Accordion adjustments for FAQ block */
.ai-faq-item-{{ ai_gen_id }} {
  background: #fff !important;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .ag-footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .ag-footer__payment {
    grid-column: span 2;
  }
  .ag-trust-badges__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .ag-header__main {
    height: 76px;
    padding: 0 18px;
    grid-template-columns: 40px 1fr 110px;
  }
  .ag-nav {
    display: none;
  }
  .ag-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
  }
  .ag-mobile-toggle span {
    width: 18px;
    height: 1.5px;
    background: var(--p-ink);
  }
  .ag-logo__img {
    width: 145px;
    height: 54px;
  }
  .ag-mobile-menu {
    display: none;
    padding: 12px 20px 20px;
    background: #fff;
    border-top: 1px solid var(--p-line);
  }
  .ag-mobile-menu.is-open {
    display: block;
  }
  .ag-mobile-menu a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--p-line);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .ag-topbar__right {
    display: none;
  }
  .ag-topbar {
    font-size: 8px;
  }
  .ag-hero {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    text-align: center;
  }
  .ag-hero__content {
    align-items: center;
  }
  .ag-hero__text {
    margin: 0 auto 24px;
  }
  .ag-hero-badges {
    flex-direction: column;
    gap: 20px;
    padding: 24px 20px;
    align-items: flex-start;
  }
  .ag-section {
    padding: 60px 20px;
  }
  .ag-section__head h2 {
    font-size: 34px;
  }
  .ag-collection-card {
    width: calc((100% - 40px) / 3);
  }
  .ag-promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ag-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .ag-testimonial-slide {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }
  .ag-testimonial-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .ag-newsletter-banner {
    padding: 50px 20px;
  }
  .ag-newsletter-banner__form {
    flex-direction: column;
  }
  .ag-newsletter-banner__form button {
    height: 48px;
  }
  .ag-newsletter-banner__values {
    grid-template-columns: repeat(2, 1fr);
  }
  .ag-footer {
    padding: 60px 20px 30px;
  }
  .ag-footer__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .ag-footer__payment {
    grid-column: span 1;
  }
  .ag-footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .ag-actions .ag-icon-btn:nth-child(2) {
    display: none;
  }
  .ag-hero h1 {
    font-size: clamp(38px, 9vw, 54px);
  }
  .ag-hero__buttons {
    width: 100%;
    flex-direction: column;
  }
  .ag-btn {
    width: 100%;
  }
  .ag-section__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .ag-section__head h2 {
    font-size: 32px;
  }
  .ag-collection-card {
    width: 110px;
    min-width: 110px;
  }
  .ag-trust-badges__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =================================================
AURA & GLAM CUSTOM PREMIUM THEME STYLES
================================================= */

/* Dropdown Menu Styles */
.ag-nav__item {
  position: relative;
  display: inline-block;
}

.ag-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ag-nav__link span.chevron {
  font-size: 8px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.ag-nav__item:hover .ag-nav__link span.chevron {
  transform: rotate(180deg);
}

.ag-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border: 1px solid var(--p-line);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 14px 0;
  min-width: 210px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 8px;
}

.ag-nav__item:hover .ag-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.ag-nav__dropdown-link {
  display: block;
  padding: 8px 24px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--p-ink);
  transition: all 0.2s ease;
  text-align: left;
}

.ag-nav__dropdown-link:hover {
  color: var(--p-gold);
  background-color: var(--ag-black-2);
  padding-left: 28px;
}

/* Sticky Navigation Transition & Shadow Scroll overrides */
.ag-header {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ag-header.is-scrolled {
  background: rgba(251, 248, 242, 0.85) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.ag-header.is-scrolled .ag-header__main {
  height: 72px;
}

/* Mobile Menu Drawer */
.ag-mobile-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100%;
  background: #FBF8F2;
  z-index: 101;
  box-shadow: 10px 0 30px rgba(0,0,0,0.05);
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.ag-mobile-drawer.is-open {
  left: 0;
}

.ag-mobile-drawer__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 23, 23, 0.4);
  backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.ag-mobile-drawer__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.ag-mobile-drawer__header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--p-line);
}

.ag-mobile-drawer__close {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  color: var(--p-ink);
}

.ag-mobile-drawer__menu {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.ag-mobile-drawer__link {
  display: block;
  padding: 12px 0;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(232, 224, 215, 0.5);
}

.ag-mobile-drawer__sub {
  padding-left: 15px;
  margin-top: 5px;
  border-left: 1px solid var(--p-line);
}

.ag-mobile-drawer__sub-link {
  display: block;
  padding: 8px 0;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ag-muted);
}

/* AJAX Cart Drawer Styles */
.ag-cart-drawer {
  position: fixed;
  right: -420px;
  top: 0;
  width: 420px;
  height: 100%;
  background: #FBF8F2;
  box-shadow: -10px 0 30px rgba(0,0,0,0.05);
  z-index: 101;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

@media (max-width: 480px) {
  .ag-cart-drawer {
    width: 100%;
    right: -100%;
  }
}

.ag-cart-drawer.is-open {
  right: 0;
}

.ag-cart-drawer__header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--p-line);
}

.ag-cart-drawer__header h2 {
  font-family: var(--ag-heading);
  font-size: 24px;
  margin: 0;
  font-weight: 500;
}

.ag-cart-drawer__close {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  padding: 0;
}

.ag-cart-drawer__shipping {
  background: var(--ag-black-2);
  padding: 16px 24px;
  border-bottom: 1px solid var(--p-line);
  font-size: 11px;
  font-weight: 600;
  color: var(--p-ink);
}

.ag-cart-drawer__progress-bar {
  height: 4px;
  background: var(--p-line);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.ag-cart-drawer__progress-fill {
  height: 100%;
  background: var(--p-gold);
  width: 0;
  transition: width 0.4s ease;
}

.ag-cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.ag-cart-drawer__item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(232, 224, 215, 0.5);
}

.ag-cart-drawer__item-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--p-line);
  flex-shrink: 0;
}

.ag-cart-drawer__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ag-cart-drawer__item-details {
  flex: 1;
}

.ag-cart-drawer__item-details h3 {
  font-size: 13px;
  margin: 0 0 4px;
  font-weight: 600;
}

.ag-cart-drawer__item-details p {
  font-size: 11px;
  color: var(--ag-muted);
  margin: 0 0 8px;
}

.ag-cart-drawer__item-price {
  font-size: 12px;
  font-weight: 600;
}

.ag-cart-drawer__item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.ag-cart-drawer__remove {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ag-muted);
  text-transform: uppercase;
  border-bottom: 1px solid var(--ag-muted);
  cursor: pointer;
}

.ag-cart-drawer__footer {
  padding: 24px;
  border-top: 1px solid var(--p-line);
  background: #ffffff;
}

.ag-cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.ag-cart-drawer__checkout-btn {
  width: 100%;
  margin-bottom: 8px;
  text-align: center;
}

.ag-cart-drawer__view-btn {
  width: 100%;
  background: transparent;
  border: 1px solid var(--p-ink);
  color: var(--p-ink);
  text-align: center;
}

.ag-cart-drawer__view-btn:hover {
  background: var(--p-line);
}

.ag-cart-drawer__upsell {
  border-top: 1px solid var(--p-line);
  padding-top: 16px;
  margin-top: 16px;
}

.ag-cart-drawer__upsell-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
  color: var(--p-ink);
}

.ag-cart-drawer__upsell-products {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ag-cart-drawer__upsell-card {
  display: flex;
  gap: 12px;
  align-items: center;
}

.ag-cart-drawer__upsell-image {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--p-line);
  flex-shrink: 0;
}

.ag-cart-drawer__upsell-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ag-cart-drawer__upsell-info {
  flex: 1;
}

.ag-cart-drawer__upsell-info h4 {
  font-size: 11px;
  margin: 0 0 2px;
  font-weight: 600;
}

.ag-cart-drawer__upsell-info p {
  font-size: 10px;
  margin: 0;
  color: var(--p-gold);
  font-weight: 600;
}

.ag-cart-drawer__upsell-add {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--p-gold);
  color: var(--p-gold);
  background: transparent;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ag-cart-drawer__upsell-add:hover {
  background: var(--p-gold);
  color: #fff;
}

/* Product Detail Custom Components */
.ag-product-badge {
  display: inline-flex;
  align-items: center;
  background: #FBF8F2;
  border: 1px solid var(--p-gold);
  color: var(--p-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.ag-product-badge svg {
  width: 12px;
  height: 12px;
  margin-right: 6px;
  fill: currentColor;
}

.ag-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 24px 0;
  border-top: 1px solid var(--p-line);
  border-bottom: 1px solid var(--p-line);
  padding: 16px 0;
}

.ag-benefits-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.ag-benefits-item svg {
  width: 20px;
  height: 20px;
  color: var(--p-gold);
}

.ag-benefits-item span {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--p-ink);
}

.ag-accordion {
  margin-top: 30px;
  border-top: 1px solid var(--p-line);
}

.ag-accordion__item {
  border-bottom: 1px solid var(--p-line);
}

.ag-accordion__trigger {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 16px 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--ag-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--p-ink);
}

.ag-accordion__trigger svg {
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.ag-accordion__item.is-active .ag-accordion__trigger svg {
  transform: rotate(180deg);
}

.ag-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 13px;
  color: var(--ag-muted);
  line-height: 1.6;
}

.ag-accordion__content-inner {
  padding-bottom: 16px;
}

/* Sticky Mobile Add to Bag Bar */
.ag-sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid var(--p-line);
  box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 98;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ag-sticky-mobile-bar.is-visible {
  transform: translateY(0);
}

.ag-sticky-mobile-bar__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ag-sticky-mobile-bar__title {
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.ag-sticky-mobile-bar__price {
  font-size: 11px;
  font-weight: 600;
  color: var(--p-gold);
}

.ag-sticky-mobile-bar__btn {
  min-height: 40px;
  padding: 0 20px;
  font-size: 9px;
  margin: 0;
}

/* Star Rating Fallback Styling */
.ag-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--p-gold);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
}

.ag-rating__stars {
  letter-spacing: 2px;
}

.ag-rating__count {
  color: var(--ag-muted);
  font-weight: 500;
  font-size: 11px;
}

/* Wishlist Button in Grid Cards */
.ag-product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  z-index: 3;
  color: var(--p-ink);
}

.ag-product-card__wishlist:hover {
  transform: scale(1.1);
  color: var(--p-rose);
  background: #ffffff;
}

.ag-product-card__wishlist.is-active svg {
  fill: var(--p-rose);
  stroke: var(--p-rose);
}

.ag-product-card__wishlist svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.6;
  transition: fill 0.25s ease, stroke 0.25s ease;
}

/* Hover Image Switch in Cards */
.ag-product-card__media {
  position: relative;
  display: block;
  overflow: hidden;
}

.ag-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.ag-product-card__media img.ag-hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.ag-product-card:hover .ag-product-card__media img.ag-hover-image {
  opacity: 1;
}

.ag-product-card:hover .ag-product-card__media img:not(.ag-hover-image) {
  opacity: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-fade-up {
  opacity: 0;
}

.reveal-fade-up.is-visible {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.gold-sparkle {
  position: absolute;
  color: var(--p-gold);
  pointer-events: none;
  font-size: 10px;
  animation: sparkleFloat 1.5s ease-out infinite;
}

@keyframes sparkleFloat {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: scale(1) rotate(180deg);
    opacity: 1;
  }
  100% {
    transform: scale(0) rotate(360deg);
    opacity: 0;
    margin-top: -30px;
  }
}

/* Quick Add button */
.ag-product-card__quick-add-form {
  margin-top: 10px;
}

/* =================================================
PRODUCT PAGE STYLES (MOCKUP ACCORDANCE)
================================================= */
.ag-product {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 42px;
  background-color: #ffffff;
}

.ag-product__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: start;
}

/* Product gallery: Thumbnails on Left, Main Image in Center */
.ag-product__gallery {
  display: flex;
  gap: 20px;
}

.ag-product__thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 90px;
  flex-shrink: 0;
}

.ag-product__thumb {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid #e8e0d7;
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.3s;
}

.ag-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ag-product__thumb.is-active,
.ag-product__thumb:hover {
  border-color: #C8A35B; /* gold border for active thumbnail */
}

.ag-product__main-image-wrap {
  flex: 1;
  position: relative;
  aspect-ratio: 1;
  background: #fbf8f2;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e8e0d7;
}

.ag-product__main-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ag-product__zoom-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid #e8e0d7;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #171717;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  z-index: 2;
  text-transform: uppercase;
}

/* Product Details Column */
.ag-product__details {
  display: flex;
  flex-direction: column;
}

.ag-product__bestseller-tag {
  align-self: start;
  background: #F5E9E3; /* Soft blush */
  color: #b98578;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.ag-product__title {
  font-family: var(--ag-heading);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.2;
  color: #171717;
  margin: 0 0 10px;
}

.ag-product__meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.ag-product__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #C8A35B;
  font-size: 13px;
}

.ag-product__rating-count {
  color: #777;
  font-size: 13px;
}

.ag-product__price-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.ag-product__price-current {
  font-size: 26px;
  font-weight: 600;
  color: #171717;
}

.ag-product__price-compare {
  font-size: 18px;
  text-decoration: line-through;
  color: #888;
}

.ag-product__discount-pill {
  background: #F5E9E3;
  color: #b98578;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

/* Horizontal Badges Strip (Anti-Tarnish, Water Resistant, Skin Friendly) */
.ag-product__badges-strip {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.ag-product__badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #D9BDB4;
  color: #b98578;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  background: transparent;
}

.ag-product__badge-pill svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
}

.ag-product__bullets-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding: 0;
  list-style: none;
}

.ag-product__bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #444;
}

.ag-product__bullet-item svg {
  width: 16px;
  height: 16px;
  color: #C8A35B;
  flex-shrink: 0;
}

/* Buy buttons */
.ag-qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid #e8e0d7;
  border-radius: 4px;
  height: 48px;
  width: 120px;
  background: #ffffff;
}

.ag-qty-btn {
  border: 0;
  background: transparent;
  width: 40px;
  height: 100%;
  cursor: pointer;
  font-size: 16px;
  color: #171717;
}

.ag-qty-input {
  border: 0;
  background: transparent;
  width: 40px;
  height: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #171717;
}

.ag-btn--add-bag {
  background: #171717 !important;
  color: #ffffff !important;
  border: none !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  transition: opacity 0.3s;
}

.ag-btn--add-bag:hover {
  opacity: 0.9;
  transform: none !important;
  box-shadow: none !important;
}

.ag-btn--buy-now {
  background: transparent !important;
  color: #171717 !important;
  border: 1px solid #171717 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  width: 100%;
  height: 48px;
  border-radius: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ag-btn--buy-now:hover {
  background: rgba(23, 23, 23, 0.04);
}

.ag-product__wishlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  color: #666;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 16px;
  padding: 0;
}

.ag-product__wishlist-btn:hover {
  color: #171717;
}

/* Horizontal Trust Bar (Free Shipping, COD, etc.) */
.ag-product-trust-bar {
  background: #FBF8F2;
  border: 1px solid #e8e0d7;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  margin: 40px 0;
}

.ag-product-trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  position: relative;
}

.ag-product-trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(200, 163, 91, 0.25);
}

.ag-product-trust-icon {
  width: 32px;
  height: 32px;
  color: #C8A35B;
  flex-shrink: 0;
}

.ag-product-trust-icon svg {
  width: 100%;
  height: 100%;
}

.ag-product-trust-content h4 {
  font-size: 11px;
  font-weight: 700;
  margin: 0 0 2px;
  color: #171717;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ag-product-trust-content p {
  font-size: 11px;
  color: #666;
  margin: 0;
}

/* Premium Tabs details section */
.ag-product-tabs {
  margin: 40px 0;
  border: 1px solid #e8e0d7;
  border-radius: 6px;
  background: #ffffff;
  overflow: hidden;
}

.ag-product-tabs__header {
  display: flex;
  border-bottom: 1px solid #e8e0d7;
  background: #FBF8F2;
}

.ag-product-tabs__btn {
  background: transparent;
  border: 0;
  padding: 16px 24px;
  font-family: var(--ag-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #777;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.ag-product-tabs__btn.is-active {
  color: #171717;
  border-bottom-color: #C8A35B;
  background: #ffffff;
}

.ag-product-tabs__content {
  display: none;
  padding: 30px;
}

.ag-product-tabs__content.is-active {
  display: block;
}

.ag-product-tabs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 40px;
}

.ag-product-tabs__col {
  display: flex;
  flex-direction: column;
}

.ag-product-tabs__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #171717;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.ag-product-tabs__list {
  padding-left: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

/* Tabs visual promo banner on the right side */
.ag-product-tabs__promo {
  background: linear-gradient(135deg, #F5E9E3, #FBF8F2);
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px dashed rgba(200, 163, 91, 0.4);
  position: relative;
  overflow: hidden;
}

.ag-product-tabs__promo-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid #D9BDB4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8A35B;
  margin-bottom: 16px;
}

.ag-product-tabs__promo-badge svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.ag-product-tabs__promo h3 {
  font-family: var(--ag-heading);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 8px;
  color: #171717;
}

.ag-product-tabs__promo p {
  font-size: 12px;
  color: #666;
  margin: 0;
  max-width: 200px;
}

/* Responsive Product Styles */
@media (max-width: 991px) {
  .ag-product__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ag-product-trust-bar {
    flex-wrap: wrap;
    gap: 20px 0;
  }
  .ag-product-trust-item {
    flex: 0 0 50%;
  }
  .ag-product-trust-item:nth-child(2n)::after {
    display: none;
  }
  .ag-product-tabs__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .ag-product {
    padding: 20px 16px;
  }
  .ag-product__gallery {
    flex-direction: column-reverse;
  }
  .ag-product__thumbs {
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
  }
  .ag-product__thumb {
    width: 70px;
    flex-shrink: 0;
  }
  .ag-product-trust-item {
    flex: 0 0 100%;
  }
  .ag-product-trust-item::after {
    display: none !important;
  }
}

/* =================================================
AURA & GLAM MINIMAL FEMININE NAVIGATION OVERRIDES
================================================= */
.ag-header {
  background: #FBF8F2 !important;
  border-bottom: 1px solid #e8e0d7 !important;
  box-shadow: none !important;
}

.ag-header.is-scrolled {
  background: #FBF8F2 !important;
  box-shadow: 0 4px 15px rgba(23, 23, 23, 0.03) !important;
}

.ag-header__main {
  height: 86px !important;
  grid-template-columns: 1.2fr auto 1.2fr !important;
  background: #FBF8F2 !important;
}

.ag-logo__img {
  width: 170px !important;
  height: 60px !important;
}

/* Nav Links hover underline & text transition */
.ag-nav__link {
  color: #171717 !important;
  font-family: 'Outfit', 'Inter', -apple-system, sans-serif !important;
  font-weight: 500 !important;
  font-size: 11.5px !important;
  letter-spacing: 0.15em !important;
  padding: 8px 0 !important;
  transition: color 250ms cubic-bezier(0.16, 1, 0.3, 1), transform 250ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-block !important;
  position: relative !important;
  text-decoration: none !important;
}

.ag-nav__link::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  width: 0 !important;
  height: 1.5px !important;
  background: #C8A35B !important;
  transition: width 250ms cubic-bezier(0.16, 1, 0.3, 1), left 250ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ag-nav__link:hover::after {
  width: 100% !important;
  left: 0 !important;
}

.ag-nav__link:hover {
  color: #C8A35B !important;
  transform: translateY(-1px) !important;
}

/* BESTSELLERS badge styling */
.ag-nav__link--bestsellers {
  position: relative !important;
}

.ag-nav__badge {
  position: absolute !important;
  top: -11px !important;
  right: -25px !important;
  background: #C8A35B !important;
  color: #FBF8F2 !important;
  font-size: 7px !important;
  font-weight: 800 !important;
  padding: 2px 5px !important;
  border-radius: 10px !important;
  letter-spacing: 0.05em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  pointer-events: none !important;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* TOP DISCOUNTS highlight button */
.ag-nav__link--discounts {
  color: #C8A35B !important;
  font-weight: 600 !important;
  border: 1px solid #C8A35B !important;
  padding: 8px 18px !important;
  border-radius: 20px !important;
  letter-spacing: 0.12em !important;
  margin-left: 8px !important;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ag-nav__link--discounts::after {
  display: none !important;
}

.ag-nav__link--discounts:hover {
  background: #C8A35B !important;
  color: #FBF8F2 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(200, 163, 91, 0.15) !important;
}

/* Actions styling overrides */
.ag-actions .ag-icon-btn {
  color: #171717 !important;
  transition: color 0.25s ease !important;
}

.ag-actions .ag-icon-btn:hover {
  color: #C8A35B !important;
}

/* Mobile drawer and drawer links */
.ag-mobile-drawer {
  background: #FBF8F2 !important;
  color: #171717 !important;
}

.ag-mobile-drawer__header {
  border-bottom: 1px solid #e8e0d7 !important;
}

.ag-mobile-drawer__close {
  color: #171717 !important;
}

.ag-mobile-drawer__menu {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  padding: 30px 24px !important;
}

.ag-mobile-drawer__link {
  color: #171717 !important;
  font-family: 'Outfit', 'Inter', -apple-system, sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: color 0.25s ease !important;
}

.ag-mobile-drawer__link:hover {
  color: #C8A35B !important;
}

.ag-mobile-drawer__badge {
  background: #C8A35B !important;
  color: #FBF8F2 !important;
  font-size: 8px !important;
  font-weight: 800 !important;
  padding: 2px 6px !important;
  border-radius: 10px !important;
  margin-left: 8px !important;
  vertical-align: middle !important;
  text-transform: uppercase !important;
  display: inline-block !important;
}

.ag-mobile-drawer__link--discounts {
  color: #C8A35B !important;
  font-weight: 600 !important;
}

/* Make entire product card clickable */
.ag-product-card {
  position: relative !important;
}

.ag-product-card__title-link::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 1 !important;
}

/* Keep interactive controls on top of the overlay */
.ag-product-card__wishlist,
.ag-product-card__quick-add-form,
.ag-quick-add-submit,
.ag-product-card__quick-add-form button,
.ag-product-card__quick-add-form a {
  position: relative !important;
  z-index: 2 !important;
}

/* ==========================================================================
   Aura & Glam - Polished Global Typography & Readability Override
   ========================================================================== */

/* 1. Base Body Text */
body {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: clamp(15px, 1.1vw, 16px) !important;
  line-height: 1.62 !important;
  letter-spacing: normal !important;
  color: #171717 !important;
}

p {
  line-height: 1.62 !important;
  max-width: 720px;
}

/* 2. Global Heading Scales */
h1, .h1 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 500 !important;
  line-height: 1.02 !important;
  letter-spacing: normal !important;
}

h2, .h2 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(28px, 3vw, 44px) !important;
  font-weight: 500 !important;
  line-height: 1.12 !important;
  letter-spacing: normal !important;
}

h3, .h3 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 500 !important;
}

/* 3. Hero Accent / Script Typography overrides */
.ag-hero__subtitle {
  font-family: 'Great Vibes', cursive !important;
  font-size: clamp(24px, 2.5vw, 36px) !important;
  color: #C8A35B !important;
  text-shadow: none !important;
}

/* 4. Desktop Navigation Items (13-14px) */
.ag-nav__link {
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
}

/* 5. Mobile Drawer Menu Navigation (15-16px) */
.ag-mobile-drawer__link {
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
}
.ag-mobile-drawer__sub-link {
  font-size: 14px !important;
}

/* 6. Buttons Text (13-14px Desktop, 14px Mobile) */
.ag-btn, .ag-hero__btn-primary, .ag-hero__btn-secondary, button[type="submit"] {
  font-size: clamp(13px, 1.1vw, 14px) !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  line-height: 1.25 !important;
}
@media (max-width: 768px) {
  .ag-btn, .ag-hero__btn-primary, .ag-hero__btn-secondary, button[type="submit"] {
    min-height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* 7. Product Cards (Title: 15-16px, Price: 16-18px) */
.ag-product-card__title-link {
  font-size: clamp(14px, 1.2vw, 16px) !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
}
.ag-price span {
  font-size: clamp(16px, 1.3vw, 18px) !important;
  font-weight: 700 !important;
  color: #C8A35B !important;
}
.ag-price s {
  font-size: 14px !important;
  color: rgba(23, 23, 23, 0.4) !important;
  margin-left: 6px !important;
}
.ag-badge {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
}

/* 8. Product Details Page overrides */
.ag-product__title {
  font-size: clamp(30px, 4vw, 48px) !important;
  font-weight: 500 !important;
  line-height: 1.05 !important;
}
.ag-product__desc {
  font-size: 15px !important;
  line-height: 1.62 !important;
}
#ag-product-price {
  font-size: clamp(24px, 2.5vw, 30px) !important;
  font-weight: 700 !important;
  color: #C8A35B !important;
}
.ag-product__spec-label {
  font-size: 14px !important;
}
.ag-product__spec-value {
  font-size: 14px !important;
}

/* 9. Section Headings (Desktop: 38-48px, Mobile: 28-34px) */
.ag-section-title, .ag-collections__title, .ag-products__title, .ag-testimonials__title, .ag-story__title, .ag-faq__title {
  font-size: clamp(28px, 3.2vw, 44px) !important;
  font-weight: 500 !important;
  line-height: 1.12 !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
}

.ag-eyebrow {
  font-size: clamp(11px, 1vw, 13px) !important;
  letter-spacing: 0.15em !important;
  font-weight: 700 !important;
}

/* 10. FAQ accordion text */
.ag-faq-trigger {
  font-size: clamp(16px, 1.4vw, 18px) !important;
  font-weight: 600 !important;
  padding: 18px 0 !important;
}
.ag-faq-text {
  font-size: clamp(14px, 1.2vw, 16px) !important;
  line-height: 1.62 !important;
}

/* 11. Trust / Benefits label */
.ag-hero__trust-item span:first-of-type, .ag-trust-strip__title {
  font-size: clamp(13px, 1.1vw, 14px) !important;
  font-weight: 700 !important;
}
.ag-hero__trust-item span:last-of-type, .ag-trust-strip__desc {
  font-size: clamp(12px, 1vw, 14px) !important;
  line-height: 1.3 !important;
}

/* 12. Footer typography */
.ag-foot-col h3 {
  font-size: clamp(15px, 1.2vw, 16px) !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
}
.ag-foot-col__list li a {
  font-size: clamp(14px, 1.1vw, 15px) !important;
  line-height: 1.5 !important;
}
.ag-foot-col__desc {
  font-size: clamp(14px, 1.1vw, 15px) !important;
  line-height: 1.6 !important;
}


