/** Shopify CDN: Minification failed

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

**/
/* ── SUNNY NAILS THEME CSS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

:root {
  --pink:        #FF6EB4;
  --pink-light:  #FFD6EC;
  --pink-pale:   #FFF0F8;
  --pink-dark:   #E8317A;
  --yellow:      #FFD84D;
  --yellow-dark: #F5C518;
  --cream:       #FFFAFC;
  --white:       #FFFFFF;
  --dark:        #3D1530;
  --mid:         #9B5070;
  --light:       #E8A8C8;
  --border:      #FFD0E8;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--pink-pale);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--pink-dark);
  color: white;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3rem;
  background: var(--cream);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 12px rgba(255,110,180,0.08);
}

/* LOGO — matches actual sunny nails logo */
.site-header__logo {
  text-decoration: none;
  display: flex; flex-direction: column; align-items: center;
  line-height: 1; gap: 0;
}
.logo-sun {
  display: block; text-align: center;
  margin-bottom: 1px;
}
.logo-sun svg { width: 38px; height: 22px; }
.logo-text {
  display: flex; flex-direction: column; align-items: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1.1;
  color: var(--pink-dark);
  letter-spacing: -0.01em;
}

.site-nav { display: flex; gap: 2rem; list-style: none; }
.site-nav a {
  font-size: 0.8rem; font-weight: 700; text-decoration: none;
  color: var(--mid); text-transform: uppercase; letter-spacing: 0.1em;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--pink-dark); }

.site-header__actions { display: flex; align-items: center; gap: 1rem; }
.site-header__icon { font-size: 1.1rem; cursor: pointer; color: var(--dark); text-decoration: none; }
.site-header__cart {
  background: var(--pink-dark); color: white;
  padding: 0.55rem 1.3rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(232,49,122,0.3);
}
.site-header__cart:hover { background: var(--pink); transform: scale(1.04); }

/* ── BUTTONS ── */
.btn-white {
  background: white; color: var(--pink-dark);
  padding: 0.9rem 2.2rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 800; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  display: inline-block;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
.btn-outline-white {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.8);
  padding: 0.9rem 2.2rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 800; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: background 0.2s; display: inline-block;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.2); }
.btn-dark {
  background: var(--pink-dark); color: white;
  padding: 1rem 2.5rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 800; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(232,49,122,0.3);
}
.btn-dark:hover { background: var(--pink); transform: translateY(-2px); }

/* ── SECTION SHARED ── */
.section-eyebrow {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--pink-dark); font-weight: 800; margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; line-height: 1.15; color: var(--dark);
}
.section-sub {
  font-size: 0.95rem; color: var(--mid); line-height: 1.7;
  max-width: 500px; margin-top: 0.8rem;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 90vh; min-height: 600px;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, #FF9ED4 0%, #FF6EB4 40%, #E8317A 100%);
}
.hero__bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 500px 600px at 65% 40%, rgba(255,216,77,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 20% 80%, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.hero__content {
  position: relative; z-index: 2;
  padding: 0 3rem 5rem; max-width: 560px;
}
.hero__tag {
  display: inline-block;
  background: var(--yellow); color: var(--dark);
  border-radius: 50px; padding: 0.35rem 1.1rem;
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.12em; font-weight: 800;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.hero__title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900; line-height: 1.05;
  color: white; margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.hero__title em { font-style: italic; color: var(--yellow); }
.hero__sub {
  font-size: 1rem; line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem; max-width: 400px;
  font-weight: 600;
}
.hero__btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── HERO PRODUCT CARDS ── */
.hero__nail-art {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  display: flex; gap: 1.2rem; align-items: flex-end; z-index: 2;
}
.hero-nail-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  border: 3px solid rgba(255,255,255,0.6);
}
.hero-nail-card:hover { transform: translateY(-10px) !important; }
.hero-nail-card--1 { width: 140px; transform: rotate(-6deg) translateY(20px); }
.hero-nail-card--2 { width: 155px; transform: rotate(-2deg); }
.hero-nail-card--3 { width: 155px; transform: rotate(2deg); }
.hero-nail-card--4 { width: 140px; transform: rotate(6deg) translateY(20px); }
.hero-nail-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.hero-nail-card__label {
  padding: 0.5rem 0.8rem;
  font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--pink-dark); background: white;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-align: center;
}

