/** Shopify CDN: Minification failed

Line 622:0 Unexpected "{"
Line 622:1 Expected identifier but found "%"
Line 624:2 Unexpected "{"
Line 624:3 Expected identifier but found "%"

**/
.product-showcase-banner {
background-size: cover;
background-position: center;
padding: 40px 20px;
text-align: center;
color: white;
position: relative;
/* min-height: 300px; */
}

.product-showcase-banner::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.4);
z-index: 1;
}

.product-showcase-banner-content {
position: relative;
z-index: 2;
max-width: 1440px;
margin: 0 auto;
}

.product-showcase-banner-content h1 {
font: var(--heading3);
white-space: nowrap;
margin: 0px;
display: inline-block;
}

.product-showcase-banner-content p{
color: #E1E1E1;
}


.main-products-container {
max-width: 1440px;
margin: 60px auto;
padding: 0 64px;
}

@media (max-width: 768px) {
  .main-products-container {
  padding: 0 20px;
}
}

.main-products-tabs {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-bottom: 40px;
}
@media (max-width: 768px) {
  .main-products-tabs {
  display: grid;
  grid-template-columns: 1fr;
}

}

/* ============================================ */
/* MOBILE PRODUCT TABS - ALL VISIBLE MODE */
/* REVERSAL: Delete everything between START and END markers to revert */
/* ============================================ */

@media (max-width: 750px) {
  .main-products-tabs {
    display: flex !important;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
  }

  .main-product-tab {
    display: flex !important;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .main-product-tab.active {
    border-color: #7d2240;
    background: #fff8f9;
    box-shadow: 0 0 0 1px #7d2240;
  }

  .main-product-tab:hover {
    border-color: #7d2240;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .main-product-tab img {
    width: 90px !important;
    height: 70px !important;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 12px;
    flex-shrink: 0;
  }

  .main-product-tab h3 {
    font: var(--mob-heading5) !important;
    margin: 0 !important;
  }

  .main-product-tab .custom-product-content {
    margin-top: 5px;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
  }

  .rating-container {
    display: none;
  }

  /* ============================================ */
  /* MOBILE THUMBNAIL SLIDER FEATURE - START */
  /* REVERSAL: Delete this section to revert to grid layout */
  /* ============================================ */

  /* Mobile thumbnail slider container */
  .thumbnail-gallery {
    position: relative;
    margin-top: 15px;
  }

  .mobile-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
  }

  /* MOBILE ONLY - Single image carousel container - responsive height */
  .thumbnail-grid {
    display: block !important;
    grid-template-columns: none !important;
    position: relative;
    width: 100%;
    min-height: 250px;
    max-height: 60vh;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
  }

  /* MOBILE ONLY - All thumbnail items stacked absolutely */
  .thumbnail-item {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
    opacity: 0;
    z-index: 1;
  }

  /* MOBILE ONLY - Only the active thumbnail is visible */
  .thumbnail-item.active {
    opacity: 1;
    z-index: 2;
    border-color: #7d2240;
    box-shadow: 0 0 0 2px rgba(125, 34, 64, 0.2);
  }

  /* MOBILE ONLY - All non-active thumbnails are hidden */
  .thumbnail-item:not(.active) {
    opacity: 0;
    z-index: 1;
  }

  /* MOBILE ONLY - Responsive image sizing */

  .thumbnail-image {
    width: 100%;
    min-height: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    display: block;
    background: white;
  }
  
  .custom-product-content p{
        font-size: 13px !important;
  }

  /* Slider Navigation Arrows */
  .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #7d2240;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 10;
  }

  .slider-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }

  .slider-nav:active {
    transform: translateY(-50%) scale(0.95);
  }

  .slider-nav-left {
    left: -20px;
  }

  .slider-nav-right {
    right: -20px;
  }

  /* Arrow icons using CSS */
  .slider-nav-left::before {
    content: '‹';
    font-size: 20px;
    line-height: 1;
  }

  .slider-nav-right::before {
    content: '›';
    font-size: 20px;
    line-height: 1;
  }

  /* Hide arrows when no overflow needed */
  .thumbnail-gallery[data-can-scroll="false"] .slider-nav {
    display: none;
  }

  .addon-product-info {
    display: flex;
    flex-wrap: wrap !important;
    align-content: flex-start !important;
    align-items: flex-start !important;
  }

  .addon-product-controls {
      display: flex;
      flex-wrap: wrap !important;
      gap: 8px !important;
      margin: 0px !important;
      justify-content: flex-start !important;
  }

  .variant-price-display {
      margin: 0px !important;
      padding: 0px !important;
  }

  .addon-product-controls .addon-variant-selector {
      margin: 0px !important;
  }

  .addon-qty-wrapper {
      margin-top: 0px !important;
  }

  .action-button{
    padding: 11px 20px !important;
  }

