/** Shopify CDN: Minification failed

Line 1855:27 Expected "}" to go with "{"

**/

.product-row {
  background-color:transparent;
  align-self: center;
}

/* ===============================
   Product Section
================================== */
.product-section-tabs {
  display: flex;
  flex-direction: column;
  gap: 0px;
  position: relative;
  background: linear-gradient(180deg, #F1D9FF 0%, #A0D9FF 99%);
  padding-bottom: 415px;
}

/* ===============================
   Row Layout
================================== */
.product-row {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: flex-start;
  justify-content: center;
  padding: 10px;
}

/* ===============================
   Left Column
================================== */
.product-left-col {
  
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 538px;
  
}

/* ===============================
   Right Column Typography - Product 1
================================== */
/* Container for both columns */
.product-section-tabs {
  display: flex;
  justify-content: center; /* centers both columns together */
  align-items: space-between;
  gap: 40px; /* spacing between left & right */
  margin: 0 auto;
  width: 100vw; /* enough space for both columns + gap */
  padding: 40px 20px 100px 20px;
  box-sizing: border-box;
}

/* Left column */
.product-left-col {
  width: 538px;
  flex-shrink: 0;
  background-color:transparent;
  margin-left:0%;
}

/* Right column */
.product-right-col.product-1 {
  width: 650px !important;
  flex-shrink: 0;
  flex-direction: column;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222;
  
  box-sizing: border-box;
  background-color: transparent;
  position: relative;
}


/* Titles */
.product-right-col.product-1 .title {
  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 50px;
  leading-trim: NONE;
  line-height: 65px;
  letter-spacing: 0%;
  margin-top: -14px;
  margin-bottom: 0;
}

.product-right-col.product-1 .inline-flex {
  display: flex;
  gap: 6px;
  margin-bottom: -5px;
}

.product-right-col.product-1 .blue {
  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 61px;
  letter-spacing: 0%;

  color: #0090FF;
}

.product-right-col.product-1 .black {
  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 61px;
  letter-spacing: 0%;

  color: #00002a;
}

.product-right-col.product-1 .price {
  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  leading-trim: NONE;
  line-height: 61px;
  letter-spacing: 0%;

  color: #00002A;
  margin: -10px 0 12px 0;
}

/* Filter Radios */
.product-1-filters {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: flex-start;
}

.product-1-filters .variant-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 16px 20px;
  border-radius: 20px;
  background: #ffffff;
  transition: all 0.2s ease;
  width: 647px;
  height: 114px;
  border-radius: 20px;
  border: 3px solid transparent;
}

.product-1-filters input[type="radio"]:checked + .variant-label {
  border-color: #0090FF; /* blue border when selected */
  box-shadow: 0 0 10px rgba(0, 144, 255, 0.2); /* optional glow */
  border: 3px solid #0090ff !important;
}


.product-1-filters .variant-label:hover {
  border-color: #0090FF;
  background: #f0f8ff;
  color: #0090FF;
}

.product-1-filters input[type="radio"] {
  position: relative;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-top: 25px;
  border: 5px solid #0090FF;
  border-radius: 50%;
  appearance: none;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-right: 5px;
}

.product-1-filters input[type="radio"]:checked {
  border-color: #0090FF;
  background-color: #00002a;
}

/* Highlight full card when selected */
.product-1-filters .variant-label:has(input[type="radio"]:checked) {
  border-color: #0090FF;
  box-shadow: 0 0 12px rgba(0, 144, 255, 0.2);
  background: #f0f8ff;
}

.product-1-filters .variant-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-1-filters .variant-header {
  display: flex;
  gap: 6px;
  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 34px;
  letter-spacing: 0%;
  margin-bottom: -8px;
}

.product-1-filters .variant-subtext {
  font-family: Poppins;
  font-weight: 400;
  font-style: Bold;
  font-size: 14px;
  leading-trim: NONE;
  letter-spacing: 0%;
  margin-top: 3px;
}

.product-1-filters .price-diff {
  font-size: 13px;
  color: #666;
  margin-left: 6px;
}

/* Color Options */
.product-1-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 15px 0 25px;
}

.product-1-colors input[type="radio"] {
  display: none;
}

.product-1-colors label {
  padding: 8px 14px;
  background: #f5f5f5;
  border-radius: 6px;
  border: 1px solid #ddd;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.25s ease;
}