/* ── FEATURE STRIP ── */
.feature-strip {
  background: var(--yellow);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
}
.feature-item {
  padding: 1.5rem 2rem;
  border-right: 2px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; gap: 0.8rem;
}
.feature-item:last-child { border-right: none; }
.feature-item__icon { font-size: 1.5rem; flex-shrink: 0; }
.feature-item__text strong { font-size: 0.8rem; font-weight: 800; display: block; text-transform: uppercase; letter-spacing: 0.06em; color: var(--dark); }
.feature-item__text span { font-size: 0.72rem; color: rgba(61,21,48,0.6); font-weight: 600; }

/* ── PRODUCTS ── */
.products-section { padding: 5rem 3rem; background: var(--pink-pale); }
.products-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; }
.view-all {
  font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--pink-dark); text-decoration: none;
  background: var(--pink-light); padding: 0.5rem 1.2rem; border-radius: 50px;
  transition: background 0.2s;
}
.view-all:hover { background: var(--pink-dark); color: white; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.product-card { display: block; text-decoration: none; color: var(--dark); }
.product-card__image-wrap {
  position: relative; overflow: hidden;
  background: var(--pink-light); aspect-ratio: 1;
  margin-bottom: 0.8rem; border-radius: 20px;
  border: 2px solid var(--border);
}
.product-card__image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card__image-wrap img { transform: scale(1.06); }
.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--yellow); color: var(--dark);
  font-size: 0.62rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.25rem 0.7rem; border-radius: 50px;
}
.product-card__badge--sold { background: var(--light); color: white; }
.product-card__quick-add {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--pink-dark); color: white;
  text-align: center; padding: 0.85rem;
  font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  transform: translateY(100%); transition: transform 0.3s ease;
  border: none; cursor: pointer; font-family: 'Nunito', sans-serif; width: 100%;
  border-radius: 0 0 18px 18px;
}
.product-card:hover .product-card__quick-add { transform: translateY(0); }
.product-card__quick-add:hover { background: var(--pink); }
.product-card__info { display: flex; justify-content: space-between; align-items: center; padding: 0 0.3rem; }
.product-card__name { font-size: 0.92rem; font-weight: 800; color: var(--dark); }
.product-card__price { font-size: 0.88rem; color: var(--pink-dark); font-weight: 700; }

