/* CUSTOM BUNDLE CSS */
section.custom-bundle {
  padding-bottom:135px;
}
@media (max-width:768px) {
  section.custom-bundle {
    padding-bottom:50px;
  }
}
section.custom-bundle, section.bundle-detail {
  background-color:#F1F1F6;
}

/* Bundle Detail Page */
.bundle-detail {
  padding: 40px 0;
  background-color: #f8f9fa;
  min-height: 100vh;
  position: relative;
}

@media (max-width: 768px) {
  .bundle-detail {
    padding: 0;
  }
}

.bundle-detail .wrapper { 
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.bundle-detail__container {
  display: flex;
  flex-direction:column;
  width:75%;
  gap: 30px;
}

@media (max-width:768px) {
  .bundle-detail__container {
    width:100%;
    gap:20px;
  }
}

.bundle-detail__main {
  flex: 1;
}


/* Bundle Header */
.bundle-detail__header { 
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  gap: 30px;
}

@media (max-width:768px) {
  .bundle-detail__header {
    padding:0;
  }
}

.bundle-detail__header-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.bundle-detail__header-left img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.bundle-detail__header-right {
  flex: 1;
  padding: 20px 0;
}

@media (max-width:768px) {
  .bundle-detail__header-right {
    display:flex;
    flex-direction:column;
  }

  .bundle-detail__header-right .bundle-detail__header-right-top {
    order:3;
    justify-content:flex-start;
    gap:20px;
  }
  .bundle-detail__title {
    order:1;
  }
  .bundle-detail__description {
    order:2;
    margin:0;
  }

  .bundle-detail__price {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .original-price {
    order:2;
  }
  .bundle-detail__header-right-top .bundle-detail__price .final-price {
    order:1;
    text-align: left;
    font: normal normal 800 18px/22px 'gilroybold';
    letter-spacing: 0px;
    color: #2A294F;
    text-transform: lowercase;
    opacity: 1;
  }
}

.bundle-detail__save {
  background: #6BC5B1 0% 0% no-repeat padding-box;
  border-radius: 13px;
  opacity: 1;
  text-align: center;
  font: normal normal bold 12px/18px 'gilroybold';
  letter-spacing: 1.2px;
  color: #FFFFFF;
  text-transform: uppercase;
  opacity: 1;
}

@media (max-width:768px) {
  .bundle-detail__save {
    order:2;
  }
  .bundle-detail__price {
    order:1;
  }
}

.bundle-detail__price {
  margin-bottom: 20px;
}

.bundle-detail__price .original-price {
  text-align: right;
  text-decoration: line-through;
  font: normal normal 800 18px/22px 'gilroybold';
  letter-spacing: 0px;
  color: #6565A0;
  text-transform: lowercase;
  opacity: 1;
}

.bundle-detail__price .final-price {
  text-align: right;
  font: normal normal 800 28px/36px 'gilroybold';
  letter-spacing: 0px;
  color: #2A294F;
  text-transform: lowercase;
  opacity: 1;
}

.bundle-detail__title {
  text-align: left;
  font: normal normal 800 34px/38px 'gilroybold';
  letter-spacing: 0px;
  color: #2A294F;
  text-transform: lowercase;
  opacity: 1;
}

.bundle-detail__description p {
  text-align: left;
  font: normal normal normal 16px/20px 'gilroymedium';
  letter-spacing: 0.48px;
  color: #2A294F;
  opacity: 1;
}

.bundle-detail__description ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.bundle-detail__description ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #37385C;
}

.bundle-detail__description ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('../img/checkmark.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.bundle-detail__features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-item i {
  color: #98D8C6;
}

/* Product Sections */
.bundle-detail__products {
  margin-bottom: 30px;
  display:flex;
  flex-wrap: wrap;
  gap:20px;
}

.product-container {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width:768px) {
  .product-container {
    margin-bottom:0;
  }
  .bundle-detail__products {
    display:block;
    width:100%;
    overflow:scroll;
  }
}

.product-section {
  width:calc(33% - 10px);
  max-width: calc(33% - 10px);
  flex:1 0 calc(33% - 10px);
  border-radius: 15px;
  margin-bottom: 20px;
}

@media (max-width:768px) {
  .product-section {
    display:none;
    width:100%;
    max-width:100%;
    width:100%;
    margin:0;
  }

  .product-section.active {
    display:block;
  }
}

.section-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  min-height:70px;
}

