/** Shopify CDN: Minification failed

Line 1497:4 Unexpected "{"
Line 1497:5 Expected identifier but found "%"
Line 1497:33 Unexpected "{"
Line 1497:34 Expected identifier but found "%"
Line 1498:4 Unexpected "{"
Line 1498:5 Expected identifier but found "%"
Line 1498:62 Unexpected "{"
Line 1498:63 Expected identifier but found "%"
Line 1503:2 Unexpected "{"
Line 1503:3 Expected identifier but found "%"
... and 2 more hidden warnings

**/


/* CSS from section stylesheet tags */
.about {
            background: linear-gradient(135deg, var(--lavender) 0%, var(--pink-hot) 50%, var(--mint-light) 100%);
            backdrop-filter: blur(10px);
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 2rem;
            color: var(--text-black);
            text-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .about-content p {
            font-size: 1.1rem;
            color: var(--text-black);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            letter-spacing: 0.2rem;
            font-weight: 400;
            text-transform: lowercase;
        }
/* Application Instructions Styles */
        .application-section, .sizing-section {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, var(--pink-hot) 0%, var(--orange-warm) 50%, var(--lime-bright) 100%);
            position: relative;
        }

        .guide-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .instructions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .instruction-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .instruction-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .step-number {
            position: absolute;
            top: -15px;
            left: 20px;
            background: linear-gradient(45deg, var(--teal-dark), var(--cyan-bright));
            color: var(--text-black);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(43, 126, 103, 0.3);
        }

        .star-decoration {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 1.5rem;
        }

        @keyframes sparkle {
            0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
            50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
        }

        .instruction-card h3 {
            color: var(--text-black);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            margin-top: 0.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .instruction-card p {
            color: var(--text-black);
            line-height: 1.6;
            font-size: 1rem;
            font-weight: 400;
            letter-spacing: .2rem;
            text-transform: lowercase;
        }

        .reuse-section {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            border: 3px solid var(--cyan-bright);
            position: relative;
            overflow: hidden;
        }

        .reuse-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(32, 238, 227, 0.2), transparent);
            animation: shimmer 3s infinite;
        }

        .reuse-title {
            display: flex;
            justify-content: center;
            text-align: center;
            gap: 15px;
        }

        .star-decoration-reuse {
            font-size: 1.5rem;
            width: fit-content;
            height: fit-content;
            margin-top: 4px;
            animation: sparkle 2s ease-in-out infinite;
        }

        .reuse-section h3 {
            color: var(--text-black);
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .reuse-section p {
            color: var(--text-black);
            font-size: 1.1rem;
            line-height: 1.6;
            font-weight: 400;
            letter-spacing: .2rem;
            text-transform: lowercase;
        }
.cart-section {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.cart-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  color: var(--text-black, #222);
  text-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.cart-items {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto auto;
  gap: 1.5rem;
  padding: 1.5rem;
  border-bottom: 2px solid rgba(188, 238, 95, 0.2);
  align-items: center;
  transition: all 0.3s ease;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item:hover {
  background: rgba(79, 252, 255, 0.05);
}

.item-image {
  width: 100px;
  height: 100px;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(45deg, var(--orange-warm, #ffb347), var(--pink-hot, #ff5fcf), var(--lime-bright, #bcee5f));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.item-image:hover {
  transform: scale(1.05);
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.no-image {
  font-size: 2rem;
  color: var(--text-black, #222);
  text-shadow: 0 2px 4px rgba(255,255,255,0.5);
}

.product-link {
  display: block;
  text-decoration: none;
}

.item-details {
  flex: 1;
}

.item-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-title-link {
  color: var(--text-black, #222);
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-title-link:hover {
  color: var(--cyan-bright, #4ffcff);
}

.item-variant {
  margin: 0 0 0.5rem 0;
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}

.item-price {
  margin: 0;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-black, #222);
}

.item-quantity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.quantity-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-black, #222);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border-radius: 25px;
  padding: 0.2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.quantity-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: linear-gradient(45deg, var(--lime-bright, #bcee5f), var(--cyan-bright, #4ffcff));
  color: var(--text-black, #222);
  border-radius: 50%;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(188, 238, 95, 0.4);
}

.quantity-input {
  width: 50px;
  text-align: center;
  padding: 0.3rem;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-black, #222);
}

.quantity-input:focus {
  outline: none;
}

.item-total {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.line-total {
  margin: 0;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-black, #222);
}

.remove-link {
  color: var(--pink-hot, #ff5fcf);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  background: rgba(255, 95, 207, 0.1);
  transition: all 0.3s ease;
}

.remove-link:hover {
  background: var(--pink-hot, #ff5fcf);
  color: white;
  transform: translateY(-2px);
}

.cart-footer {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cart-total {
  text-align: center;
  margin-bottom: 2rem;
}

.cart-total h3 {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-black, #222);
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cart-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.update-cart-btn,
.checkout-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  min-width: 150px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.update-cart-btn {
  background: rgba(108, 117, 125, 0.8);
  color: white;
  border: 2px solid #6c757d;
}

.update-cart-btn:hover {
  background: #6c757d;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.checkout-btn {
  background: linear-gradient(45deg, var(--lime-bright, #bcee5f), var(--cyan-bright, #4ffcff));
  color: var(--text-black, #222);
  border: 2px solid transparent;
}

.checkout-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(188, 238, 95, 0.4);
}

.empty-cart {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.empty-cart p {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-black, #222);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.continue-shopping {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, var(--lime-bright, #bcee5f), var(--cyan-bright, #4ffcff));
  color: var(--text-black, #222);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.continue-shopping:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(188, 238, 95, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
  }
  
  .item-image {
    width: 80px;
    height: 80px;
  }
  
  .item-quantity,
  .item-total {
    grid-column: 1 / -1;
    text-align: left;
    margin-top: 1rem;
    justify-self: stretch;
  }
  
  .item-quantity {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .item-total {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .cart-actions {
    flex-direction: column;
  }
  
  .cart-title {
    font-size: 2rem;
  }
}
/* --- Collection Section Styles --- */
.collection-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0px auto;
    width: 100%;
}

.collection-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: var(--text-black, #222);
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.collection-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-black, #222);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0px 0px 3rem 0px;
}

.product-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--cyan-bright, #4ffcff);
}

.product-image {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--orange-warm, #ffb347), var(--pink-hot, #ff5fcf), var(--lime-bright, #bcee5f));
    border-radius: 15px;
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-black, #222);
    text-shadow: 0 2px 4px rgba(255,255,255,0.5);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    flex: 1;
}

.product-link:hover {
    transform: translateY(-2px);
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-black, #222);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    text-align: center;
}

.product-link:hover .product-title {
    color: var(--cyan-bright, #4ffcff);
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-black, #222);
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.current-price,
.sale-price {
    color: var(--text-black, #222);
}

.original-price {
    color: #666;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.sale-badge {
    background: linear-gradient(45deg, var(--pink-hot, #ff5fcf), var(--orange-warm, #ffb347));
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.add-to-cart {
    width: 100%;
    background: linear-gradient(45deg, var(--lime-bright, #bcee5f), var(--cyan-bright, #4ffcff));
    color: var(--text-black, #222);
    padding: 0.8rem;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.add-to-cart:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(188, 238, 95, 0.3);
}

.add-to-cart:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    color: #666;
}

/* Pagination Styles */
.pagination-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.pagination {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pagination a,
.pagination span {
    padding: 0.5rem 1rem;
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-black, #222);
    font-weight: 700;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: var(--cyan-bright, #4ffcff);
    transform: translateY(-2px);
}

.pagination .current {
    background: linear-gradient(45deg, var(--lime-bright, #bcee5f), var(--cyan-bright, #4ffcff));
    color: var(--text-black, #222);
}

/* Empty Collection */
.empty-collection {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.empty-collection p {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-black, #222);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.browse-all {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--lime-bright, #bcee5f), var(--cyan-bright, #4ffcff));
    color: var(--text-black, #222);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.browse-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(188, 238, 95, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .collection-section {
        padding: 2rem 1rem;
    }
    
    .collection-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-image {
        width: 150px;
        height: 150px;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .collection-title {
        font-size: 1.5rem;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    .product-image {
        width: 120px;
        height: 120px;
    }
}
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* --- Featured Products Section Styles --- */
.featured-products {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0px auto;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    color: var(--text-black, #222);
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.products-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin: 0px 0px;
    flex-wrap: wrap;
}

.product-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    max-width: 350px;
    width: 350px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--cyan-bright, #4ffcff);
}

.product-image {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--orange-warm, #ffb347), var(--pink-hot, #ff5fcf), var(--lime-bright, #bcee5f));
    border-radius: 15px;
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-black, #222);
    text-shadow: 0 2px 4px rgba(255,255,255,0.5);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.product-link:hover {
    transform: translateY(-2px);
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-black, #222);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.product-link:hover .product-title {
    color: var(--cyan-bright, #4ffcff);
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-black, #222);
    margin-bottom: 1rem;
}

.add-to-cart {
    width: 100%;
    background: linear-gradient(45deg, var(--lime-bright, #bcee5f), var(--cyan-bright, #4ffcff));
    color: var(--text-black, #222);
    padding: 0.8rem;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(188, 238, 95, 0.3);
}

.btn-loading {
    color: #666;
}
.footer {
    background: var(--teal-dark);
      color: white;
      padding: 3rem 2rem 1rem;
      text-align: center;
  }

  .footer-content {
      max-width: 700px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      margin-bottom: 2rem;
  }

  .footer-section h3 {
      color: var(--cyan-bright);
      margin-bottom: 1rem;
  }

  .footer-section a {
      color: white;
      text-decoration: none;
      display: block;
      margin-bottom: 0.5rem;
      transition: color 0.3s ease;
  }

  .footer__payment {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
  }

  .footer-section a:hover {
      color: var(--lime-bright);
  }

  .social-icons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1rem;
  }

  .social-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(45deg, var(--pink-hot), var(--cyan-bright));
      border-radius: 50%;
      display: flex !important;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .social-icon span {
    display: flex;
    width: 30px;
    height: 30px;
    justify-content: center;
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding-top: 1rem;
      opacity: 0.8;
  }
header {
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'HighCruiserRegular', sans-serif;
  letter-spacing: -2px;
  text-transform: uppercase;
}
.header__title {
  width: 210px;
  line-height: 75%;
  text-align: center;
}
header a {
  position: relative;
  text-decoration: none;
  color: var(--color-foreground);
}
header a sup {
  position: absolute;
  left: 100%;
  overflow: hidden;
  max-width: var(--page-margin);
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff5fcf;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  padding-right: 3px;
  display: flex !important;
}
header svg {
  width: 2rem;
}
header .header__menu,
header .header__icons {
  display: flex;
  gap: 1rem;
}
.about {
            background: linear-gradient(135deg, var(--lavender) 0%, var(--pink-hot) 50%, var(--mint-light) 100%);
            backdrop-filter: blur(10px);
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 2rem;
            color: var(--text-black);
            text-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .about-content p {
            font-size: 1.1rem;
            color: var(--text-black);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            letter-spacing: 0.2rem;
            font-weight: 400;
            text-transform: lowercase;
        }
.product-page {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Gallery Styles */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-image {
  width: 100%;
  height: 500px;
  background: linear-gradient(45deg, var(--orange-warm, #ffb347), var(--pink-hot, #ff5fcf), var(--lime-bright, #bcee5f));
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.no-image {
  font-size: 4rem;
  color: var(--text-black, #222);
  text-shadow: 0 2px 4px rgba(255,255,255,0.5);
}

.thumbnail-images {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 0;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: var(--cyan-bright, #4ffcff);
  transform: translateY(-2px);
}

/* Product Details */
.product-details {
  padding: 1rem 0;
}

.product-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-black, #222);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-price {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.current-price,
.sale-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-black, #222);
}

.original-price {
  font-size: 1.3rem;
  color: #666;
  text-decoration: line-through;
}

.sale-badge {
  background: linear-gradient(45deg, var(--pink-hot, #ff5fcf), var(--orange-warm, #ffb347));
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-description {
  margin-bottom: 2rem;
  line-height: 1.6;
  color: var(--text-black, #222);
  font-size: 1.1rem;
}

/* Form Styles */
.product-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.variant-selector label,
.quantity-selector label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-black, #222);
}

.variant-select {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #ddd;
  border-radius: 15px;
  background: white;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.variant-select:focus {
  outline: none;
  border-color: var(--cyan-bright, #4ffcff);
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  border: 2px solid var(--cyan-bright, #4ffcff);
  background: white;
  color: var(--text-black, #222);
  border-radius: 50%;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.quantity-btn:hover {
  background: var(--cyan-bright, #4ffcff);
  transform: scale(1.1);
}

.quantity-input {
  width: 60px;
  text-align: center;
  padding: 0.5rem;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
}

.quantity-input:focus {
  outline: none;
  border-color: var(--cyan-bright, #4ffcff);
}

.add-to-cart-btn {
  width: 100%;
  background: linear-gradient(45deg, var(--lime-bright, #bcee5f), var(--cyan-bright, #4ffcff));
  color: var(--text-black, #222);
  padding: 1rem;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.add-to-cart-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(188, 238, 95, 0.4);
}

.add-to-cart-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .product-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .product-title {
    font-size: 2rem;
  }
  
  .main-image {
    height: 400px;
  }
  
  .quantity-controls {
    justify-content: center;
  }
}
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
/* Sizing Guide Styles */
        .sizing-content {
            display: grid;
            gap: 3rem;
        }

        .measuring-tips h3, .size-chart h3 {
            color: var(--text-black);
            font-size: 2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 2rem;
            text-align: center;
            text-shadow: 0 2px 4px rgba(255,255,255,0.5);
        }

        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .tip-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .tip-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .tip-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .tip-card h4 {
            color: var(--text-black);
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .tip-card p {
            color: var(--text-black);
            font-size: 0.9rem;
            font-weight: 700;
            line-height: 1.5;
            text-transform: lowercase;
        }

        .size-chart {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 2rem;
        }

        .chart-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
        }

        .size-item {
            background: linear-gradient(45deg, var(--cyan-bright), var(--lime-bright));
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            color: var(--text-black);
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .size-item:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(32, 238, 227, 0.3);
        }

        .size-label {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .size-value {
            font-size: 1rem;
        }

        .sizing-note {
            background: linear-gradient(45deg, var(--orange-warm), var(--pink-hot));
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            color: var(--text-black);
            font-size: 1.1rem;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(216, 138, 38, 0.3);
        }
.welcome {
    {% comment %} display: grid; {% endcomment %}
    {% comment %} grid-template-columns: var(--content-grid); {% endcomment %}
    background-color: var(--mint-light);
    padding: 72px 0;
  }

  {% comment %} .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  } {% endcomment %}

  @keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-family: 'HighCruiserRegular', sans-serif;
    text-transform: uppercase;
    font-size: 3rem;
    letter-spacing: -4px;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-black);
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-transform: none;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-black);
    letter-spacing: 0.3rem;
    margin-bottom: 2rem;
    font-weight: 400;
    text-transform: lowercase;
}

/* CSS from block stylesheet tags */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }

/* CSS from snippet stylesheet tags */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }