/** Shopify CDN: Minification failed

Line 37:9 Expected identifier but found "1.1rem"
Line 595:23 Expected identifier but found whitespace
Line 595:25 Unexpected "{"
Line 595:33 Expected ":"
Line 607:18 Expected identifier but found whitespace
Line 607:20 Unexpected "{"
Line 607:28 Expected ":"
Line 616:18 Expected identifier but found whitespace
Line 616:20 Unexpected "{"
Line 616:28 Expected ":"

**/
/* Add a clear focus style for accessibility */
*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb), 0.3); /* Example, needs --color-primary-rgb */
}
/* Remove default outline if you're handling it with :focus-visible */
*:focus {
    outline: none;
}

html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

h1 { font-size: calc(var(--font-size-base) * var(--font-size-multiplier) * var(--font-size-multiplier)); }
h2 { font-size: calc(var(--font-size-base) * var(--font-size-multiplier)); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.2rem; }
h5, h6 { 1.1rem;}

h1,h2,h3,h4,h5,h6{
  font-family: var(--heading-font-stack);
  /* color: var(--color-text-base); */
  font-weight: var(--heading-font-weight) ;
  font-style: var(--heading-font-style);
}

body {
  font-family: var(--main-font-stack);
  background-color: var(--color-background);
  color: var(--color-text-base);
  font-size: var(--font-size-base);
}

a {
  color: var(--color-primary);
  text-decoration: none; 
  transition: var(--transition-base);
}


/* === Forms === */
label {
  display: block;
  margin-bottom: var(--spacing-1);
  font-weight: var(--font-weight-semibold);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: var(--spacing-2) var(--spacing-3);
  font-size: var(--font-size-base);
  /* border: 1px solid var(--color-border); */
  border-radius: var(--border-radius-base);
  background-color: var(--color-background-base);
  color: var(--color-text-base);
  line-height: var(--line-height-base);
  transition: border-color var(--transition-base);
}

/* Apply focus styles to all relevant form elements */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(var(--color-primary-rgb), 0.2); /* Requires --color-primary-rgb variable */
}

select {
  appearance: none; /* For custom select arrow, if desired */
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 140 140' width='24' height='24' xmlns='http://www.w3.org/2000/svg'><g><path d='m121.3,34.6c-1.6-1.6-4.2-1.6-5.8,0l-51,51.1-51.1-51.1c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l53.9,53.9c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l53.9-53.9c1.7-1.6 1.7-4.2 0.1-5.8z' fill='white'/></g></svg>"); /* Note: The original SVG had fill='white', you might want to change this or use a CSS variable for the fill if your select background isn't dark. */
  background-repeat: no-repeat;
  background-position: right var(--spacing-2) center;
  padding-right: var(--spacing-6); /* Make space for arrow */
}

.form-group {
  margin-bottom: var(--spacing-4);
}

.form-message--error {
  color: var(--color-error);
  font-size: var(--font-size-sm);
  margin-top: var(--spacing-1);
}

ul, ol {
  margin-bottom: var(--spacing-4);
  padding-left: var(--spacing-5); /* Indentation */
}
li {
  margin-bottom: var(--spacing-2);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--spacing-4);
}
th, td {
  padding: var(--spacing-2) var(--spacing-3);
  border: 1px solid var(--color-border);
  text-align: left;
}
th {
  font-weight: var(--font-weight-bold);
  background-color: var(--color-background-alt);
}

.cta-button {
            display: inline-block;
            text-decoration: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            /* box-shadow: 0 4px 5px #000;
            border: none; */
            cursor: pointer;
            text-align: center;
            font-size: 1rem;
            border: 2px solid black;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 20, 147, 0.6);
            text-decoration: none;
        }

        .cta-button:active {
            transform: translateY(0);
        }

.custom-select {
  width: fit-content;
  /* padding: 10px 15px; */
  border: none;
  border-radius: 30px;
  font-weight: 800;
  cursor: pointer;
  appearance: none; 
  background-image: linear-gradient(45deg, transparent 50%, var(--color-secondary) 50%), linear-gradient(135deg, var(--color-secondary) 50%, transparent 50%);
  background-position: calc(100% - 15px) calc(1em + 2px), calc(100% - 10px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  /* margin-top: 2%; */

}

.custom-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-secondary);
}

 @media (max-width: 760px) {
    .custom-select {
      /* width: 85%; */
      margin-bottom: 5%;
    }
 }



.product-add-to-cart:active, .custom-select:active {
  transform: translateY(2px);
}

.product-option-select {
  background: #fff;
  border-radius: 24px;
  /* padding: 7px 18px; */
  font-size: 1em;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  appearance: none; 
  -webkit-appearance: none; 
  -moz-appearance: none; 
  margin-bottom: 3%;
  width: auto;
  border: 2px solid #000;
}