@media (max-width:768px) {
  .section-header {
    margin-bottom:0;
  }
}

.section-number {
  width: 40px;
  height: 40px;
  background: #98D8C6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 20px;
}

.section-info h2 {
  text-align: left;
  font: normal normal 800 18px/22px 'gilroybold';
  letter-spacing: 0px;
  color: #2A294F;
  text-transform: lowercase;
  opacity: 1;
}

.section-info p {
  text-align: left;
  font: normal normal normal 14px/20px 'gilroymedium';
  letter-spacing: 0.42px;
  color: #2A294F;
  opacity: 1;
}

.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.product-item {
  flex: 0 0 calc(33.333% - 14px);
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.product-item__image {
  position: relative;
  padding-top: 100%;
}

.product-item__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-item__info {
  padding: 15px;
}

.product-item__category {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}

.product-item__title {
  min-height:50px;
  text-align: left;
  font: normal normal 800 14px/16px 'gilroybold';
  letter-spacing: 0.42px;
  color: #2A294F;
  opacity: 1;
}

.product-item__price {
  text-align: right;
  font: normal normal bold 14px/20px 'gilroybold';
  letter-spacing: 0.42px;
  color: #2A294F;
  opacity: 1;
}

.product-item__quantity {
  display: none;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  margin-top:10px;
}

.product-item__quantity.show {
  display:flex;
  justify-content:center;
  align-items:center;
}

.quantity-btn {
  height:30px;
  width:30px;
  background: #E0E0EC 0% 0% no-repeat padding-box;
  opacity: 1;
  border-radius: 50%;
  text-align: center;
  font: normal normal bold 16px/16px 'futurabold';
  letter-spacing: 1px;
  color: #2A294F;
  text-transform: uppercase;
  opacity: 1;
}

.quantity-btn:hover {
  background: #f5f5f5;
}

.product-item__quantity input {
  width: 30px;
  height: 30px;
  text-align: center;
  /* border: 1px solid #ddd; */
  border-radius: 5px;
  text-align: center;
  font: normal normal bold 14px/21px 'futurabold';
  letter-spacing: 1.4px;
  color: #2A294F;
  text-transform: uppercase;
  opacity: 1;
}

.product-item__add {
  width:100%;
  background: #6565A0 0% 0% no-repeat padding-box;
  border-radius: 19px;
  opacity: 1;
  font: normal normal bold 10px/15px 'futurabold';
  letter-spacing: 1px;
  color: #FFFFFF;
  text-transform: uppercase;
  opacity: 1;
  padding:5px;
}

.product-item__add:hover {
  background: #7ac4af;
}

.product-item__add:disabled {
  opacity: 0.5!important;
  cursor: not-allowed;
}

.product-item__add.added:disabled {
  opacity:1!important;
}

.bundle-detail__header-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bundle-detail__header-left img {
  max-width: 100%;
  height: auto;
}

.bundle-detail__header-right {
  padding: 20px 0;
}

.bundle-detail__save {
  display: inline-block;
  background: #98D8C6;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.bundle-detail__title {
  font-size: 32px;
  font-weight: 700;
  color: #2D3142;
  margin-bottom: 15px;
}

.bundle-detail__description {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.bundle-detail__features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-item i {
  color: #98D8C6;
}

/* Cart Summary */
.bundle-detail__cart {
  background: #fff;
  border-radius: 15px;
  height: fit-content;
  width:225px;
  position: fixed;
  top: 220px;
  right: 19vw;
  border:1px solid #E0E0EC;
  transition: position 0.3s ease;
}

@media (min-width:1024px) and (max-width:1600px) {
  .bundle-detail__cart {
    right: 10%; 
  }
}

.bundle-detail__cart.absolute {
  position: absolute;
  top: auto;
  left:unset;
  bottom: 10%;
  right: 8%;
}

@media (max-width:768px) {
  .bundle-detail__cart {
    position: fixed;
    bottom: 0;
    left: 0;
    top: unset;
    width: 100%;
    z-index: 100;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  /* Disable absolute positioning on mobile */
  .bundle-detail__cart.absolute {
    position: fixed;
    bottom: 0;
    left: 0;
    right: auto;
    top: unset;
  }
}

.bundle-detail__cart h2 {
  font-size: 24px;
  font-weight: 600;
  color: #2D3142;
  margin-bottom: 10px;
}

.cart-items {
  margin-bottom: 20px;
  /* max-height: 150px; */
  padding-right: 20px;
  /* overflow-y: scroll; */
  margin: 0;
}

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

.cart-item__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right:10px;
}

.cart-item__info span {
  text-align: left;
  font: normal normal normal 12px/14px 'gilroymedium'; 
  letter-spacing: 0.48px;
  color: #2A294F;
  opacity: 1;
}

.cart-item__info .price {
  text-align: left;
  font: normal normal normal 10px/12px 'gilroymedium';
  letter-spacing: 0.48px;
  color: #2A294F;
  opacity: 1;
}

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

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

.add-bundle-to-cart:hover {
  background: #7ac4af;
}

.bundle-detail__content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
}

/* Main Content */
.bundle-detail__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
  padding: 30px;
  border-radius: 15px;
}