/* ── HOW TO ── */
.howto-section { background: white; overflow: hidden; }
.howto-inner { max-width: 1200px; margin: 0 auto; padding: 5rem 3rem; }
.howto-header { text-align: center; margin-bottom: 4rem; }
.howto-header .section-sub { margin: 0.8rem auto 0; }
.howto-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.howto-steps::before {
  content: ''; position: absolute;
  top: 52px; left: calc(12.5% + 1.5rem); right: calc(12.5% + 1.5rem);
  height: 2px; background: var(--border); z-index: 0;
}
.howto-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 1.5rem; position: relative; z-index: 1; }
.step-bubble {
  width: 104px; height: 104px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin-bottom: 1.8rem; position: relative; flex-shrink: 0; transition: transform 0.3s;
  border: 3px solid white;
  box-shadow: 0 8px 24px rgba(255,110,180,0.25);
}
.howto-step:hover .step-bubble { transform: scale(1.1); }
.step-bubble--1 { background: linear-gradient(145deg, #FFD6EC, #FFB0D8); }
.step-bubble--2 { background: linear-gradient(145deg, #FFD84D, #F5C518); }
.step-bubble--3 { background: linear-gradient(145deg, #FF9ED4, #FF6EB4); }
.step-bubble--4 { background: linear-gradient(145deg, #E8317A, #C4226A); }
.step-bubble__num { font-size: 0.62rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(61,21,48,0.5); margin-bottom: 0.2rem; }
.step-bubble__icon { font-size: 2rem; line-height: 1; }
.step-content__title { font-family: 'Nunito', sans-serif; font-size: 1.1rem; font-weight: 900; color: var(--dark); margin-bottom: 0.6rem; }
.step-content__desc { font-size: 0.83rem; line-height: 1.7; color: var(--mid); font-weight: 600; }
.step-content__tip {
  display: inline-block; margin-top: 0.8rem;
  background: var(--pink-light); border-radius: 50px;
  padding: 0.3rem 0.9rem; font-size: 0.7rem;
  color: var(--pink-dark); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.howto-cta {
  text-align: center; margin-top: 4rem; padding-top: 3rem;
  border-top: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.howto-cta__stat { text-align: center; }
.howto-cta__stat strong { font-family: 'Nunito', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--pink-dark); display: block; }
.howto-cta__stat span { font-size: 0.75rem; color: var(--mid); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.howto-cta__divider { width: 1px; height: 50px; background: var(--border); }

/* ── BANNER ── */
.banner-section { position: relative; height: 480px; overflow: hidden; display: flex; align-items: center; }
.banner-section__bg {
  position: absolute; inset: 0;
  background: linear-gradient(130deg, #FF9ED4 0%, #FF6EB4 50%, #E8317A 100%);
}
.banner-section__bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 700px 500px at 80% 50%, rgba(255,216,77,0.25) 0%, transparent 70%); }
.banner-section__content { position: relative; z-index: 2; padding: 0 3rem; max-width: 560px; }
.banner-section__content .section-eyebrow { color: var(--yellow); }
.banner-section__content .section-title { color: white; font-size: clamp(2rem, 4vw, 3rem); }
.banner-section__content .section-sub { color: rgba(255,255,255,0.9); margin-bottom: 2rem; }

/* ── EMAIL ── */
.email-section { background: var(--pink-light); padding: 5rem 3rem; }
.email-inner { max-width: 520px; margin: 0 auto; text-align: center; }
.email-inner .section-title { margin-bottom: 0.8rem; }
.email-inner .section-sub { margin-bottom: 2rem; }
.email-form {
  display: flex; border-radius: 50px; overflow: hidden;
  border: 2px solid var(--border); background: white;
  box-shadow: 0 4px 20px rgba(255,110,180,0.15);
}
.email-form__input {
  flex: 1; padding: 1rem 1.4rem; border: none; outline: none;
  font-family: 'Nunito', sans-serif; font-size: 0.88rem;
  background: transparent; color: var(--dark); font-weight: 600;
}
.email-form__input::placeholder { color: var(--light); }
.email-form__btn {
  background: var(--pink-dark); color: white; border: none;
  padding: 1rem 1.8rem; font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer;
  transition: background 0.2s; border-radius: 0 50px 50px 0; white-space: nowrap;
}
.email-form__btn:hover { background: var(--pink); }
.email-note { font-size: 0.72rem; color: var(--mid); margin-top: 0.8rem; font-weight: 600; }

/* ── FOOTER ── */
.site-footer { background: var(--dark); color: white; padding: 4rem 3rem 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo {
  font-family: 'Nunito', sans-serif;
  font-size: 1.4rem; font-weight: 900;
  color: var(--pink); text-decoration: none; display: block; margin-bottom: 1rem;
}
.footer-brand__desc { font-size: 0.83rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 220px; margin-bottom: 1.5rem; font-weight: 600; }
.footer-socials { display: flex; gap: 0.8rem; }
.footer-social-link {
  width: 36px; height: 36px; border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; text-decoration: none; color: white;
  transition: border-color 0.2s, background 0.2s;
}
.footer-social-link:hover { border-color: var(--pink); background: rgba(255,110,180,0.15); }
.footer-col h5 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.35); font-weight: 800; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { font-size: 0.83rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; font-weight: 600; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom__copy { font-size: 0.72rem; color: rgba(255,255,255,0.3); font-weight: 600; }
.pay-icons { display: flex; gap: 0.5rem; }
.pay-icon { background: rgba(255,255,255,0.08); border-radius: 6px; padding: 0.2rem 0.6rem; font-size: 0.62rem; color: rgba(255,255,255,0.4); font-weight: 700; text-transform: uppercase; }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-header { padding: 1rem 1.5rem; }
  .site-nav { display: none; }
  .hero__content { padding: 0 1.5rem 3rem; }
  .hero__nail-art { display: none; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .products-section { padding: 3rem 1.5rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .howto-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .howto-steps::before { display: none; }
  .howto-cta { gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .email-section { padding: 3rem 1.5rem; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .howto-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.5rem; }
}
