/** Shopify CDN: Minification failed

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

**/
:root {
  --orange: #ff6b2b;
  --orange-dark: #e85520;
  --orange-light: #fff3ee;
  --black: #111111;
  --white: #ffffff;
  --grey: #f5f5f7;
  --grey2: #e8e8ec;
  --text: #222222;
  --muted: #888888;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.13);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=DM+Sans:wght@300;400;500;700&display=swap');

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 10px 20px;
  letter-spacing: 0.3px;
}
.announcement-bar span { color: var(--orange); }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  border-bottom: 1px solid var(--grey2);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.site-logo {
  font-family: 'Nunito', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.5px;
}
.site-logo span { color: var(--orange); }

.site-nav { display: flex; gap: 2rem; list-style: none; }
.site-nav a {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--black); }

.header-actions { display: flex; align-items: center; gap: 1rem; }

.header-cart {
  position: relative;
  font-size: 1.3rem;
  cursor: pointer;
  width: 40px; height: 40px;
  background: var(--grey);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.cart-count {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--orange);
  color: white;
  font-size: 0.6rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  border: none;
  border-radius: 10px;
}
.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 4px 16px rgba(255,107,43,0.3);
}
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 6px 24px rgba(255,107,43,0.4); }
.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--grey2);
}
.btn-ghost:hover { border-color: var(--black); }

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--orange-light);
  border-top: 1px solid rgba(255,107,43,0.15);
  border-bottom: 1px solid rgba(255,107,43,0.15);
  padding: 0.65rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 2rem;
  animation: marquee 25s linear infinite;
}
.marquee-track span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}
.marquee-track .dot { color: rgba(255,107,43,0.3); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
  background: linear-gradient(160deg, #fff8f5 0%, #fff3ee 100%);
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--orange), transparent);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid rgba(255,107,43,0.2);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  width: fit-content;
  box-shadow: 0 2px 10px rgba(255,107,43,0.1);
}

.hero-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 1.2rem;
}
.hero-title .orange { color: var(--orange); }

.hero-sub {
  font-size: 1rem;
  color: #666;
  max-width: 400px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

.hero-link {
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 700;
  border-bottom: 2px solid var(--grey2);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.hero-link:hover { border-color: var(--orange); color: var(--orange); }

.hero-right {
  background: linear-gradient(160deg, #ffe8d6 0%, #ffd4b8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.5), transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}

.hero-products {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  padding: 40px;
}

.hero-card {
  background: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  min-width: 130px;
  animation: float 6s ease-in-out infinite;
}
.hero-card:nth-child(2) { animation-delay: 2s; transform: translateY(-20px); }
.hero-card:nth-child(3) { animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-card:nth-child(2) {
  animation: float2 6s ease-in-out infinite;
  animation-delay: 2s;
}
@keyframes float2 {
  0%, 100% { transform: translateY(-20px); }
  50% { transform: translateY(-32px); }
}

.hero-card-label {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.hero-card-emoji { font-size: 2rem; margin-bottom: 6px; }
.hero-card-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.3;
}
.hero-card-price {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--orange);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--grey2);
  border-bottom: 1px solid var(--grey2);
}
.trust-item {
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--grey2);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.5rem; flex-shrink: 0; }
.trust-title { font-size: 0.875rem; font-weight: 700; color: var(--black); }
.trust-text { font-size: 0.75rem; color: var(--muted); }

/* ── SECTION COMMONS ── */
.section { padding: 5rem 4rem; }

.section-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}
.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.section-link {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 700;
  border-bottom: 2px solid rgba(255,107,43,0.2);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.section-link:hover { border-color: var(--orange); }

/* ── PRODUCT GRID ── */
.products-section { padding: 5rem 4rem; background: var(--grey); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 2.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey2);
  transition: box-shadow 0.3s, transform 0.3s;
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.product-badge {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  position: absolute;
  top: 10px; left: 10px;
}
.product-badge.badge-new { background: #16a34a; }

.product-img-wrap {
  width: 100%;
  height: 200px;
  background: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-img-placeholder { font-size: 3.5rem; opacity: 0.4; }

.product-info { padding: 1rem; }

.product-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.4;
}
.product-pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.product-price {
  font-family: 'Nunito', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--black);
}
.product-compare {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: line-through;
}

.product-btn {
  width: 100%;
  background: var(--black);
  color: white;
  padding: 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
  border: none;
  border-radius: 8px;
}
.product-btn:hover { background: var(--orange); }

/* ── CATEGORIES ── */
.cat-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 16px;
}
.cat-card {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: var(--radius);
  transition: transform 0.3s;
}
.cat-card:hover { transform: scale(1.01); }
.cat-card:first-child { grid-row: 1 / 3; }

.cat-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.cat-card:hover .cat-bg { transform: scale(1.05); }

.cat-bg-1 { background: linear-gradient(135deg, #fff3ee, #ffd4b8); }
.cat-bg-2 { background: linear-gradient(135deg, #fff8e1, #ffe082); }
.cat-bg-3 { background: linear-gradient(135deg, #e8f5e9, #a5d6a7); }
.cat-bg-4 { background: linear-gradient(135deg, #e3f2fd, #90caf9); }

.cat-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  font-size: 6rem;
  opacity: 0.15;
  transition: all 0.3s;
}
.cat-card:hover .cat-icon { opacity: 0.25; transform: translate(-50%, -65%); }

.cat-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.8rem;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
}
.cat-tag {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 6px;
}
.cat-name {
  font-family: 'Nunito', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.cat-card:first-child .cat-name { font-size: 2rem; }
.cat-count { color: rgba(255,255,255,0.8); font-size: 0.8rem; }

.cat-arrow {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.3s;
  font-weight: 700;
}
.cat-card:hover .cat-arrow { opacity: 1; }

/* ── WHY US ── */
.why-section {
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: var(--grey);
}

.why-left p {
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
  margin: 1.2rem 0 1.8rem;
}

.stats-row { display: flex; gap: 2.5rem; margin-top: 2rem; }
.stat-num {
  font-family: 'Nunito', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--muted); font-weight: 600; }

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feature-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid var(--grey2);
  transition: box-shadow 0.3s;
}
.feature-card:hover { box-shadow: var(--shadow); }
.feature-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.feature-title { font-weight: 700; margin-bottom: 0.3rem; font-size: 0.9rem; color: var(--black); }
.feature-text { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

/* ── SALE BANNER ── */
.sale-banner {
  position: relative;
  padding: 6rem 4rem;
  overflow: hidden;
  text-align: center;
  background: var(--black);
}
.sale-banner::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,43,0.15), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}
.sale-banner-content { position: relative; z-index: 2; }
.sale-banner-tag {
  display: inline-block;
  background: rgba(255,107,43,0.15);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.sale-banner-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}
.sale-banner-title .orange { color: var(--orange); }
.sale-banner-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  padding: 4rem 4rem 2rem;
  border-top: 3px solid var(--orange);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'Nunito', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  display: block;
  margin-bottom: 1rem;
  color: white;
}
.footer-logo span { color: var(--orange); }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.75rem; }
.footer-payments { display: flex; gap: 8px; }
.pay-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
}

/* ── FADE ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .site-header { padding: 1rem 1.5rem; }
  .site-nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 3rem 1.5rem; }
  .hero-right { display: none; }
  .section, .products-section, .why-section { padding: 3rem 1.5rem; }
  .cat-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .cat-card:first-child { grid-row: auto; min-height: 220px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .why-section { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .sale-banner { padding: 3rem 1.5rem; }
  .site-footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
}