/* ============================================ */
/* MOBILE THUMBNAIL SLIDER FEATURE - END */
/* ============================================ */
}
/* ============================================ */
/* MOBILE DROPDOWN FEATURE - END */
/* ============================================ */

/* Hide slider navigation arrows on desktop only */
@media (min-width: 751px) {
.slider-nav {
  display: none;
}
}
.main-product-tab {
border: 2px solid #e0e0e0;
border-radius: 12px;
padding: 10px;
text-align: left;
cursor: pointer;
transition: all 0.3s ease;
background: white;
}

.main-product-tab h3 {
  font: var(--heading5);
  color: var(--Magenta-500);
  margin: 0px;
  line-height: 112%;
  font-size: 20px;
}

.main-product-tab.active {
border-color: #7d2240;
/* background: #fff8f9; */
}

/* Custom product content styling */
.custom-product-content {
margin-top: 12px;
font-size: 14px;
color: #555;
line-height: 1.5;
}

.custom-product-content p {
margin-bottom: 8px;
}

.custom-product-content p:last-child {
margin-bottom: 0;
}

.custom-product-content h4,
.custom-product-content h5,
.custom-product-content h6 {
margin: 8px 0 4px 0;
color: #333;
font-size: 13px;
}

.custom-product-content ul,
.custom-product-content ol {
margin: 6px 0 8px 18px;
font-size: 13px;
}

.custom-product-content strong {
color: #7d2240;
}

.custom-product-content a {
color: #7d2240;
text-decoration: none;
}

.custom-product-content a:hover {
text-decoration: underline;
}

.content-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin-top: 40px;
}
@media (max-width: 768px) {

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
}


}



.action-button {
background: #7d2240;
color: white;
border: none;
padding: 15px 30px;
font-size: 1.1rem;
border-radius: 8px;
cursor: pointer;
margin: 0 10px;
}

.debug-info {
background: #f0f0f0;
padding: 15px;
margin: 10px 0;
border-radius: 8px;
font-family: monospace;
font-size: 12px;
border-left: 4px solid #007cba;
}

.addon-product-controls {
margin-top: 10px;
font-size: 12px;
}

.addon-product-controls input[type="number"] {
width: 60px;
padding: 5px;
border: 1px solid #ccc;
border-radius: 4px;
}

.addon-product-controls .addon-variant-selector {
width: auto;
min-width: 120px;
max-width: 200px;
padding: 8px 12px;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 12px;
margin: 8px 0;
background: white;
cursor: pointer;
transition: border-color 0.3s ease;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right 8px center;
background-size: 20px;
padding-right: 35px;
}

.addon-product-controls .addon-variant-selector:hover {
border-color: #7d2240;
}

.addon-product-controls .addon-variant-selector:focus {
outline: none;
border-color: #7d2240;
box-shadow: 0 0 0 2px rgba(125, 34, 64, 0.1);
}

.addon-price {
font-weight: bold;
color: #7d2240;
}

.addon-compare-price {
text-decoration: line-through;
color: #999;
font-weight: normal;
margin-right: 8px;
}

.variant-price-display {
margin: 10px 0;
padding: 8px 0;
display: flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
}

.addon-qty-wrapper {
margin-top: 10px;
display: flex;
align-items: center;
}

.addon-qty-wrapper label {
margin-right: 8px;
font-weight: 600;
color: #333;
font-size: 12px;
}

.addon-product-info h5 {
margin-bottom: 10px;
font-size: 14px;
color: #333;
}

.control-row {
margin-bottom: 5px;
}

.variant-selector-container {
margin-bottom: 15px;
padding: 10px;
background: #f9f9f9;
border-radius: 6px;
}

/* Single product mode: variant selector outside content-grid */
.onlyForSingleProductVariants .main-products-tabs {
    display: none;
}
.variant-selector-container.single-product-variants {
margin: 0;
padding: 0px;
background-color:transparent;
border-radius: 0px;
max-width: 1440px;
}

.variant-selector-container label {
  font-weight: bold;
  margin-right: 10px;
  display: block;
  margin-bottom: 10px;
}

.onlyForSingleProductVariants .variant-selector-container label {
  display:none;
}

