/** Shopify CDN: Minification failed

Line 41:0 All "@import" rules must come first

**/
/* ============================================================
   OVATION GIFT & DESIGN — Custom Brand Stylesheet
   File: assets/ovation-custom.css
   Version: 1.0
   
   HOW TO USE:
   1. In Shopify Admin → Online Store → Themes → Edit Code
   2. In the Assets folder, click "Add a new asset"
   3. Create a blank file named: ovation-custom.css
   4. Paste this entire file into it and Save
   5. Then open layout/theme.liquid
   6. Find the closing </head> tag
   7. Paste this line just before it:
      {{ 'ovation-custom.css' | asset_url | stylesheet_tag }}
   ============================================================ */

/* ── BRAND VARIABLES ── */
:root {
  --ov-dark:       #1A1610;
  --ov-dark-2:     #141008;
  --ov-dark-3:     #0E0A06;
  --ov-dark-card:  #1E1812;
  --ov-cream:      #EEE8E5;
  --ov-cream-dim:  #B8AA9C;
  --ov-cream-hint: #8F8278;
  --ov-bronze:     #8F7D5E;
  --ov-bronze-lt:  #A89478;
  --ov-bronze-dk:  #6B5D44;
  --ov-crimson:    #B21E1E;
  --ov-crimson-d:  #8F1515;
  --ov-border:     #2A2018;
  --ov-border-lt:  #3A3028;
}

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Outfit:wght@300;400;500;600&display=swap');

/* ── BUTTONS ── */
.ov-btn-cream {
  display: inline-block;
  background: var(--ov-cream);
  color: var(--ov-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.ov-btn-cream:hover { background: #DDD7D2; color: var(--ov-dark); }

.ov-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--ov-cream);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--ov-border-lt);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.ov-btn-outline:hover { border-color: var(--ov-bronze); color: var(--ov-bronze); }

.ov-btn-crimson {
  display: inline-block;
  background: var(--ov-crimson);
  color: var(--ov-cream);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.ov-btn-crimson:hover { background: var(--ov-crimson-d); }

.ov-btn-bronze-outline {
  display: inline-block;
  background: transparent;
  color: var(--ov-cream);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid var(--ov-bronze-dk);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s;
}
.ov-btn-bronze-outline:hover { border-color: var(--ov-bronze-lt); }

/* ── HERO SECTION ── */
.ov-hero {
  background: var(--ov-dark);
  padding: 100px 3rem 88px;
  border-bottom: 1px solid var(--ov-border);
  position: relative;
  overflow: hidden;
}
.ov-hero::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 560px; height: 560px;
  border-radius: 50%;
  border: 1px solid var(--ov-border);
  opacity: 0.6;
  pointer-events: none;
}
.ov-hero::before {
  content: '';
  position: absolute;
  right: 80px; top: 80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px solid var(--ov-border-lt);
  opacity: 0.4;
  pointer-events: none;
}
.ov-hero__inner { max-width: 660px; position: relative; z-index: 1; }
.ov-hero__tag {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ov-bronze);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ov-hero__tag::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--ov-bronze);
}
.ov-hero__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 82px);
  font-weight: 600;
  line-height: 1.02;
  color: var(--ov-cream);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.ov-hero__heading em {
  color: var(--ov-crimson);
  font-style: italic;
  font-weight: 500;
}
.ov-hero__sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--ov-cream-dim);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.ov-hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.ov-hero__stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ov-border);
  flex-wrap: wrap;
}
.ov-stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--ov-bronze);
  line-height: 1;
}
.ov-stat__label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ov-cream-hint);
  margin-top: 4px;
}

/* ── MARQUEE ── */
.ov-marquee {
  background: var(--ov-bronze);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ov-marquee__inner {
  display: inline-block;
  animation: ov-scroll 40s linear infinite;
}
.ov-marquee__item {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ov-dark);
  padding: 0 2.5rem;
  font-weight: 500;
}
.ov-marquee__sep { color: var(--ov-dark); opacity: 0.35; }
@keyframes ov-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── MISSION ── */
.ov-mission {
  background: var(--ov-dark-2);
  padding: 88px 3rem;
  border-bottom: 1px solid var(--ov-border);
  text-align: center;
}
.ov-mission__inner { max-width: 720px; margin: 0 auto; }
.ov-mission__deco {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2.25rem;
}
.ov-mission__deco span {
  width: 56px; height: 1px;
  background: var(--ov-bronze);
  display: block;
}
.ov-mission__deco i {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ov-bronze);
}
.ov-mission__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: var(--ov-cream);
  line-height: 1.55;
}
.ov-mission__text strong {
  color: var(--ov-bronze-lt);
  font-style: normal;
  font-weight: 600;
}