.product-1-colors label:hover {
  background: #eee;
}

.product-1-colors input[type="radio"]:checked + label {
  background: #000021;
  color: #f1d9ff;
  font-weight: bold;
  border-color: #222;
}

/* Add to Cart Button */
.product-right-col.product-1 .play-btns {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #00002A;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 5px 24px;
  padding-right: 42px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.25s ease;
  min-width: 200px;
  margin-top: 20px;
  position: relative;
}

.product-right-col.product-1 .play-btns:hover {
  background: linear-gradient(135deg, #0090ff, #0066cc);
  transform: translateY(-2px);
}

.product-right-col.product-1 .play-btns svg {
  position: absolute;
  right: 0;
  width: 40px;
  height: 40px;
  fill: white;
  transform: translateX(4px);
}

.product-right-col .blue-small{
  color:#0090FF;
}

/* ===============================
   Tab Buttons
================================== */
.tab-buttons {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 538px;
  /* background: rgba(255, 165, 0, 0.2); DEBUG */
}

.tab-btn {
  flex: 1;
  background: #0090FF;
  border-bottom: none;            /* so it blends behind the image */
  cursor: pointer;
  text-align: center;
  padding: 14px 0;
  padding-bottom: 28px;
  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 22px;
  color: #333;
  transition: all 0.25s ease, transform 0.15s ease;

  /* key for overlap */
  margin-bottom: -20px;           /* pulls bottom under image wrapper */
  position: relative;
  z-index: 2;                     /* above background but below image */
}

.tab-btn:hover {
  background-color: rgba(0, 0, 42, 1);
  transform: translateY(-2px);
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
  color: #f1d9ff
}

.tab-btn.active {
  background: #000021;
  color: #f1d9ff;
  border-color: #222;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Mobile: stack tabs */
@media (max-width: 768px) {
  .tab-buttons {
    flex-direction: column;
    max-width: 100%;
    gap: 8px;
  }
  .tab-btn {
    width: 100%;
  }
  .tab-buttons button {
    max-width:530px;
    align-self: center;
  }
}

.tab-btn {
  outline: none;
  border: none;
}

.tab-btn:focus,
.tab-btn:active {
  outline: none;
  box-shadow: none;
}

/* ===============================
   Product Image
================================== */
.product-image-wrapper {
  position:relative;
  width: 538px;
  height: 538px;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  margin: 0 auto;
  z-index: 10;
  margin-top:81px;
}

.product-image {
  width: 538px;
  height: 538px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 14px 14px 0 0;
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.02);
}

.overlay-image {
  background-color: #0090ff;
  width: 530px;
  padding: 20px;
}

/* Thumbnails under main image */
.variant-thumbnails {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  padding: 15px;
  margin-bottom: 15px;
}

.thumbnail-img {
  width: 70px !important;
  height: 70px !important;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s ease, transform 0.2s ease;
}

.thumbnail-img:hover {
  transform: scale(1.05);
}

.thumbnail-img.active {
  border-color: #222;
}

.rect {
  width: 538px;
height: 267px;
border-width: 2px !important;
border-style: solid;
angle: 0 deg;
opacity: 1;
border-radius: 27px;
border-color: #0090FF !important;
background-color: #F1D9FF;

}

.read-more-p {
  margin-top: 20 px;
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: 0%;



}

.rect h2 {
  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0%;
  color: #00002a;
  text-align:center;

}

.icons-svg {
  display: flex;
  justify-content: space-between; /* equal spacing between all icons */
  align-items: center;
  flex-wrap: nowrap; /* keep all items in one line */
  gap: 10px; /* consistent horizontal gap */
}

.icon-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1; /* ensures equal width for each icon */
  min-width: 100px;
}

.icon-layout img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}

.white-bubble{

  margin-top: 16px;
  width: 108px;
  height: 35px;
  opacity: 1;
  border-radius: 40px;
  background-color: #ffffff;
  text-align:center;

}

.icon-layout p {

  margin-left: 5px;
  margin-top: 3px;

  color: #00002a;
  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 11px;
  leading-trim: NONE;
  line-height: 14px;
  letter-spacing: 0%;
  text-align: center;

}

.spacer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}


/* ===============================
   Tab Content
================================== */
/* Force visible tab content to show */
/* Hide all tab contents by default */
.tab-content {
  display: visible;
}