.variant-selector {
padding: 5px;
border: 1px solid #ccc;
border-radius: 4px;
min-width: 200px;
}

.variant-button-group {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.onlyForSingleProductVariants .variant-button-group {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
}

.variant-button {
padding: 8px 16px;
border: 2px solid #e0e0e0;
background: white;
border-radius: 6px;
cursor: pointer;
transition: all 0.3s ease;
font-size: 14px;
font-weight: 500;
min-width: 80px;
text-align: center;
}

.onlyForSingleProductVariants .variant-button {

  border: 2px solid #fff;
}


.variant-button:hover {
border-color: #7d2240;
background: #fff8f9;
}

.variant-button.active {
background: #7d2240;
color: white;
border-color: #7d2240;
}

/* Variant buttons with images (single product mode) */

.variant-button-with-image {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
padding: 12px;
min-width: 100px;
}
.onlyForSingleProductVariants .variant-button-with-image {
  padding: 0px 0px 10px;
}

.variant-button-image {
width: 200px;
height: 200px;
object-fit: cover;
border-radius: 4px;
}

.variant-button.active .variant-button-image {
border-color: #ffffff;
}

.variant-button-text {
font-size: 14px;
text-align: center;
line-height: 1.2;
}

{% comment %} .variant-button-with-image:hover .variant-button-image {
border-color: #7d2240;
} {% endcomment %}

@media (max-width: 768px) {
.variant-button-group {
  gap: 8px;
}

.variant-button {
  padding: 6px 12px;
  font-size: 13px;
  min-width: 70px;
}

.variant-button-with-image {
  min-width: 85px;
  padding: 10px;
  gap: 6px;
}

.variant-button-image {
  width: 50px;
  height: 50px;
}

.variant-button-text {
  font-size: 12px;
}
}

.main-image-container {
margin-bottom: 20px;
border-radius: 12px;
overflow: hidden;
background: #f8f8f8;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.main-featured-image {
width: 100%;
height: 400px;
object-fit: contain;
display: block;
transition: opacity 0.3s ease;
}

.main-featured-video {
width: 100%;
height: 400px;
display: block;
transition: opacity 0.3s ease;
}

.main-featured-video iframe {
width: 100%;
height: 100%;
border: none;
border-radius: 8px;
}

.main-media-container {
position: relative;
}

.main-featured-video video {
width: 100%;
height: 100%;
border-radius: 8px;
}

/* Ensure videos are responsive */
@media (max-width: 768px) {
.main-featured-image,
.main-featured-video,
.main-featured-video iframe,
.main-featured-video video {
  height: 300px;
}

/* Mobile thumbnail adjustments */
.thumbnail-grid {
  gap: 8px;
  padding: 8px;
}

.thumbnail-grid.many-images {
  gap: 6px;
}

.thumbnail-image {
  min-height: 80px;
  max-height: 120px;
}

.thumbnail-grid.many-images .thumbnail-image {
  min-height: 70px;
  max-height: 100px;
}

/* Mobile addon product adjustments */
.addon-product-info {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.addon-product-controls {
  width: 100%;
  justify-content: space-between;
}
}

.thumbnail-gallery {
margin-top: 15px;
}

.thumbnail-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;
padding: 10px;
}

.thumbnail-grid.many-images {
grid-template-columns: repeat(3, 1fr);
gap: 10px;
}

.thumbnail-item {
border-radius: 6px;
overflow: hidden;
background: #f5f5f5;
position: relative;
cursor: pointer;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.thumbnail-item:hover {
border-color: #7d2240;
transform: scale(1.05);
}

.thumbnail-item.active {
border-color: #7d2240;
box-shadow: 0 0 0 2px rgba(125, 34, 64, 0.2);
}

.thumbnail-image {
width: 100%;
height: auto;
min-height: 120px;
max-height: 180px;
object-fit: cover;
display: block;
}

.thumbnail-grid.many-images .thumbnail-image {
min-height: 100px;
max-height: 150px;
}

.media-gallery-wrapper {
position: relative;
}

.media-count {
text-align: center;
color: #666;
font-size: 0.9em;
margin-top: 10px;
}

.no-media {
text-align: center;
color: #999;
padding: 40px 20px;
font-style: italic;
}

.addon-products-section h4 {
margin: 0 0 15px 0;
color: #333;
font-size: 1.1em;
}

.addon-products-grid {
display: grid;
grid-template-columns: 1fr;
gap: 10px;
}

.addon-product-card {
border: 1px solid #e0e0e0;
border-radius: 8px;
overflow: hidden;
background: white;
transition: box-shadow 0.3s ease;
display: flex;
align-items: center;
padding: 10px;
}

.addon-product-card:hover {
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.addon-product-image {
width: 80px;
height: 50px;
border-radius: 8px;
overflow: hidden;
flex-shrink: 0;
}

.addon-product-image img {
width: 100%;
height: 100%;
object-fit: contain;
}

.no-image {
color: #999;
font-style: italic;
}

.addon-product-info {
padding: 0 12px;
display: flex;
justify-content: space-between;
align-items: center;
flex: 1;
}

.addon-product-info h5 {
margin: 0;
font-size: 0.9em;
line-height: 1.3;
flex: 1;
}

.addon-product-controls {
display: flex;
align-items: center;
gap: 10px;
}

.control-row {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 0;
}

.control-row label {
font-size: 0.8em;
color: #666;
}

.control-row input[type="number"] {
width: 50px;
}

.control-row select {
max-width: 120px;
font-size: 0.8em;
}


.no-addons {
text-align: center;
color: #999;
font-style: italic;
padding: 30px;
}

.loading-addons {
text-align: center;
padding: 30px;
color: #666;
}

.loading-addons h4 {
margin: 0 0 10px 0;
color: #7d2240;
}

/* Lightbox Styles */
#media-lightbox {
display: none;
position: fixed;
z-index: 99999;
padding-top: 60px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow-y: auto;
overflow-x: hidden;
background-color: rgba(0, 0, 0, 0.95);
cursor: pointer; /* Click to close */
}

#media-lightbox .lightbox-content {
margin: auto;
display: block;
width: 80%;
max-width: 1200px;
position: relative;
animation: zoom 0.3s;
cursor: default; /* Don't close when clicking content */
padding: 20px 0;
}

.lightbox-content-wrapper {
position: relative;
display: inline-block;
width: 100%;
}

@keyframes zoom {
from { transform: scale(0.8); opacity: 0; }
to { transform: scale(1); opacity: 1; }
}

#media-lightbox .lightbox-content img {
width: 100%;
height: auto;
max-height: 80vh;
object-fit: contain;
display: block;
margin: 0 auto;
}

