/** Shopify CDN: Minification failed

Line 35:13 Expected ":"

**/
/* ============================================================
   Yuga Diamonds – Homepage & Footer Refinements
   File: assets/yuga-homepage-refinements.css
   ============================================================ */

/* ----------------------------------------------------------
   CSS Custom Properties
   ---------------------------------------------------------- */
:root {
  --yuga-navy:       #1B2A4A;
  --yuga-gold:       #C9A84C;
  --yuga-gold-light: #E2C47A;
  --yuga-white:      #FFFFFF;
  --yuga-off-white:  #F8F6F2;
  --yuga-text-dark:  #1B2A4A;
  --yuga-overlay:    rgba(27, 42, 74, 0.45);
  --yuga-radius:     4px;
  --yuga-transition: 0.28s ease;
  --yuga-font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --yuga-font-sans:  'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

/* ----------------------------------------------------------
   1. HERO BANNER
   ---------------------------------------------------------- */
.yuga-hero-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index:0;s
}

.yuga-hero-slider {
  width: 100%;
  overflow: hidden;
}

.yuga-hero-slider__track {
  display: flex;
  width: 100%;
}

.yuga-hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  /* min-height: 70vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height:100%;
  min-height:100%;
}

/* Hero image fills the slide */
.yuga-hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Semi-transparent overlay behind copy */
.yuga-hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px 40px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--yuga-overlay);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: var(--yuga-radius);
}

/* Kicker / eyebrow */
.yuga-kicker {
  font-family: var(--yuga-font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yuga-gold-light);
  margin: 0 0 14px;
}

/* Main heading */
.yuga-hero-copy h2,
.yuga-hero-copy h1 {
  font-family: var(--yuga-font-serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--yuga-white);
  margin: 0 0 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

/* Sub-text */
.yuga-hero-copy > p:not(.yuga-kicker) {
  font-family: var(--yuga-font-sans);
  font-size: clamp(14px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 32px;
  line-height: 1.6;
}

/* CTA row */
.yuga-hero-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

/* Shared button base */
.yuga-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* height: 56px; */
  min-width: 200px;
  padding: 12px 24px;
  font-family: var(--yuga-font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--yuga-radius);
  cursor: pointer;
  transition: background var(--yuga-transition),
              color var(--yuga-transition),
              border-color var(--yuga-transition),
              box-shadow var(--yuga-transition);
  white-space: nowrap;
}

/* Primary CTA – gold fill */
.yuga-btn--navy {
  background: var(--yuga-ink);
  color: #ffffff;
}
.yuga-btn--navy:hover,
.yuga-btn--navy:focus-visible {
  background: var(--yuga-gold);
  border-color: var(--yuga-gold);
}
.yuga-btn--link {
  color: var(--yuga-ink);
  min-width:auto;
  width:auto;
  padding:0 !important;
}

/* Secondary CTA – outlined */
.yuga-btn--light {
  background: var(--yuga-white);
  color: var(--yuga-navy);
  /* border: 2px solid var(--yuga-white); */
}
.yuga-btn--light:hover,
.yuga-btn--light:focus-visible {
  background: var(--yuga-ink);
  color: var(--yuga-white);
}
.yuga-btn--gold:hover {
  background: #ddc061;
}
.yuga-btn--link:hover {
  color: var(--yuga-gold);
}

/* ----------------------------------------------------------
   2. FEATURED COLLECTIONS GRID
   ---------------------------------------------------------- */
.yuga-collections {
  padding: 80px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.yuga-collections__heading {
  font-family: var(--yuga-font-serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: var(--yuga-navy);
  text-align: center;
  margin: 0 0 12px;
}

.yuga-collections__subheading {
  font-family: var(--yuga-font-sans);
  font-size: 15px;
  color: #6b7280;
  text-align: center;
  margin: 0 0 48px;
}

.yuga-collections__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Collection card */
.yuga-collection-card {
  background: var(--yuga-white);
  border-radius: var(--yuga-radius);
  overflow: hidden;
  text-decoration: none;
  display: block;
  position: relative;
  box-shadow: 0 2px 8px rgba(27,42,74,0.06);
  transition: box-shadow var(--yuga-transition), transform var(--yuga-transition);
}
.yuga-collection-card:hover {
  box-shadow: 0 8px 28px rgba(27,42,74,0.14);
  transform: translateY(-3px);
}

/* 3:4 aspect ratio image wrapper */
.yuga-collection-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--yuga-off-white);
}
.yuga-collection-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.yuga-collection-card:hover .yuga-collection-card__img-wrap img {
  transform: scale(1.05);
}

/* Gold hover overlay */
.yuga-collection-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(201, 168, 76, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--yuga-transition);
}
.yuga-collection-card:hover .yuga-collection-card__overlay {
  opacity: 1;
}
.yuga-collection-card__overlay span {
  font-family: var(--yuga-font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yuga-navy);
  border: 2px solid var(--yuga-navy);
  padding: 12px 28px;
  border-radius: var(--yuga-radius);
  background: transparent;
}