/* Show active tab content */
.tab-content.active {
  display: visible;


/* ===============================
   Filter Variant Radios
================================== */

/* Title above the radios */
.filter-variant-typo {
  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 33px;
  leading-trim: NONE;
  line-height: 45px;
  letter-spacing: 0%;

  color: #0090ff;
}

/* Container for all radios */
.variant-options.product-1-filters {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
  width: 100%;
  align-items: flex-start;
  margin:0;
}

/* Each radio option card */
.radio-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  background: #fff;
  /*transition: border-color 0.2s ease, box-shadow 0.2s ease;*/
  cursor: pointer;
  min-width: 400px;
  background:white;
  width: 647;
  height: 114;
  border-radius: 20px;
  opacity: 1;
}

/* Hide the native radio input but keep it accessible */
.radio-item input[type="radio"] {

  position: absolute;
  opacity: 0;
  pointer-events: none;
  padding-top: 10px;
}

/* Card highlight when checked */
.radio-item input[type="radio"]:checked ~ .radio-item__content {
  
  box-shadow: 0 0 0 2px rgba(0,122,255,0.15);
}

/* Content wrapper inside the card */
.radio-item__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  text-align: left !important;
}

/* Header row (circle + heading text) */
.radio-item__header {
  display: flex;
  align-items: flex-start;
  align-self: flex-start;
  gap: 10px;
  font-size: 50px;
  font-weight: 600;
  color: #333;
  text-align:left;
  background-color:transparent;
}

/* Custom circle */
.radio-item__header::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #aaa;
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

/* Circle filled when checked */
.radio-item input[type="radio"]:checked ~ .radio-item__content .radio-item__header::before {
  border-color: #007aff;
  background: radial-gradient(circle, #007aff 45%, transparent 50%);
}

/* Subheading under the heading */
.radio-item__subheading {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.4;
  padding-left: 28px; /* align with heading text */
  align-self: flex-start;
}


/* ===============================
   Color Options (Refined)
================================== */
.color-options {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0 30px;
  padding: 5px;
  justify-content: flex-start;
  
}

.color-options input[type="radio"] {
  display: none;
}

.color-options label {
  
  display: inline-flex; /* allows full width/height + centering */
  align-items: center;
  justify-content: center;
  width: 122.47573852539062px;
  height: 109px;
  border-radius: 20px;

  padding: 10px 18px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  cursor: pointer;
  leading-trim: NONE;
  line-height: 34px;
  letter-spacing: 0%;
  text-align: center;
  color: #00002a;

  transition: all 0.25s ease;
  box-sizing: border-box;

  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 40px;
  letter-spacing: 0%;

}

/* Hover state */
.color-options label:hover {
  background: #f0f0f8;
  border-color: #0090ff;
  color: #0090ff;
}

/* Selected (checked) state */
.color-options input[type="radio"]:checked + label {
  background: #0090ff;
  color: #00002a;
  font-weight: 600;
  border-color: #0090ff;
  box-shadow: 0 0 12px rgba(0, 144, 255, 0.25);
  transform: scale(1.03);
}

.color-rect {
  display: inline-block;
  margin-bottom: 15px;
}

.color-rect input[type="radio"] {
  display: none;
}

.color-rect label {
  display: flex;
  flex-direction: column; /* stack color name and price difference */
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px; /* space between name and price */
  width: 144.47573852539062;
  height: 109;
  border-radius: 20px;

  background: #f5f5f5;
  border: 2px solid #ddd;
  cursor: pointer;
  transition: all 0.25s ease;
  box-sizing: border-box;

  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;

  color: #00002a;

  position: relative;
}

/* Hover & selected states */
.color-rect label:hover {
  background: #eee;
}

.color-rect input[type="radio"]:checked + label {
  background: #0090FF;
  color: #00002a;
  font-weight: bold;
  border-color: #0090FF;
}




/* ===============================
   Highlights & Icons
================================== */
.highlight {
  display: flex;
  gap: 8px;
  align-items: center;
}

.background-circle {
  background-color: #f1d9ff;
  border-radius: 16px;
  padding: 8px;
}


.filter-label {
  display: block;
  border: 2px solid #0090FF;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  background: #fff;
  transition: border 0.2s ease, background 0.2s ease;
  margin-top: 5px;
}

.filter-label-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #0090FF;
  background: #fff;
  flex-shrink: 0;
  transition: all 0.2s ease;
  margin-right: 5px;
}