/* ── COLLECTIONS ── */
.ov-collections {
  background: var(--ov-dark);
  padding: 88px 3rem;
}
.ov-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--ov-border);
  flex-wrap: wrap;
  gap: 1rem;
}
.ov-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  color: var(--ov-cream);
  line-height: 1;
}
.ov-section-sub {
  font-size: 13px;
  color: var(--ov-cream-hint);
  max-width: 300px;
  text-align: right;
  line-height: 1.65;
}
.ov-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ov-border);
  margin-bottom: 1px;
}
.ov-col-card {
  background: var(--ov-dark);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.ov-col-card:hover {
  border-bottom-color: var(--ov-bronze);
  background: var(--ov-dark-card);
}
.ov-col__num {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ov-cream-hint);
}
.ov-col__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ov-cream);
  line-height: 1.15;
}
.ov-col__pos {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--ov-bronze);
}
.ov-col__desc {
  font-size: 13px;
  color: var(--ov-cream-dim);
  line-height: 1.75;
  flex: 1;
}
.ov-col__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--ov-cream-hint);
}
.ov-col__price strong { color: var(--ov-cream); font-weight: 500; }
.ov-col__link {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ov-cream-hint);
  margin-top: 0.25rem;
  transition: color 0.2s;
  text-decoration: none;
}
.ov-col-card:hover .ov-col__link { color: var(--ov-bronze); }

/* Keepsakes Card */
.ov-col-keepsakes {
  background: var(--ov-dark-2);
  border-left: 4px solid var(--ov-bronze);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 1px;
}
.ov-col-keepsakes__prices {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-shrink: 0;
}
.ov-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--ov-border);
}
.ov-price-row__label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ov-cream-hint);
}
.ov-price-row__val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ov-bronze-lt);
}

/* Prestige Card */
.ov-col-prestige {
  background: var(--ov-dark-2);
  padding: 2.75rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 5rem;
  border-left: 4px solid var(--ov-bronze);
  flex-wrap: wrap;
}
.ov-prestige__num {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ov-bronze);
  margin-bottom: 0.75rem;
}
.ov-prestige__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--ov-cream);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.ov-prestige__pos {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--ov-bronze-lt);
  margin-bottom: 1.25rem;
}
.ov-prestige__desc {
  font-size: 13px;
  color: var(--ov-cream-dim);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 1.75rem;
}
.ov-prestige__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--ov-cream-hint);
  margin-bottom: 1.75rem;
}
.ov-prestige__price strong { color: var(--ov-cream); font-weight: 500; }

/* ── PROCESS ── */
.ov-process {
  background: var(--ov-dark-2);
  padding: 88px 3rem;
  border-top: 1px solid var(--ov-border);
  border-bottom: 1px solid var(--ov-border);
}
.ov-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}
.ov-step { position: relative; }
.ov-step__line {
  position: absolute;
  top: 30px; right: -1.75rem;
  width: 1.5rem; height: 1px;
  background: var(--ov-border-lt);
}
.ov-step:last-child .ov-step__line { display: none; }
.ov-step__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--ov-border-lt);
  line-height: 1;
  margin-bottom: 1rem;
}
.ov-step__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ov-cream);
  margin-bottom: 0.75rem;
}
.ov-step__desc {
  font-size: 13px;
  color: var(--ov-cream-dim);
  line-height: 1.8;
}

