/** Shopify CDN: Minification failed

Line 380:1 Expected "}" to go with "{"

**/
/* === MAIN CSS - CORE VARIABLES & TYPOGRAPHY === */

html {
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

:root{
  --yp-yellow:#ffcd05;
  --yp-magenta:#d43f96;
  --yp-blue:#6bcff6;
  --yp-purple:#56469c;
  --yp-gray:#f4f4f6;
  --yp-charcoal:#333333;
}

/* =====  CORE TYPOGRAPHY & UTILITIES  ===== */
body{
  font-family:"Nunito Sans",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  color:var(--yp-charcoal);
  line-height:1.55;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

h1,h2,h3,h4,h5{
  font-family:"Baloo 2",sans-serif;
  color:var(--yp-purple);
  font-weight:800;
  line-height:1.15;
}

h1{
  color:var(--default-h1-color);
  font-size:2.6rem;
}
h2{
  color:var(--default-h2-color);
  font-size:2rem;
}
h3{
  color:var(--default-h3-color);
  font-size:1.5rem;
}
h4{
  color:var(--default-h4-color);
  font-size:1.25rem;
}
h5{
  color:var(--default-h5-color);
  font-size:1.05rem;
}

small,.text-small{font-size:.86rem;}

.btn-primary-yp{
  background:var(--yp-yellow);
  border:none;
  color: #000;
  font-weight: bolder;
}

.btn-primary-yp:hover{
  background:#FFEB05;
  color:var(--yp-charcoal);
}

.section-alt{
  background:var(--yp-gray);
}

.footer-bg{
  background:#111;
}

.sticky-top.bg-white{
  box-shadow:0 2px 6px rgba(0,0,0,.05);
}

.card-example{
  max-width:420px;
  width:100%;
  margin-inline:auto;
}

.icon-star{
  color:var(--yp-yellow);
}

.icon-check{
  color:#28a745;
}

.hero-sub{
  max-width: 100%; 
  width: 100%;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
    
@media (min-width: 992px) {
  .hero-sub{
    max-width: 560px;
  }
}

/* Emoji icons (benefits, science, etc.) */
.big-emoji{
  font-size:3rem;
  line-height:1;
}

/* Skip navigation for accessibility */
.skip-nav {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-nav:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background-color: white;
  color: var(--yp-purple);
  font-weight: bold;
  z-index: 9999;
  text-decoration: none;
}

.product-gallery .product-thumbnails .thumbnail-item {
  --gap: 0.5rem;
  --columns: 4;
  width: calc((100% / var(--columns)) - var(--gap) + (var(--gap) / var(--columns)));
}

@media (min-width: 801px) {
  .product-gallery {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    flex-direction: row;
    direction: rtl;
  }

  .product-gallery .product-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    width: 83px;
  }

  .product-gallery .product-thumbnails .thumbnail-item {
    width: 100%;
  }

  .product-gallery .thumbnail-item img {
    border-radius: 10px;
    cursor: pointer;
    height: auto;
    object-fit: cover;
    padding: 0;
    width: 100%;
  }

  .product-gallery .product-featured-image {
    flex-grow: 1;
    width: 100%;
  }

  .product-gallery .product-featured-image img {
    width: 100%;
    height: auto;
}

/* Trust badges styling */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 767.98px) {
  .trust-badges {
    justify-content: center;
  }
}

.trust-badge {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  background-color: rgba(255,255,255,0.7);
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.trust-badge:hover {
  background-color: white;
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.trust-badge:focus {
  outline: 2px solid var(--yp-magenta);
  outline-offset: 2px;
}

.trust-badge i {
  margin-right: 0.4rem;
  color: var(--yp-purple);
}

/* ============================================================
   YAKETY PACK — COLLECTION PAGE + PRODUCT CARD SYSTEM
   Integrated with existing variables, typography, and utilities
   ============================================================ */

/* --- COLLECTION PAGE WRAPPER --- */
.collection-page {
  padding: 40px 0;
}

.collection-header {
  text-align: center;
  margin-bottom: 30px;
}

.collection-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--yp-charcoal);
}

/* --- SORT + FILTER TOOLBAR --- */
.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.collection-sort-form select {
  padding: 8px 12px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
}

/* --- PRODUCT GRID --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
}

/* --- PRODUCT CARD --- */
.product-card {
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.product-card__image img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1; /* Square images */
}

/* --- CARD CONTENT --- */
.product-card__info {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card__title {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--yp-purple);
  margin-bottom: 10px;
}

.product-card__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yp-charcoal);
}

.product-card__price--compare {
  text-decoration: line-through;
  color: #999;
  margin-left: 6px;
}

/* --- SHOP NOW BUTTON --- */
.product-card__button {
  margin-top: 15px;
  padding: 12px 16px;
  background-color: var(--yp-yellow);
  color: #000;
  text-align: center;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 100%; /* Full width */
  font-family: "Baloo 2", sans-serif;
}

.product-card__button:hover {
  background-color: #FFEB05;
}

/* --- PAGINATION --- */
.pagination {
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
  text-align: center;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 4px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Nunito Sans", sans-serif;
  text-decoration: none;
}

.pagination a:hover {
  background-color: #e1e1e1;
}

.pagination .current {
  background: var(--yp-purple);
  color: #fff;
  border-color: var(--yp-purple);
}