/* Card body */
.yuga-collection-card__body {
  padding: 18px 16px 20px;
  text-align: center;
}
.yuga-collection-card__name {
  font-family: var(--yuga-font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--yuga-navy);
  margin: 0 0 4px;
}
.yuga-collection-card__count {
  font-family: var(--yuga-font-sans);
  font-size: 12px;
  color: #9ca3af;
  letter-spacing: 0.06em;
}

/* ----------------------------------------------------------
   3. WHY YUGA DIAMONDS – TRUST STRIP
   ---------------------------------------------------------- */
.yuga-trust-strip {
  background: var(--yuga-off-white);
  padding: 56px 24px;
  border-top: 1px solid rgba(27,42,74,0.08);
  border-bottom: 1px solid rgba(27,42,74,0.08);
}

.yuga-trust-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}

.yuga-trust-item {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.yuga-trust-item__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--yuga-navy);
  color: var(--yuga-gold);
  flex-shrink: 0;
}
.yuga-trust-item__icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.yuga-trust-item__label {
  font-family: var(--yuga-font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yuga-navy);
  margin: 0 0 4px;
}
.yuga-trust-item__desc {
  font-family: var(--yuga-font-sans);
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* ----------------------------------------------------------
   4. REVIEWS / TESTIMONIALS
   ---------------------------------------------------------- */
.yuga-reviews {
  background: var(--yuga-white);
  padding: 80px 24px;
}

.yuga-reviews__heading {
  font-family: var(--yuga-font-serif);
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 700;
  color: var(--yuga-navy);
  text-align: center;
  margin: 0 0 12px;
}
.yuga-reviews__sub {
  font-family: var(--yuga-font-sans);
  font-size: 14px;
  color: #9ca3af;
  text-align: center;
  margin: 0 0 48px;
}

/* Star row */
.yuga-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 16px;
}
.yuga-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--yuga-gold);
}

.yuga-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.yuga-review-card {
  background: var(--yuga-off-white);
  border-radius: var(--yuga-radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  position: relative;
}
.yuga-review-card::before {
  content: '\201C';
  font-family: var(--yuga-font-serif);
  font-size: 72px;
  line-height: 1;
  color: var(--yuga-gold);
  position: absolute;
  top: 12px;
  left: 24px;
  opacity: 0.4;
}

.yuga-review-card__text {
  font-family: var(--yuga-font-serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: var(--yuga-navy);
  margin: 12px 0 0;
}
.yuga-review-card__author {
  font-family: var(--yuga-font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yuga-gold);
  margin: 0;
}

/* ----------------------------------------------------------
   5. INSTAGRAM FEED – PLACEHOLDER GRID
   ---------------------------------------------------------- */
.yuga-instagram {
  padding: 72px 24px;
  background: var(--yuga-off-white);
  text-align: center;
}

.yuga-instagram__heading {
  font-family: var(--yuga-font-serif);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--yuga-navy);
  margin: 0 0 8px;
}
.yuga-instagram__handle {
  font-family: var(--yuga-font-sans);
  font-size: 14px;
  color: var(--yuga-gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0 0 36px;
  text-decoration: none;
  display: inline-block;
}
.yuga-instagram__handle:hover {
  color: var(--yuga-navy);
}

.yuga-instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
}

.yuga-instagram__item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(27,42,74,0.08);
}
.yuga-instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.yuga-instagram__item:hover img {
  transform: scale(1.07);
}
.yuga-instagram__item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,42,74,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--yuga-transition);
}
.yuga-instagram__item:hover .yuga-instagram__item__overlay {
  opacity: 1;
}
.yuga-instagram__item__overlay svg {
  width: 28px;
  height: 28px;
  fill: var(--yuga-white);
}

