/** Shopify CDN: Minification failed

Line 861:0 Unexpected "}"

**/
/* ===== ICECUP THEME — SUMMER VIBE ===== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Fredoka+One&display=swap');

:root {
  --pink: #FF4F8B;
  --blue: #00BFFF;
  --green: #4CD964;
  --yellow: #FFD60A;
  --orange: #FF9500;
  --bg: #f0faff;
  --dark: #1a2340;
  --white: #ffffff;
  --radius: 20px;
  --font-display: 'Fredoka One', cursive;
  --font-body: 'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(0,191,255,0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,191,255,0.1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo span { color: var(--blue); }

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
}

.main-nav a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  transition: color 0.2s;
}

.main-nav a:hover { color: var(--pink); }

.cart-btn {
background: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);


  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,79,139,0.4);
}

.cart-count {
  background: white;
  color: var(--pink);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

/* ===== HERO ===== */
.hero-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  /* Aspect ratio for the banner image: ~3.14:1 */
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.btn-commander {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);
  color: white;
  font-family: var(--font-display);
  font-size: 1.25rem;
  padding: 16px 44px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(249, 124, 0, 0.95);
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.btn-commander:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 40px rgba(255,79,139,0.6);
}

/* ===== TRUST BANNER ===== */
.trust-banner {
  background: linear-gradient(90deg, #fff9 0%, #f0faff 50%, #fff9 100%);
  border-top: 2px solid rgba(0,191,255,0.15);
  border-bottom: 2px solid rgba(0,191,255,0.15);
  overflow: hidden;
  padding: 0;
}

.trust-track {
  overflow: hidden;
}

.trust-items {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: scroll-trust 28s linear infinite;
  white-space: nowrap;
}

.trust-item {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--dark);
  padding: 18px 28px;
}

.trust-sep {
  color: rgba(0,191,255,0.4);
  font-size: 1.3rem;
  padding: 0 4px;
}

@keyframes scroll-trust {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ===== PRODUCT FEATURE ===== */
.product-feature {
  padding: 64px 24px;
  background: var(--bg);
}

.product-detail {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-images { position: relative; }

.product-img {
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,191,255,0.15);
}

.product-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 16px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--pink);
  margin-bottom: 20px;
}

.product-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 32px;
}

.variant-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(0,191,255,0.3);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 16px;
  background: white;
  outline: none;
}

.btn-add-cart {
  width: 100%;
  background: linear-gradient(135deg, var(--blue), #0080ff);
  color: white;
  font-family: var(--font-display);
  font-size: 1.2rem;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,191,255,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-add-cart:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,191,255,0.5);
}

.no-product-placeholder {
  text-align: center;
  padding: 60px 24px;
  background: white;
  border-radius: var(--radius);
  border: 2px dashed rgba(0,191,255,0.3);
  font-size: 1.1rem;
  color: #888;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  background: linear-gradient(135deg, #00BFFF 0%, #0080ff 100%);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.reviews-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: white;
  text-align: center;
  margin-bottom: 48px;
  text-shadow: 0 2px 15px rgba(0,0,0,0.15);
}

.brand-highlight {
  color: var(--yellow);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.review-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 28px;
  color: white;
  transition: transform 0.25s, background 0.25s;
}

.review-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.22);
}

.review-stars {
  color: var(--yellow);
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  font-weight: 800;
  font-size: 0.9rem;
  opacity: 0.85;
}

.reviews-more-wrap {
  text-align: right;
}

.btn-more-reviews {
  background: white;
  color: #0080ff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-more-reviews:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,80,0.55);
  backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: white;
  border-radius: 24px;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.modal-box h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 28px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: #f0f0f0;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.modal-close:hover { background: #e0e0e0; }

.modal-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.modal-review-card {
  background: var(--bg);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid rgba(0,191,255,0.15);
}

.modal-review-card .review-stars { color: var(--yellow); font-size: 1rem; margin-bottom: 8px; }
.modal-review-card .review-text { font-size: 0.88rem; color: #444; line-height: 1.6; margin-bottom: 10px; }
.modal-review-card .review-author { font-weight: 800; font-size: 0.82rem; color: #0080ff; }

/* ===== COLLECTION PAGE ===== */
.collection-page {
  padding: 60px 24px;
}

.collection-title {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,191,255,0.1);
  transition: transform 0.25s, box-shadow 0.25s;
  display: block;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,191,255,0.2);
}

.product-card-img {
  background: linear-gradient(135deg, #e0f7ff, #f0fff4);
  padding: 20px;
}

.product-card-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.product-card-info {
  padding: 20px;
}

.product-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.product-card-info .price {
  color: var(--pink);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.btn-shop {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), #0080ff);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
}

/* ===== PRODUCT PAGE ===== */
.product-page {
  padding: 60px 24px;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-main-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,191,255,0.15);
}

.product-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}

.thumb.active, .thumb:hover { border-color: var(--blue); }

/* ===== CART PAGE ===== */
.cart-page {
  padding: 60px 24px;
  max-width: 700px;
}