/* light up when checked */
input[type="radio"]:checked + .filter-label .filter-dot,
.filter-label input[type="radio"]:checked ~ .filter-dot {
  background: #0090FF;
  border-color: #0090FF;
}

.filter-label-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.variant-title {
  font-weight: 600;
  font-size: 14px;
}

.variant-tag {
  font-size: 12px;
  color: #000021;
  padding-right: 10px;
  border-radius: 4px;
}

.custom-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 5%,         /* fade starts early */
    rgba(0, 0, 0, 0.4) 5%, /* widen solid area */
    rgba(0, 0, 0, 0.4) 95%, /* keep it longer */
    transparent 95%         /* fade out later */
  );
  margin: 40px 0;
}

/* ===============================
   Mobile Responsive Tweaks ONLY
   (desktop stays exactly as is)
================================== */
@media (max-width: 768px) {
  .product-row {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .product-right-col h2 {
    font-size: 20px;
  }

  .product-right-col h3 {
    font-size: 16px;
  }

  .product-right-col .price {
    font-size: 28px;
    margin-top: -15px;
  }

  .product-right-col .title {
    font-size: 28px;
    line-height: 1.3;
  }

  .thumbnail-img {
    width: 50px;
    height: 50px;
  }

  .product-right-col a {
    font-size: 14px;
    padding: 8px 16px;
  }

  .custom-line {
    height: 1px;
    margin: 20px 0;
    background: linear-gradient(
      to right,
      transparent 20%,
      rgba(0, 0, 0, 0.25) 40%,
      rgba(0, 0, 0, 0.25) 60%,
      transparent 80%
    );
  }
}

.subscription-options input[type="radio"] {
  appearance: none; /* removes default styling in modern browsers */
  -webkit-appearance: none; /* Safari/Chrome */
  -moz-appearance: none; /* Firefox */
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  position: absolute; /* keep it accessible but invisible */
}

/* ===============================
   Subscription Options Container
================================== */
.subscription-options {
  margin-top: 20px;
  margin-right: 100px;
  border-radius: 12px;
}

/* ===============================
   Purchase Groups
================================== */
.subscription-options .purchase-group {
  margin-bottom: 20px;
}



/* ===============================
   Purchase Option Labels
================================== */
.subscription-options .purchase-option {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  cursor: pointer;
  position: relative;
}

.subscription-options .purchase-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  position: absolute; /* hidden but still accessible */
}

/* ===============================
   Custom Dot (like filter variants)
================================== */
.subscription-options .option-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #0090FF;
  margin-right: 12px;
  margin-top: 4px;
  flex-shrink: 0;
  transition: all 0.2s ease;
  background: #fff;
}

.subscription-options .purchase-option input[type="radio"]:checked + .option-dot {
  background-color: #0090FF;
  border-color: #0090FF;
}

/* ===============================
   Option Content
================================== */
.subscription-options .option-content {
  display: flex;
  flex-direction: column;
}