/* ----------------------------------------------------------
   6. FOOTER
   ---------------------------------------------------------- */
.yuga-footer,
.section-background.color-background-1 + .section,
footer.footer {
  /* Override theme footer colors if class targeting is needed */
}

/* Primary footer wrapper */
.yuga-footer {
  background: var(--yuga-navy);
  color: var(--yuga-white);
  /* padding-top: 60px; */
  padding-bottom: 0;
  font-family: var(--yuga-font-sans);
}

/* -- Newsletter row ---------------------------------------- */
.yuga-footer__newsletter {
  max-width: 1200px;
  margin: 0 auto 0;
  padding: 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  /* gap: 24px; */
  /* border-bottom: 1px solid rgba(255,255,255,0.12); */
  /* padding-bottom: 48px; */
}

.yuga-footer__newsletter-copy h2 {
  font-family: var(--yuga-font-serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: var(--yuga-white);
  margin: 0 0 6px;
}
.yuga-footer__newsletter-copy p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.yuga-footer__newsletter-form {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  border-radius: var(--yuga-radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.yuga-footer__newsletter-form input[type="email"] {
  flex: 1 1 240px;
  height: 52px;
  padding: 0 20px;
  font-family: var(--yuga-font-sans);
  font-size: 14px;
  background: rgba(255,255,255,0.1);
  color: var(--yuga-white);
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  border-radius: 0;
  outline: none;
  transition: background var(--yuga-transition);
}
.yuga-footer__newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.45);
}
.yuga-footer__newsletter-form input[type="email"]:focus {
  background: rgba(255,255,255,0.16);
}
.yuga-footer__newsletter-form button {
  height: 52px;
  padding: 0 28px;
  background: var(--yuga-gold);
  color: var(--yuga-navy);
  font-family: var(--yuga-font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 0;
  white-space: nowrap;
  transition: background var(--yuga-transition);
}
.yuga-footer__newsletter-form button:hover {
  background: var(--yuga-gold-light);
}

/* -- Main link columns ------------------------------------ */
.yuga-footer__columns {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 48px;
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}

/* Logo column */
.yuga-footer__logo-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.yuga-footer__logo {
  display: block;
  max-width: 180px;
}
.yuga-footer__logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1); /* white logo on dark bg */
}
.yuga-footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 240px;
  margin: 0;
}

/* Social icons */
.yuga-footer__socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.yuga-footer__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--yuga-white);
  text-decoration: none;
  transition: border-color var(--yuga-transition),
              background var(--yuga-transition),
              color var(--yuga-transition);
}
.yuga-footer__social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.yuga-footer__social-btn:hover {
  border-color: var(--yuga-gold);
  background: var(--yuga-gold);
  color: var(--yuga-navy);
}

/* Individual link columns */
.yuga-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.yuga-footer__col-heading {
  font-family: var(--yuga-font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yuga-gold);
  margin: 0 0 6px;
}
.yuga-footer__col a {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--yuga-transition);
  line-height: 1.4;
}
.yuga-footer__col a:hover {
  color: var(--yuga-gold);
}