#media-lightbox .lightbox-content video {
width: 100%;
height: auto;
max-height: 80vh;
object-fit: contain;
display: block;
margin: 0 auto;
}

#media-lightbox .lightbox-content iframe {
width: 100%;
height: 70vh;
max-width: 1200px;
display: block;
margin: 0 auto;
border: none;
}

.lightbox-close {
position: absolute;
top: 5px;
right: -50px;
color: #f1f1f1;
font-size: 45px;
font-weight: bold;
cursor: pointer;
z-index: 100000;
transition: 0.3s;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, 0.5);
border-radius: 50%;
line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus {
color: #fff;
text-decoration: none;
cursor: pointer;
background: rgba(0, 0, 0, 0.8);
transform: scale(1.1);
}

.lightbox-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: auto;
color: #f1f1f1;
font-size: 50px;
font-weight: bold;
cursor: pointer;
padding: 16px;
transition: 0.3s;
user-select: none;
z-index: 100000;
background: rgba(0, 0, 0, 0.5);
border-radius: 5px;
}

.lightbox-nav:hover {
color: #fff;
background: rgba(0, 0, 0, 0.8);
}

.lightbox-prev {
left: -60px;
}

.lightbox-next {
right: -60px;
}

/* Mobile responsive */
@media screen and (max-width: 700px) {
#media-lightbox .lightbox-content {
  width: 95%;
}

.lightbox-close {
  font-size: 35px;
  top: 5px;
  right: -40px;
  width: 40px;
  height: 40px;
}

.lightbox-nav {
  font-size: 40px;
  padding: 12px;
}

.lightbox-prev {
  left: -40px;
}

.lightbox-next {
  right: -40px;
}
}

@media screen and (max-width: 480px) {
.lightbox-close {
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}
}


/* 
Latest new changes
-------------------------------------*/

.addon-qty-wrapper label{
    margin:0px 8px 0px 0px;

}
@media screen and (min-width: 980px){
    .addon-product-controls,
    .addon-qty-wrapper{
        margin-top:0px !important;
    }
    .variant-price-display{
        margin:0px;
    }
    .addon-product-controls{
        gap:20px;
    }
    
    .addon-product-info h5{
        font-size:1rem;
    }
}

span.cusOOSPD {
    background: var(--Magenta-500);
    margin-right: 10px;
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 10px;
}