.subscription-options .option-main {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.subscription-options .option-title {
  font-weight: bold;
  color: #00002A;
}

.subscription-options .option-desc {
  color: #333;
}

.subscription-options .option-price {
  font-weight: bold;
  color: #00002A;
}

.subscription-options .option-note {
  font-size: 13px;
  color: #666;
  margin-top: 3px;
}

/* ===============================
   Hover Effect
================================== */
.subscription-options .purchase-option:hover .option-dot {
  box-shadow: 0 0 0 2px rgba(0, 144, 255, 0.3);
}

/* ===============================
   HERO SECTION
================================== */
.hero {
  
  position: relative;
  width: 100%;
  height: 600px;
  color: #fff;
  background: linear-gradient(180deg, #F1D9FF 0%, #A0D9FF 33.23%, #00C9FF 60.19%, #0090FF 84.69%);

  text-align: left;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 1;
}

.hero-content{
  margin-left: 260px;
  margin-top:40px !important;
  background-color: brown;
}

/* Heading */
.hero h1 {
  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 65px;
  leading-trim: NONE;
  line-height: 80px;
  letter-spacing: 0%;
}

/* Subheading */
.hero h3 {
font-family: Poppins;
font-weight: 400;
font-style: Regular;
font-size: 24px;
leading-trim: NONE;
line-height: 34px;
letter-spacing: 0%;
color: #ffffff;
margin-bottom: 150px;
}

/* ===============================
   WAVE DIVIDER
================================== */
.hero-wave {
  display: block;
  width: 100%;
  line-height: 0;
  margin: 0;
  padding: 0;
  position: relative;
  bottom: -1px; /* remove gap with next section */
  z-index: 2;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.hero-wave path {
  fill: transparent; /* matches next section background */
}

/* ===============================
   Right Column Typography - Product 2
================================== */
    .product-right-col.product-2 {
        width: auto;
        flex-shrink: 0;
        flex-direction: column;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        color: #222;
        box-sizing: border-box;
        background-color: transparent;
        position: relative;
    }

/* Titles */
.product-right-col.product-2 .title {
  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 50px;
  leading-trim: NONE;
  letter-spacing: 0%;
  height: 68px;
  color: #00002a;
  margin-top: -18px;
  margin-bottom: 6px;
}

@media screen and (max-width: 1350px) {
  .product-right-col.product-2 .title{
    font-size: 45px;
  }
}

@media screen and (max-width: 500px) {
  .product-right-col.product-2 .title {
    margin-top: -9px;
  }
}

.product-right-col.product-2 .description {
  width: 588px;
  height: 112px;
  
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 28px;
  letter-spacing: 0%;


}

.product-right-col.product-2 .inline-flex {
  display: flex;
  gap: 6px;
  margin-bottom: -5px;
  justify-content:flex-start;
  text-align:center;
  padding:0 !important;
}

.product-right-col.product-2 .blue {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    letter-spacing: 0%;
    
    color: #0090FF;
}

.product-right-col.product-2 .black {
  font-size: 24px;
  color: #000021;
}

.product-right-col.product-2 .price {
    font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  leading-trim: NONE;
  line-height: 61px;
  letter-spacing: 0%;

  color: #00002A;
  margin: -10px 0 12px 0;
}

/* Filter Radios (mirror Product 1) */
.product-2-filters {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: flex-start;
}

.product-2-filters .variant-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 16px 20px;
  border-radius: 20px;
  background: #ffffff;
  transition: all 0.2s ease;
  width: 647px;
  height: 114px;
  border-radius: 20px;
  border: 3px solid transparent;
}

.product-2-filters input[type="radio"]:checked + .variant-label {
  border-color: #0090FF; /* blue border when selected */
  box-shadow: 0 0 10px rgba(0, 144, 255, 0.2); /* optional glow */
  border: 3px solid #0090ff !important;
}

.product-2-filters .variant-label:hover {
  border-color: #0090FF;
  background: #f0f8ff;
  color: #0090FF;
}

.product-2-filters input[type="radio"] {
  position: relative;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-top: 25px;
  border: 5px solid #0090FF;
  border-radius: 50%;
  appearance: none;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-right: 5px;
}

.product-2-filters input[type="radio"]:checked {
  border-color: #0090FF;
  background-color: #0090FF;
}

.product-2-filters .variant-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.product-2-filters .variant-header {
  display: flex;
  gap: 6px;
  align-items: baseline;
  font-weight: 600;
  font-size: 16px;
}

.product-2-filters .variant-subtext {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

/* Color Options (mirror Product 1) */
.product-2-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 15px 0 25px;
}

.product-2-colors input[type="radio"] {
  display: none;
}

.product-2-colors label {
  padding: 8px 14px;
  background: #f5f5f5;
  border-radius: 6px;
  border: 1px solid #ddd;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.25s ease;
}

.product-2-colors label:hover {
  background: #eee;
}

.product-2-colors input[type="radio"]:checked + label {
  background: #000021;
  color: #f1d9ff;
  font-weight: bold;
  border-color: #222;
}

/* Add to Cart Button */
.product-right-col.product-2 .play-btns {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #00002A;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 5px 24px;
  padding-right: 42px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.25s ease;
  min-width: 0;
  max-width:200px;
  margin-top: 20px;
  position: relative;
}

.product-right-col.product-2 .play-btns a{
  color:white;
}

.product-right-col.product-2 .play-btns:hover {
  background: linear-gradient(135deg, #0090ff, #0066cc);
  transform: translateY(-2px);
}

.product-right-col.product-2 .play-btns svg {
  position: absolute;
  right: 0;
  width: 40px;
  height: 40px;
  fill: white;
  transform: translateX(4px);
}
/* ===============================
   Product 2 Radio Buttons - Match Product 1
================================== */


.radio-item-2 {
  display: flex;
  flex-direction: column;       /* stack header + subheading */
  gap: 6px;
  cursor: pointer;
  padding: 16px 20px;
  border-radius: 20px;
  background: #fff;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 650px;
  height: 114px;
  box-sizing: border-box;
  margin-bottom:10px;
}

.radio-item-2:hover {
  border-color: #0090FF;
  background: #f0f8ff;
}

/* Hide native radio but keep accessible */
.radio-item-2 input[type="radio"] {
  position: absolute;           /* keep accessible but invisible */
  opacity: 0;
  width: 0;
  height: 0;
  cursor: pointer;
}

/* Card content wrapper */
.radio-item__content-2 {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

/* Header row (circle + heading) */
.radio-item__header-2 {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  font-size: 15px;
  color: #333;
}

@media screen and (max-width: 350px){
  .radio-item__header-2{
    gap: 3px;
  }

  .radio-item__subheading-2{
    font-size: 9px;
    padding-left: 19px;
  }

}

/* Custom circle like Product 1 */
.radio-item__header-2::before {
  content: "";
  position: relative;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-top: 25px;
  border: 5px solid #0090FF;
  border-radius: 50%;
  appearance: none;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-right: 5px;
}

/* Circle filled when checked */
.radio-item-2 input[type="radio"]:checked ~ .radio-item__content-2 .radio-item__header-2::before {
  border-color: #007aff;
  background: #00002A;
}


/* Hide native radio but keep accessible */
.radio-item-3 input[type="radio"] {
  position: absolute;           /* keep accessible but invisible */
  opacity: 0;
  width: 0;
  height: 0;
  cursor: pointer;
}

/* Header row (circle + heading) */
.radio-item__header-3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

/* Custom circle like Product 1 */
.radio-item__header-3::before {
  content: "";
  position: relative;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border: 5px solid #0090FF;
  border-radius: 50%;
  appearance: none;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-right: 5px;
}

/* Circle filled when checked */
.radio-item-2 input[type="radio"]:checked ~ .radio-item__content-3 .radio-item__header-3::before {
  border-color: #007aff;
  background: #00002A;
}


/* Subheading under the heading */
.radio-item__subheading-2 {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
  margin-top: -3px;
  padding-left: 28px; /* aligns with heading text */
}

.product-2-thumbnails{
  margin-top: 20px;
}


.product-description-heading {
  font-family: Poppins;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  color:#00002a;
}

.desc  {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 20px;
  letter-spacing: 0%;
  color:#00002a;
  margin-top:-6px;
}

.black-line {
  margin-top: 30px;
  width: auto;
  height: 1px;
  opacity: 1;
  background-color: #00002a;

}

    .diff {
        font-family: Poppins;
        font-weight: 700;
        font-style: Regular;
        font-size: 14px;
        leading-trim: NONE;
        line-height: 28px;
        letter-spacing: 0%;
        text-align: center;
        color: #f1d9ff;
        position: absolute;
        top: 0;
        margin-top: -20px;
        background-color: #0090FF;
        border-radius: 40px;
        padding: 0px 8px;
    }

.extra-text {
  margin-top: 40px;
}

.pink-bg {
  background-color: #f1d9ff;
  border-radius: 40px;
  padding-left: 5px;
  padding-right:5px;
  padding: 8px;
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
}

@media screen and (max-width: 1350px) {

  .tab-btn {
      font-size: 18px;
  }

  .product-1-filters .variant-label {
    width: auto;
    height: auto;
  }
  .filter-variant-typo {
    font-size: 28px;
    }
  .color-rect label {
    font-size:18px;
    max-width: 100px; 
    height: 83px;
    }
  .color-options {
    justify-content: space-evenly;
  }

  .extra-text {
    margin-bottom: 25px;
  }

  .black-small{
    font-size: 18px;
  }
  .radio-item-2 {
    padding: 0 0 0 22px;
    height: auto;
  }
}
@media screen and (max-width: 999px){
  .radio-item-2 {
    max-width: 550px;
  }

  .product-2-description {
    width:auto;
  }
}

@media screen and (max-width: 956px){
  .product-right-col{
    width: auto;
  }
  .product-1-filters .variant-label{
    width: 80%;
    max-width: 600px;
  }
  .product-1-filters .variant-label:has(input[type="radio"]:checked) {
    border-color: #0090FF;
    box-shadow: 0 0 12px rgba(0, 144, 255, 0.2);
    background: #f0f8ff; 
  }

  .blue-small {
    font-size: 18px;
  }

  .product-1-filters .variant-subtext {
    font-size: 12px;
    
  }

  .color-rect {
    width:auto;
    height:auto;
  }

  .color-rect label {
    font-size: 14px;
    width: 90px;
    height: 90px;
  }

  .diff {
    font-size:12px;
  }

  .product-right-col h2 {
    font-size: 28px;
    text-align: center;
  }

      .product-right-col.product-2 .title {
        font-size: 28px;
      }


          .product-2-description {
            width: auto;
            font-size: 14px;
            text-align: center;
        }
  .price {
    text-align: center;
  }
      
  .inline-flex{
    justify-content: center;
    margin-top: -45px;
  }

  .product-right-col h3{
    text-align:center;
  }

  .variant-options.product-1-filters{
    align-items: center;
  }

  .color-options {
    justify-content: center;
    gap: 11px;
      }

  .wrapper-btn{
    justify-content:center;
  }

  .product-left-col {
    width: auto;
  }

.product-image-wrapper {
  width: auto;
  height: auto;
}


}

@media screen and (max-width: 767px){
  .blue-small {
    font-size: 14px;
  }

}

@media screen and (max-width: 685px) {
          .product-1-filters .price-diff {
            display:none;
          }

          .product-1-filters input[type="radio"] {
            width: 20px;
            height: 20px;
          }
}

@media screen and (max-width: 630px) {
    .rect h2 {
      font-size:18px;
    }

   .spacer img{
    width: 50px;
   }

   .filter-svg{
    width: 16px !important;
   }

   .plug-svg{
    width: 56px !important;
   }
    .product-left-col {
            width: auto;
    }
    .product-left-col img {
  width: 100%;         /* <-- This makes it scale down */
  height: auto;        /* Keeps proportions */
  display: block;
  object-fit: cover;   /* Ensures it doesn’t stretch oddly */
}


}

                
                  @media screen and (max-width: 650px) {
                    .hero h1 {
                      font-size: 45px;
                      line-height: 55px;
                      }
                    
                    .hero h3 {
                      font-size: 20px;
                    }
                    .hero-content {
                      margin-right:5px;
                    }
                  }

@media screen and (max-width: 540px) {
    .tab-content.active .product-right-col.product-2 .inline-flex {
      justify-content: center;
    }
    .tab-content.active .black-small {
      font-size: 12px;
    }
    .black-small {
      font-size: 12px;
    }
}

@media screen and (max-width: 569px) {

  .pink-bg {
    font-size: 11px;
  }
      .product-right-col {
        margin-top: 0;
      }
}

@media screen and (max-width: 491px) {
        .blue-small {
          font-size: 12px;
        }         
       .product-1-filters .variant-subtext {
          font-size: 8px;  
        }

        .product-1-filters .variant-label {
          padding: 10px;
        }

            .pink-bg {
              font-size: 10px;
              padding: 6px;
            }
            }

@media screen and (max-width: 450px) {
        .hero h1{
          font-size: 38px;
        }
        .blue-small {
          font-size: 10px;
        }         
       .product-1-filters .variant-subtext {
          font-size: 8px;  
        }

        .product-1-filters .variant-label {
          padding: 10px;
        }
        .product-1-filters .variant-label {
            width: auto;
            max-width: 600px;
        }
     .product-right-col.product-2 .black {
                              font-size: 16px;
                              color: #00002a;
                          }
      .product-right-col.product-2 .inline-flex {
        display: flex
;
        gap: 6px;
        margin-bottom: -5px;
        justify-content: center;
        text-align: center;
        padding: 0 !important;
    }
            .black-small {
            font-size: 12px;
        }

}

@media screen and (max-width: 369px) {
        .pink-bg {
              font-size: 9px;
              padding: 5px;
            }
        .product-1-filters .variant-label {
            width: auto;
            max-width: 600px;
        }
}


@media screen and (max-width: 363px){
                                .product-left-col {
                                  max-width: 270px !important;
                                }
                          }