/* add a custom arrow */
.product-option-select {
  background-image: linear-gradient(45deg, transparent 50%, #333 50%),
                    linear-gradient(135deg, #333 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 2px),
                       calc(100% - 15px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

        /* Cart Drawer */
        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .cart-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .cart-drawer {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100%;
            background: white;
            z-index: 1001;
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .cart-drawer.active {
            right: 0;
        }

        .cart-header {
            padding: 1.5rem;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cart-title {
            font-size: 1.5rem;
            font-weight: 500;
        }

        .close-cart {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
        }

        .free-shipping {
          padding: 2% 6%;
          background: #fff;
        }

        .free-shipping-text {
            text-align: center;
            margin-bottom: 0.8rem;
            font-weight: 500;
            color: #333;
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: #e0e0e0;
            border-radius: 4px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            /* background: #e91e63; */
            border-radius: 4px;
            transition: width 0.3s ease;
        }

        .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 1.5rem;
        }

        .cart-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
        }

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

        .cart-item-image {
            width: 80px;
            height: 80px;
            background-size: cover;
            background-position: center;
            border-radius: 8px;
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-name {
            font-weight: 500;
            margin-bottom: 0.3rem;
        }

        .cart-item-category {
            color: #e91e63;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.5rem;
        }

        .cart-item-qty {
            font-size: 0.9rem;
            color: #666;
        }

        .cart-item-price {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.5rem;
        }

        .cart-item-total {
            font-weight: 600;
        }

        .remove-item {
            background: none;
            border: none;
            color: #666;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .remove-item:hover {
            color: #e91e63;
        }

        .cart-footer {
            padding: 1.5rem;
            border-top: 1px solid #eee;
        }

        .subtotal {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .subtotal-amount {
            font-weight: 600;
            /* color: #e91e63; */
        }

        .checkout-btn {
            width: 100%;
            /* background: #e91e63; */
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            margin-bottom: 0.5rem;
        }

        .checkout-btn:hover {
            background: #c2185b;
        }

        .shipping-note {
            text-align: center;
            /* color: #e91e63; */
            font-size: 0.9rem;
        }


         /* Responsive */
        @media (max-width: 768px) {
            .cart-drawer {
                width: 100%;
                right: -100%;
            }

            .nav-left {
                gap: 1rem;
            }

            .page-title {
                font-size: 2rem;
            }

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

        .upsell-card {
            margin: 0.5rem;
            padding: 1rem;
            background: #f8f8f8;
            border-radius: 8px;
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .upsell-image {
            width: 60px;
            height: 60px;
            background-size: cover;
            background-position: center;
            border-radius: 6px;
            flex-shrink: 0;
        }

        .upsell-details {
            flex: 1;
        }

        .upsell-name {
            font-weight: 600;
            color: #e91e63;
            margin-bottom: 0.3rem;
        }

        .upsell-description {
            font-size: 0.85rem;
            color: #666;
            line-height: 1.3;
        }

        .upsell-price {
            font-weight: 600;
            color: #333;
            margin-top: 0.3rem;
        }

        .add-upsell {
            background: #e91e63;
            color: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background 0.3s ease;
        }

        .add-upsell:hover {
            background: #c2185b;
        }

        /* Add this media query to target mobile devices */
        @media (max-width: 768px) {
          .upsell-card {
            flex-direction: column; /* Stack elements vertically */
            padding: 0.5rem;
          }

          .upsell-product-name{margin: 0 auto !important;}
        
          .upsell-product-image {
            width: 100%; /* Make image full width */
            height: 150px; /* Adjust height */
            border-radius: 8px;
            box-shadow: none; /* Remove box shadow */
          }
        
          .upsell-details {
            text-align: center; /* Center text */
          }
        
          .upsell-controls {
            flex-direction: column; /* Stack controls vertically */
            gap: 10px;
          }
        
          /* .product-option-select {
            width: 100%; 
            padding: 10px;
          } */
        
          .cta-button {
            width: 100%; /* Make button full width */
          }
        }


  
        button:disabled {
          background-color: #ccc; /* gray background */
          color: #666; /* dark gray text */
          cursor: not-allowed;
          opacity: 0.5;
        }

       .drawer-cta{
        display: block;
        width: 100%;
        margin: 1% 0;
      }

.compare-at-price {
  position: relative;
}

.compare-at-price::after {
  content: '';
  position: absolute;
  left: 0;
  top: 45%;
  width: 100%;
  height: 2px; /* Adjust the thickness here */
  background-color: currentColor;
}

.sold-out {
  opacity: 0.6;
  cursor: not-allowed;
  background: #f7f7f7;
  border-color: #ccc;
  color: #666;
  text-decoration: line-through;
}

  .tabbed-sc-products-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 10px;
            /* max-width: 1200px; */
            /* margin: 0 auto; */
            margin: 2% auto;
            padding: 0 5%;
        }

        .tab-sc-promo-card {
            background: {{section.settings.promo_bg_color}};
            padding: 60px 40px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 400px;
        }

        .tab-sc-promo-card .category {
            font-size: 22px;
            font-weight: 600;
            color: {{section.settings.promo_text_color}};
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 30px;
        }

        .tab-sc-promo-card .title {
            font-size: 1.5rem;
            font-weight: 300;
            color: {{section.settings.promo_text_color}};
            line-height: 1.2;
            margin-bottom: 40px;
        }

        .tab-sc-shop-button {
            background: #c67b8a;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: center;
        }

        .tab-sc-shop-button:hover {
            background: #b56b7a;
            transform: translateY(-2px);
        }

        .tab-sc-product-card {
            text-align: center;
            background: white;
            padding: 30px 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            border-radius: 4%;
          
        }

        .tab-sc-product-card:hover {
            transform: translateY(-5px);
        }

        .tab-sc-product-image {
          width: 100%;
          height: auto;
          object-fit: cover;
          padding: 5%;
          border-radius: 8%;
        }

        .tab-sc-product-title {
            font-size: 0.8rem;
            font-weight: 800;
            color: #333;
            margin-bottom: 10px;
        }

        .tab-sc-product-category {
            font-size: 11px;
            font-weight: 600;
            color: #f4c2c2;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .tab-sc-product-price {
            font-size: 0.8rem;
            font-weight: 600;
            color: #333;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .tabbed-sc-products-grid {
                grid-template-columns: 1fr 1fr;
                gap: 5px;
            }
            
            .tab-sc-promo-card {
                grid-column: 1 / -1;
                padding: 40px 30px;
                min-height: 300px;
            }
        }

        @media (max-width: 768px) {
            .showcase-tabs {
                gap: 0;
            }
            
            .showcase-tab {
                font-size: 12px;
            }
            
            .tabbed-sc-products-grid {
                grid-template-columns: 1fr;
                gap: 10px;
                margin: 5% 0;
            }
            
            .tab-sc-promo-card .title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
 
            .showcase-tabs {
                gap: 0;
                justify-content: space-between;
            }
            
            .showcase-tab {
                font-size: 10px;
                flex: 1;
                text-align: center;
            }
            
            .tab-sc-promo-card {
                padding: 30px 20px;
            }
        }


img, picture, video, canvas, svg, input, button, .tab-sc-product-card, .product-card, iframe {border: 2px solid #000;}
.logo img, .tab-sc-product-image, .product-image, .product-thumbnail img, .mega-menu-promo img{border: none;}
.ps-product-card, .ps-product-image img{border-radius: 8%;}
/* section {margin-left: 2% !important;margin-right: 2% !important;border-bottom: 1px solid black;padding: 5% 0;} */
.product-image {
  padding: 15% 10%;
  border-radius: 18%;
}
iframe {border-radius: 8px;}
/* section:not(:nth-child(2)) {
  margin-left: 2% !important;
  margin-right: 2% !important;
  border-bottom: 1px solid black;
} */

.logo img{width: 100px;}

.shopify-section{border-bottom: 2px solid black;overflow-x: hidden;}  
.shopify-section:nth-child(11) {
  border: none !important;
}
#shopify-section-sections--19627356291325__insta_ish_6BRWFh {
  border: none !important;
}

.shopify-section:nth-child(1) {
  overflow-x: visible;
}


.showcase-tabbed-showcase .main-title {
  font-size: clamp(1.5rem, 2vw, 4rem);
  padding: 5%;
}
.showcase-tab {font-size: 17px;}
.ps-product-tagline{font-size: 1.3rem ;}
.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.faq-page-question {font-weight: 800;}
.big-bold-section .subheading-text{font-size: 1.2rem;}
.big-bold-section .main-heading {
  font-size: 2.8rem;
  margin-top: 6px;
}

div.tab-sc-product-card p{font-size: 0.8rem;}



@media (max-width: 768px){
   .testimonial-slide {
    height: 60% !important;
   }
   .testimonial-heading {margin-bottom: 0 !important;}
   .testimonial-content {padding: 0 20px;}
  .testimonial-navigation {bottom: 13% !important;}
  .how-to-step-section{flex-direction: column;}
  .how-to-step-section:nth-child(2n+1) {flex-direction: column-reverse !important;}
  .newsletter-input {text-align: center;}
  .footer {text-align: center;align-items: center;justify-content: center;}
  .trouble-section{padding: 10% 15% 0;}
  .tab-content-wrapper{padding: 5%;}
  .footer-social {margin: 10px;align-items: center;justify-content: center; }

  .big-bold-section > .content-area{
    font-size: 2rem;
      margin: 5%;
    }
   .big-bold-section .subheading-text {
      padding: 0 5%;
   }
   .big-bold-section .main-heading {
    font-size: 2rem;
    margin: 5%;
  }
  
.instagram-section {padding: 0 2%;} 

}
