/** Shopify CDN: Minification failed

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

**/
/* ============================================================
   Steevara — Hero Section CSS
   File: assets/steevara-hero.css
   Add to: Online Store > Themes > Edit Code > assets/
   Then link in layout/theme.liquid:
   <link rel="stylesheet" href="{{ 'steevara-hero.css' | asset_url }}">
   ============================================================ */

/* ── Tokens — Light Cream Theme ── */
:root {
  --sv-bg-dark:    #f0e8d8;   /* nền chính: kem ấm */
  --sv-bg-mid:     #e8dcc8;   /* nền phụ: kem đậm hơn chút */
  --sv-cream:      #faf6f0;   /* nền sáng nhất */
  --sv-gold:       #9a6f35;   /* vàng đồng — eyebrow & accent */
  --sv-gold-light: #c49040;   /* vàng sáng — italic title */
  --sv-black:      #161008;   /* đen ấm — title & số stats */
  --sv-brown:      #5a3d1a;   /* nâu — button */
  --sv-muted:      #a89070;   /* nhạt — subtitle & label phụ */
  --sv-border:     rgba(138, 94, 40, 0.18);
  --sv-font-display: 'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  --sv-font-body:    'Jost', 'Gill Sans', sans-serif;
}

/* ── Google Fonts import ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@300;400&display=swap');

/* ── Base Section ── */
.sv-hero {
  position: relative;
  background: var(--sv-bg-dark);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Subtle noise texture overlay */
.sv-hero__bg-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

/* ── Layout ── */
.sv-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 100svh;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 60px 80px 80px;
}

/* ── Content (left) ── */
.sv-hero__content {
  padding-right: 48px;
  animation: sv-fade-up 1s ease both;
}

.sv-hero__eyebrow {
  font-family: var(--sv-font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--sv-gold);
  text-transform: uppercase;
  margin: 0 0 20px;
  opacity: 0.9;
}

.sv-hero__title {
  font-family: var(--sv-font-display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--sv-black);
  margin: 0 0 28px;
  letter-spacing: -0.5px;
}

.sv-hero__title em {
  font-style: italic;
  color: var(--sv-gold-light);
  font-weight: 300;
}

.sv-hero__sub {
  font-family: var(--sv-font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--sv-muted);
  margin: 0 0 40px;
  max-width: 400px;
}

/* ── Buttons ── */
.sv-hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.sv-hero__btn {
  display: inline-block;
  font-family: var(--sv-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.sv-hero__btn--primary {
  background: var(--sv-brown);
  color: #faf6f0;
  border: 1px solid var(--sv-brown);
}

.sv-hero__btn--primary:hover {
  background: var(--sv-gold-light);
  border-color: var(--sv-gold-light);
  transform: translateY(-1px);
}

.sv-hero__btn--ghost {
  background: transparent;
  color: var(--sv-brown);
  border: 1px solid var(--sv-border);
}

.sv-hero__btn--ghost:hover {
  border-color: var(--sv-brown);
  background: rgba(90, 61, 26, 0.06);
}

/* ── Stats Bar ── */
.sv-hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: sv-fade-up 1s 0.3s ease both;
}

.sv-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sv-hero__stat-num {
  font-family: var(--sv-font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--sv-black);
  line-height: 1;
}

.sv-hero__stat-label {
  font-family: var(--sv-font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--sv-muted);
  text-transform: uppercase;
}

.sv-hero__stat-divider {
  width: 1px;
  height: 32px;
  background: var(--sv-border);
}

/* ── Visual (right) ── */
.sv-hero__visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 40px 40px 20px;
  animation: sv-fade-in 1.2s 0.2s ease both;
}

/* ── Layered offset frame system ── */
.sv-hero__img-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/5;
  z-index: 3;
}

/* Layer 3 — deepest shadow frame (bottom-right offset) */
.sv-hero__img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #c4b49a;
  transform: translate(22px, 22px);
  z-index: 1;
  border-radius: 1px;
}

/* Layer 2 — mid frame (smaller offset, gold border) */
.sv-hero__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sv-bg-mid);
  border: 1px solid var(--sv-border);
  transform: translate(11px, 11px);
  z-index: 2;
  border-radius: 1px;
}

/* Layer 1 — main image frame */
.sv-hero__img-frame {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1px;
  background: var(--sv-bg-mid);
}

.sv-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 8s ease;
}

.sv-hero:hover .sv-hero__img {
  transform: scale(1.04);
}

.sv-hero__img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--sv-bg-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sv-brown);
  font-family: var(--sv-font-body);
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.8;
}

/* Gold line accent — top-left corner of main frame */
.sv-hero__img-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  width: 48px;
  height: 48px;
  border-top: 1px solid rgba(201, 160, 90, 0.7);
  border-left: 1px solid rgba(201, 160, 90, 0.7);
  z-index: 4;
  pointer-events: none;
}

/* Badge — sits outside the frame, top-left */
.sv-hero__img-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  z-index: 5;
  background: var(--sv-black);
  padding: 10px 18px;
}

.sv-hero__badge-text {
  font-family: var(--sv-font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sv-gold);
  white-space: nowrap;
}

/* ── Floating Product Card ── */
.sv-hero__product-card {
  position: absolute;
  bottom: 32px;
  left: -40px;
  background: rgba(250, 246, 240, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid var(--sv-border);
  border-radius: 2px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 240px;
  z-index: 5;
  animation: sv-slide-in 1s 0.6s ease both;
  box-shadow: 0 4px 24px rgba(90, 61, 26, 0.12);
}

.sv-hero__pc-img {
  width: 52px;
  height: 52px;
  border-radius: 1px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--sv-bg-mid);
}

.sv-hero__pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sv-hero__pc-info {
  flex: 1;
}

.sv-hero__pc-name {
  font-family: var(--sv-font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--sv-muted);
  margin: 0 0 4px;
  line-height: 1.3;
}

.sv-hero__pc-price {
  font-family: var(--sv-font-display);
  font-size: 16px;
  font-weight: 300;
  color: var(--sv-gold);
  margin: 0;
}

.sv-hero__pc-link {
  font-family: var(--sv-font-body);
  font-size: 16px;
  color: var(--sv-gold);
  text-decoration: none;
  padding: 8px;
  transition: transform 0.2s ease;
  display: block;
}

.sv-hero__pc-link:hover {
  transform: translateX(3px);
}

/* ── Scroll Indicator ── */
.sv-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 80px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.5;
}

.sv-hero__scroll-label {
  font-family: var(--sv-font-body);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--sv-gold);
  text-transform: uppercase;
}

.sv-hero__scroll-line {
  width: 40px;
  height: 1px;
  background: var(--sv-gold);
  position: relative;
  overflow: hidden;
}

.sv-hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--sv-gold-light);
  animation: sv-scroll-line 2s infinite ease;
}

/* ── Animations ── */
@keyframes sv-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes sv-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes sv-slide-in {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes sv-scroll-line {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* ── Responsive ── */
@media screen and (max-width: 989px) {
  .sv-hero__inner {
    grid-template-columns: 1fr;
    padding: 56px 28px 40px;
    gap: 32px;
    min-height: auto;
  }

  .sv-hero__content {
    padding-right: 0;
    text-align: center;
  }

  .sv-hero__sub {
    max-width: 100%;
  }

  .sv-hero__actions {
    justify-content: center;
    margin-bottom: 32px;
  }

  .sv-hero__stats {
    justify-content: center;
  }

  .sv-hero__visual {
    order: -1;
    padding: 20px 28px 0;
  }

  .sv-hero__img-wrap {
    max-width: 300px;
    margin: 0 auto;
    aspect-ratio: 3/4;
  }

  .sv-hero__product-card {
    position: static;
    margin-top: 16px;
    justify-content: center;
  }

  .sv-hero__img-badge {
    display: none;
  }

  .sv-hero__scroll {
    display: none;
  }
}

@media screen and (max-width: 579px) {
  .sv-hero__title {
    font-size: 36px;
  }

  .sv-hero__inner {
    padding: 44px 20px 32px;
    gap: 24px;
  }

  .sv-hero__visual {
    padding: 16px 20px 0;
  }

  .sv-hero__img-wrap {
    max-width: 260px;
  }

  .sv-hero__stats {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .sv-hero__stat-num {
    font-size: 22px;
  }

  .sv-hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .sv-hero__btn {
    width: 100%;
    text-align: center;
  }
}