/* -- Bottom bar ------------------------------------------ */
.yuga-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 40px 40px;
  max-width: 100%;
}
.yuga-footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.yuga-footer__copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
.yuga-footer__credit {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-align: center;
}
.yuga-footer__credit .yuga-footer_credit_box{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap:wrap;
}
.yuga-footer__credit .yuga-footer_credit_box a{
  margin-top: 0;
}

.yuga-footer__credit a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--yuga-transition);
}
.yuga-footer__credit a:hover {
  color: var(--yuga-gold);
}
.yuga-footer__shopify-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}
.yuga-footer__shopify-badge svg {
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,0.5);
}
.yuga-footer__shopify-badge:hover {
  color: rgba(255,255,255,0.8);
}

/* ----------------------------------------------------------
   7. RESPONSIVE – TABLETS (max 1024px)
   ---------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .yuga-collections__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .yuga-instagram__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .yuga-footer__columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .yuga-footer__logo-col {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .yuga-footer__newsletter {
    flex-direction: column;
    align-items: flex-start;
    /* gap: 20px; */
  }
  .yuga-footer__newsletter-form {
    width: 100%;
    max-width: 520px;
  }
}

/* ----------------------------------------------------------
   8. RESPONSIVE – MOBILE (max 768px)
   ---------------------------------------------------------- */
@media screen and (max-width: 768px) {
  /* Hero */
  .yuga-hero-slide {
    /* min-height: 60vh; */
    align-items: flex-end;
  }
  .yuga-hero-copy {
    padding: 32px 24px;
    margin: 0 16px 32px;
    width: calc(100% - 32px);
    box-sizing: border-box;
  }
  .yuga-hero-copy__actions {
    flex-direction: column;
    gap: 12px;
  }
  /* .yuga-btn {
    width: 100%;
  } */

  /* Collections */
  .yuga-collections__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .yuga-collections {
    padding: 56px 16px;
  }

  /* Trust strip */
  .yuga-trust-strip__inner {
    gap: 28px;
    justify-content: center;
  }
  .yuga-trust-item {
    flex: 1 1 130px;
    max-width: 150px;
  }

  /* Reviews */
  .yuga-reviews__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .yuga-reviews {
    padding: 56px 16px;
  }

  /* Instagram */
  .yuga-instagram__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .yuga-instagram {
    padding: 56px 16px;
  }

  /* Footer */
  .yuga-footer__columns {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px 40px;
    gap: 28px;
  }
  .yuga-footer__logo-col {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
  }
  .yuga-footer__newsletter {
    padding: 0 24px 0;
  }
  .yuga-footer__newsletter-form {
    flex-wrap: wrap;
  }
  .yuga-footer__newsletter-form input[type="email"] {
    flex: 1 1 100%;
    border-right: 1px solid rgba(255,255,255,0.2);
    border-bottom: none;
    border-radius: var(--yuga-radius) var(--yuga-radius) 0 0;
  }
  .yuga-footer__newsletter-form button {
    flex: 1 1 100%;
    border-radius: 0 0 var(--yuga-radius) var(--yuga-radius);
  }
  .yuga-footer__bottom {
    padding: 20px 24px 40px;
  }
  .yuga-footer__bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
}

/* ----------------------------------------------------------
   9. SMALL MOBILE (max 480px)
   ---------------------------------------------------------- */
@media screen and (max-width: 480px) {
  .yuga-collections__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .yuga-collection-card__name {
    font-size: 14px;
  }
  .yuga-instagram__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .yuga-footer__columns {
    grid-template-columns: 1fr;
  }

}

/* ----------------------------------------------------------
   10. UTILITY – shared homepage section spacing
   ---------------------------------------------------------- */
.yuga-section-divider {
  width: 60px;
  height: 2px;
  background: var(--yuga-gold);
  margin: 0 auto 32px;
  border: none;
  display: block;
}

/* Visually-hidden helper for screen readers */
.yuga-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