.bundle-detail__header-right-top {
  display:flex;
  justify-content: space-between;
  align-items:center;
}

.bundle-detail__image {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.bundle-detail__image img {
  width: 100%;
  height: auto;
  display: block;
}

.bundle-detail__info {
  padding: 20px 0;
}

.bundle-detail__save {
  display: inline-block;
  background: #98D8C6;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.bundle-detail__title {
  text-align: left;
  font: normal normal 800 34px/38px 'gilroybold';
  letter-spacing: 0px;
  color: #2A294F;
  text-transform: lowercase;
  opacity: 1;
}

.bundle-detail__description {
  text-align: left;
  font: normal normal normal 16px/20px 'gilroymedium';
  letter-spacing: 0.48px;
  color: #2A294F;
  opacity: 1;
  margin:0;
}

.bundle-detail__features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-item i {
  color: #98D8C6;
}

/* Product Sections */
.product-section {
  border-radius: 15px;
  margin-bottom: 30px;
}

.product-section__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.section-number {
  width: 40px;
  height: 40px;
  background: #98D8C6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 20px;
}

.section-info h2 {
  font-size: 20px;
  font-weight: 600;
  color: #2D3142;
  margin-bottom: 5px;
}

.section-info p {
  font-size: 14px;
  color: #666;
}

.product-grid {
  display: flex;
  flex-wrap:wrap;
  gap: 5px;
}

.product-item {
  width:calc(50% - 5px);
  max-width:calc(50% - 5px);
  flex:0 0 calc(50% - 5px);
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.product-item__image {
  position: relative;
  padding-top: 100%;
}

.product-item__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-item__info {
  padding: 15px;
}

.product-item__category {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}

.product-item__title {
  text-align: left;
  font: normal normal 800 14px/16px 'gilroybold';
  letter-spacing: 0.42px;
  color: #2A294F;
  opacity: 1;
}

.product-item__price {
  text-align: right;
  font: normal normal bold 14px/20px 'gilroyblack';
  letter-spacing: 0.42px;
  color: #2A294F;
  opacity: 1;
}

/* Cart Summary */

.cart-summary {
  padding: 20px 5px 20px 25px;
}

.cart-summary h2 {
  text-align: left;
  font: normal normal 800 24px/30px 'gilroybold';
  letter-spacing: 0.24px;
  color: #2A294F;
  text-transform: lowercase;
  opacity: 1;
}


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

.cart-totals {
  background-color:#E0E0EC;
  padding: 10px 25px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.mobile-show-button {
  display:none;
}
@media (max-width:768px) {
  .cart-totals {
    display:flex;
    align-items: center;
    gap:10px;
    padding:10px;
    border-bottom-left-radius:0;
    border-bottom-right-radius:0;
  }
  .mobile-left {
    width:40%;
  }
  .mobile-right {
    width:60%;
  }
  .cart-summary {
    padding:0;
  }
  .mobile-show-button {
    display:block;
    text-align:center;
  }
  .cart-summary h2 {
    display:none;
  }
  .cart-totals .cart-total__row:first-child {
    display:none;
  }
  .mobile-left .cart-total__row:last-child {
    border:none;
    padding:0;
  }
  .cart-items {
    height:0;
    max-height:0;
    overflow:hidden;
  }
  .cart-item {
    padding: 10px;
  }
  .cart-items.active {
    height:unset;
    max-height:unset;
  }
}

.cart-totals span {
  text-align: left;
  font: normal normal normal 12px/20px 'gilroymedium';
  letter-spacing: 0.36px;
  color: #2A294F;
  opacity: 1;
}

.cart-total__row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 14px;
  color: #666;
}

.cart-total__row:last-child {
  font-weight: 600;
  color: #2D3142;
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-bottom:5px;
}

.add-bundle-to-cart {
  width: 100%;
  background: #2A294F 0% 0% no-repeat padding-box;
  border-radius: 24px;
  opacity: 1;
  text-align: center;
  font: normal normal bold 12px/18px 'gilroybold';
  letter-spacing: 1.2px;
  color: #FFFFFF;
  text-transform: uppercase;
  opacity: 1;
  padding:12px 10px;
}

.add-bundle-to-cart:hover {
  background: #7ac4af;
}

/* Warning Message */
.warning-message {
  background: #fff3cd;
  border: 1px solid #ffeeba;
  color: #856404;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.warning-message i {
  color: #856404;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  .bundle-detail__content {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .bundle-detail__header {
    grid-template-columns: 1fr;
    padding:0;
    margin:0;
    gap:0;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media screen and (max-width: 480px) {
  .bundle-detail {
    padding: 20px 0;
  }

  .bundle-detail .wrapper {
    padding: 0 15px 100px;
  }

  .product-item__title {
    font-size: 14px;
  }

  .product-item__price {
    font-size: 16px;
  }
}

/* Base Styles */
.custom-bundle {
  padding: 60px 0;
  background-color: #fff;
}

.custom-bundle .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Section */
.custom-bundle__heading {
  text-align: center;
  margin-bottom: 60px;
}

.custom-bundle__title h1 {
  text-align: center;
  font: normal normal 800 34px/38px 'gilroybold';
  margin-bottom:10px;
  letter-spacing: 0px;
  color: #2A294F;
  text-transform: lowercase;
  opacity: 1;
}

.custom-bundle__description {
  margin: 0 auto;
}

.custom-bundle__description p {
  text-align: center;
  font: normal normal normal 16px/20px 'gilroymedium';
  letter-spacing: 0.48px;
  color: #2A294F;
  opacity: 1;
}

/* Benefits Section */
.custom-bundle__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 60px;
}

.benefits__item {
  display:flex;
  flex-direction:column;
  justify-content: center;
  align-items:center;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.benefits__item:hover {
  transform: translateY(-5px);
}

.benefits__item-icon {
  margin-bottom: 20px;
}

.benefits__item-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.benefits__item-title h3 {
  font-size: 24px;
  font-weight: 600;
  color: #2A294F;
}

.benefits__item-description p {
  font-size: 16px;
  line-height: 1.5;
  color: #2A294F;
}

/* Bundle Items Section */
.custom-bundle__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.custom-bundle__item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 30px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  position: relative;
  padding:20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (max-width:768px) {
  .custom-bundle__item {
    padding:10px;
  }
}

.custom-bundle__item:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.custom-bundle__item-image {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
}

.custom-bundle__item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius:15px;
}

.custom-bundle__item-discount {
  position: relative;
  background: #6bc5b1;
  color: #fff;
  /* padding: 8px 15px; */
  border-radius: 13px;
  font-weight: 600;
  align-self: flex-start;
  max-width: 35%;
  margin-top: 10px;
  text-align: center;
  font: normal normal bold 12px/18px 'gilroybold';
  letter-spacing: 1.2px;
  color: #FFFFFF;
  text-transform: uppercase;
  opacity: 1;
  padding: 0 10px;
}

@media (max-width:768px) {
  .custom-bundle__item-discount {
    position:absolute;
    top:2%;
    max-width:45%;
    font-size:9px;
    line-height:14px;
    padding: 2px 3px;
  }
}

.custom-bundle__item-title h2 {
  text-align: left;
  font: normal normal 800 24px/30px 'gilroybold';
  letter-spacing: 0px;
  color: #2A294F;
  text-transform: lowercase;
  opacity: 1; 
  margin-top:5px;
  /* min-height:60px; */
}

@media (max-width:768px) {
  .custom-bundle .custom-bundle__item-title h2 {
    font-size:18px;
    line-height:22px;
    margin-top:10px;
    min-height:unset;
  }
}

  .custom-bundle__item-excerpt {
    flex:1 1 100%;
  }

.custom-bundle__item-excerpt p {
  text-align: left;
  font: normal normal normal 14px/20px 'gilroymedium';
  letter-spacing: 0.42px;
  color: #2A294F;
  opacity: 1;
  min-height:60px;
}

@media (max-width:768px) {
  .custom-bundle__item-excerpt p {
    min-height:120px;
    margin-top:10px;
  }
}
 
.custom-bundle__item-cta .button {
  background: #6565A0 0% 0% no-repeat padding-box;
  border-radius: 28px;
  opacity: 1;
  text-align: center;
  font: normal normal bold 14px/21px 'futurabold';
  letter-spacing: 1.4px;
  color: #FFFFFF;
  text-transform: uppercase;
  opacity: 1;
  transition: background-color 0.3s ease;
  width:100%;
  display: block;
  padding: 10px 0;
  margin-top: 20px;
}

.custom-bundle__item-cta .button:hover {
  background: rgba(107, 197, 177, 1);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .custom-bundle__benefits,
  .custom-bundle__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .custom-bundle {
    padding: 40px 0;
  }

  .custom-bundle__title h1 {
    font-size: 24px;
    line-height:30px;
  }

  .custom-bundle__description p {
    font-size: 14px;
    line-height:20px;
  }

  .benefits__item-title h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 576px) {
  .custom-bundle__benefits,
  .custom-bundle__items {
    grid-template-columns: 1fr;
  }

  .custom-bundle .custom-bundle__benefits {
    display:none;
  }

  .custom-bundle__items {
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }

  .custom-bundle__item-price p {
    font-size: 20px;
  }
}

.quantity-warning-container {
  position: fixed;
  bottom: 20px;
  right:0;
  width:100%;
  z-index: 9999;
  display: flex;
  justify-content:center;
  align-items:center;
}

.quantity-warning {
  display:none;
  background-color: #FFF3CD; 
  border: 1px solid #FFE69C;
  border-radius: 8px;
  padding: 16px 24px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  pointer-events: auto;
  width: auto;
  min-width: 300px;
  text-align: center;
}

@media (max-width: 768px) {
  .quantity-warning {
    bottom:0;
    width:100%;
    padding:5px 7px;
    transform:none;
    z-index:1000;
  }
  .quantity-warning .warning-content {
    display:block;
    line-height:20px;
  }
}

.warning-content {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #664D03;
  font-size: 14px;
}

.warning-content i {
  color: #664D03;
  font-size: 16px;
}

.warning-content a {
  text-decoration:underline;
}

.warning-link {
  color: #664D03;
  text-decoration: underline;
  font-weight: 600;
}

.warning-link:hover {
  color: #463506;
}

@keyframes slideDown {
  0% {
    transform: translate(-50%, -100%);
    opacity: 0;
    visibility: hidden;
  }
  1% {
    visibility: visible;
  }
  100% {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
  }
}

.add-bundle-to-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed; 
} 


section.module--video-testimonial {
  background:linear-gradient(180deg, #6565A0 0%, rgba(101,101,160,1) 100%);
  padding-top:60px;
  padding-bottom:0; 
}

section.module--video-testimonial .decor-top-curve {
  background: url(../img/decor-top.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: -8vw;
  left: 0px;
  height: 165px;
  z-index: 23;
  width: 100%;
  overflow: hidden;
}

@media (max-width:768px) {
  section.module--video-testimonial .decor-top-curve {
    top:-30px;
    height:40px;
  }
}

.video-testimonial__footnote .btn-primary:hover {
  background-color:#7ac4af;
}

section.module--video-testimonial .video-testimonial__footnote {
  padding-bottom:0;
}

section.shop-faq {
  margin-top:0;
  padding-top:0;
}

@media (max-width:768px) {
  html section.shop-faq {
    padding-top:0;
  }
}

.mobile-button-controller {
  display:none;
}

@media (max-width:768px) {
  .mobile-button-controller {
    display:flex;
    gap:10px;
    width:97%;
  }
  .mobile-button-controller .button {
    flex: 1 0 50%;
    background: #2A294F 0% 0% no-repeat padding-box;
    border-radius: 24px;
    opacity: 1;
    text-align: center;
    font: normal normal bold 12px / 18px 'gilroybold';
    letter-spacing: 1.2px;
    color: #FFFFFF;
    text-transform: uppercase;
    opacity: 1;
    padding: 12px 10px;
  }
  .mobile-button-controller .previous {
    display:none;
  }
  .mobile-button-controller .next {
    /* No additional styles needed */
  }
  .mobile-button-controller .add-bundle-to-cart {
    display:none;
    padding:5px;
  }
}

@media (max-width:768px) {
  .back-to-top {
    display:none;
  }
}

section.module.module--video-testimonial.custom-bundle {
  padding-bottom:55px;
}