.cart-page h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 32px;
}

.cart-empty { font-size: 1.1rem; color: #888; }
.cart-empty a { color: var(--blue); font-weight: 700; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: white;
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow: 0 3px 12px rgba(0,191,255,0.08);
}

.cart-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 10px; }
.cart-item-info { flex: 1; }
.cart-item-title { font-weight: 700; margin-bottom: 4px; }
.cart-item-price { color: var(--pink); font-weight: 800; }
.cart-item input { width: 52px; padding: 6px 10px; border: 2px solid rgba(0,191,255,0.2); border-radius: 8px; font-size: 0.95rem; }
.remove-item { color: #ccc; font-size: 1.1rem; transition: color 0.2s; }
.remove-item:hover { color: var(--pink); }

.cart-total {
  padding: 20px 0;
  font-size: 1.2rem;
  border-top: 2px solid rgba(0,191,255,0.15);
  margin: 16px 0;
}

.btn-checkout {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: white;
  font-family: var(--font-display);
  font-size: 1.15rem;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(255,79,139,0.35);
  transition: transform 0.2s;
}

.btn-checkout:hover { transform: translateY(-3px); }

/* ===== PAGE ===== */
.page-content {
  padding: 60px 24px;
  max-width: 800px;
}

.page-content h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--dark);
}

.rte { line-height: 1.8; color: #555; font-size: 1rem; }
.rte p { margin-bottom: 16px; }
.rte h2, .rte h3 { font-family: var(--font-display); color: var(--dark); margin: 24px 0 12px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 56px 24px 0;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.footer-col h4 {
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--blue); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .main-nav { display: none; }

  .hero-overlay { bottom: 5%; }

  .btn-commander {
    font-size: 1rem;
    padding: 13px 28px;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .modal-reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-title { font-size: 1.8rem; }
}
/* ===== MOBILE OVERRIDES ===== */
@media (max-width: 768px) {
  .trust-banner {
    font-size: 0.65rem !important;
  }
  .trust-items {
    gap: 4px !important;
  }
  .trust-item, .trust-sep {
    font-size: 0.65rem !important;
    padding: 4px 6px !important;
  }
}
@media (max-width: 768px) {
  .btn-commander {
    font-size: 0.85rem !important;
    padding: 8px 10px !important;
  }
}
@media (max-width: 768px) {
  .hero-desktop-only { display: none !important; }
  .hero-mobile-only {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px 32px;
    background: linear-gradient(160deg, #e0f7ff 0%, #ffffff 60%, #f0faff 100%);
    gap: 16px;
    min-height: 90vh;
    justify-content: center;
  }
  .hero-mobile-logo {
    width: 90%;
    max-width: 340px;
    height: auto;
  }
  .hero-mobile-stars {
    font-size: 1.3rem;
    color: #f5a623;
    font-weight: 700;
  }
  .hero-mobile-slogan {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
    max-width: 320px;
    margin: 0;
  }
}
/* ===== MOBILE OVERRIDES ===== */
@media (max-width: 768px) {
  .trust-banner {
    font-size: 0.65rem !important;
  }
  .trust-items {
    gap: 4px !important;
  }
  .trust-item, .trust-sep {
    font-size: 0.65rem !important;
    padding: 4px 6px !important;
  }
  .btn-commander {
    font-size: 0.85rem !important;
    padding: 8px 10px !important;
  }
}

/* ===== HERO MOBILE/DESKTOP SWITCH ===== */
.hero-desktop-only { display: block; }
.hero-mobile-only { display: none; }

@media (max-width: 768px) {
  .hero-desktop-only { display: none !important; }
  .hero-mobile-only {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0px 20px 32px;
    background: linear-gradient(160deg, #00b4d8 0%, #90e0ef 40%, #caf0f8 70%, #ffffff 100%);
    gap: 16px;
    min-height: 90vh;
    justify-content: center;
    margin-bottom: -100px;
  }
  .hero-mobile-logo {
    width: 90%;
    max-width: 340px;
    height: auto;
  }
  .hero-mobile-stars {
  font-size: 1.3rem;
  color: #f5a623;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 50px 50px 50px 50px / 30px 30px 30px 30px;

  border-radius: 20px;
  padding: 10px 20px;
  box-shadow: 0 4px 15px rgba(255,255,255,0.4);
}

  }
  .hero-mobile-slogan {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
    max-width: 320px;
    margin: 0;
  }
  .hero-mobile-only .btn-commander {
    background: #ff7f50 !important;
    color: #ffffff !important;
    font-size: 0.85rem !important;
    padding: 8px 10px !important;
  }
}
/* ===== STARS ===== */
.stars-row { display: flex; gap: 2px; justify-content: center; }
.star { font-size: 1.6rem; }
.star.full { color: #FFD60A; }
.star.half {
  position: relative;
  display: inline-block;
  color: #ddd;
}
.star.half::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #FFD60A;
}
.stars-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 4px;
}