/* ── FEATURE ── */
.ov-feature {
  background: var(--ov-dark);
  padding: 88px 3rem;
  border-bottom: 1px solid var(--ov-border);
}
.ov-feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.ov-feature__tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ov-bronze);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ov-feature__tag::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--ov-bronze);
  display: block;
}
.ov-feature__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: var(--ov-cream);
  line-height: 1.06;
  margin-bottom: 1.5rem;
}
.ov-feature__body {
  font-size: 14px;
  color: var(--ov-cream-dim);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.ov-feature__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--ov-border);
  border-bottom: 1px solid var(--ov-border);
  margin-bottom: 2rem;
}
.ov-spec__label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ov-cream-hint);
  margin-bottom: 4px;
}
.ov-spec__val {
  font-size: 13px;
  color: var(--ov-cream-dim);
  line-height: 1.5;
}
.ov-feature__img {
  background: var(--ov-dark-2);
  border: 1px solid var(--ov-border);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.ov-feature__img::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid var(--ov-border);
  pointer-events: none;
}

/* ── BRAND VALUES ── */
.ov-brand-bar {
  background: var(--ov-dark-2);
  border-top: 1px solid var(--ov-border);
  border-bottom: 1px solid var(--ov-border);
  padding: 48px 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}
.ov-brand-val { text-align: center; }
.ov-brand-val__icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--ov-bronze);
  margin-bottom: 0.75rem;
}
.ov-brand-val__label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ov-cream-dim);
}
.ov-brand-divider {
  width: 1px;
  height: 48px;
  background: var(--ov-border);
}

/* ── TESTIMONIAL ── */
.ov-testimonial {
  background: var(--ov-dark-2);
  padding: 88px 3rem;
  text-align: center;
  border-top: 1px solid var(--ov-border);
  border-bottom: 1px solid var(--ov-border);
}
.ov-testimonial__line {
  width: 1px; height: 52px;
  background: var(--ov-bronze);
  margin: 0 auto 2.5rem;
}
.ov-testimonial__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  font-style: italic;
  color: var(--ov-cream);
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.45;
}
.ov-testimonial__cite {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ov-cream-hint);
}

/* ── MINI MEDALLION BANNER ── */
.ov-mini-banner {
  background: var(--ov-dark-3);
  padding: 56px 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  border-top: 3px solid var(--ov-bronze);
  flex-wrap: wrap;
}
.ov-mini__tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ov-bronze);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ov-mini__tag::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--ov-bronze);
  display: block;
}
.ov-mini__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--ov-cream);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.ov-mini__body {
  font-size: 14px;
  color: var(--ov-cream-dim);
  line-height: 1.75;
  max-width: 440px;
}
.ov-mini__price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
  margin-bottom: 0.75rem;
}
.ov-mini__price-lbl {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ov-cream-hint);
}
.ov-mini__price-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--ov-bronze-lt);
}

/* ── CTA SECTION ── */
.ov-cta {
  background: var(--ov-dark);
  padding: 100px 3rem;
  text-align: center;
  border-top: 1px solid var(--ov-border);
  position: relative;
}
.ov-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 3px;
  background: var(--ov-bronze);
}
.ov-cta__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 600;
  color: var(--ov-cream);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.ov-cta__heading em {
  font-style: italic;
  color: var(--ov-crimson);
  font-weight: 400;
}
.ov-cta__body {
  font-size: 14px;
  color: var(--ov-cream-dim);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.ov-cta__pair {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ov-hero { padding: 64px 1.5rem 56px; }
  .ov-hero__stats { gap: 1.5rem; }
  .ov-col-grid { grid-template-columns: 1fr 1fr; }
  .ov-process__grid { grid-template-columns: 1fr 1fr; }
  .ov-feature__inner { grid-template-columns: 1fr; gap: 2rem; }
  .ov-brand-bar { gap: 2rem; }
  .ov-mini-banner { flex-direction: column; }
  .ov-col-keepsakes { flex-direction: column; }
}
@media (max-width: 600px) {
  .ov-hero { padding: 48px 1.25rem 40px; }
  .ov-col-grid { grid-template-columns: 1fr; }
  .ov-process__grid { grid-template-columns: 1fr; }
  .ov-collections,
  .ov-process,
  .ov-feature,
  .ov-mission,
  .ov-cta { padding-left: 1.25rem; padding-right: 1.25rem; }
  .ov-brand-bar { gap: 1.5rem; padding: 32px 1.25rem; }
  .ov-brand-divider { display: none; }
}
