/** Shopify CDN: Minification failed

Line 612:1 Expected "}" to go with "{"

**/
.skin-rhythms-container {
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
  padding: 0 100px;
  margin-top: 30px;
}
.hideslider{
  display:none;
}
.custom-tabs-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-tabs {
  display: inline-flex;
  border: 1px solid #b2767e;
  border-radius: 50px;
  overflow: hidden;
}

.custom-tabs .tab-btn {
  background: transparent;
  border: none;
  padding: 12px 30px;
  font-family: 'Montas', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  line-height: 57.6px;
  letter-spacing: -0.9px;
  text-align: center;
  color: #0B254B;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-tabs .tab-btn.active {
  background: #f6e9e0;
  color: #0B254B;
}

.custom-tabs .tab-btn:hover:not(.active) {
  background: rgba(245, 230, 222, 0.4);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.skin-rhythms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top:30px;
}

.skin-rhythms-item {
  text-align: left;
}

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  padding:10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 10px;
  left: auto;
  right:10px;
  padding: 6px 12px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 20px;
  z-index: 2;
}

.best-seller-badge {
  background: #f4e1d2;
  color: #7b4d52;
}

.new-launch-badge {
  background: #e8f5e8;
  color: #2d5a2d;
  font-size: 16px;
}

.reviews-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  backdrop-filter: blur(5px);
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.rating-number {
  color: #333;
  font-weight: 700;
}

.star {
  color: #ffb400;
  font-size: 16px;
}

.review-separator {
  color: #999;
  margin: 0 4px;
  font-weight: 400;
}

.review-count {
  color: #666;
  font-weight: 500;
}

.product-title {
  
  font-size: 20px;
  font-weight: 600;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
 
  min-height: 2.8em;
  max-height: 2.8em;  
}

.product-concern {
  font-size: 13px;
  line-height: 1.3;
  height: calc(1.3em * 3); /* 3 lines high */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;  /* show max 3 lines */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-wrap: break-word;
  hyphens: auto;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.price-current {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.price-compare {
  font-size: 16px;
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
}

.price-discount {
  font-size: 12px;
  font-weight: 600;
  color: #28a745;
  background: #e8f5e8;
  padding: 2px 3px;
  border-radius: 4px;
}

/* Add to Cart Button Styles */
.add-to-cart-btn {
  width: 100%;
  background: #B2767E;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  background: #9d6169;
  transform: translateY(-2px);
}

.add-to-cart-btn:active {
  transform: translateY(0);
}

.add-to-cart-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

/* Mobile Slider Navigation Buttons - Fixed Size */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #F6E9E0 !important;
  color: #B2767E !important;
  border: none;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  cursor: pointer;
  font-size: 18px;
  
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background-color 0.3s ease, color 0.3s ease;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.nav-btn:hover {
  background: #e8d4c7 !important;
  color: #9d5a62 !important;
}

.nav-btn:active {
  background: #e8d4c7 !important;
  color: #9d5a62 !important;
  transform: translateY(-50%);
}

.nav-btn:focus {
  outline: none;
  background: #e8d4c7 !important;
  color: #9d5a62 !important;
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
  background: #F6E9E0 !important;
  color: #B2767E !important;
}

.prev-btn { 
  left: 15px; 
}

.next-btn { 
  right: 15px; 
}

/* Desktop Styles */
@media (min-width: 1025px) {
  .hideslider {
    display: none;
  }
  
  .skin-rhythms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    overflow: visible;
  }
  
  .skin-rhythms-item {
    flex: none;
    min-width: auto;
    width: auto;
    padding: 0;
    display: block;
  }
  
  .skin-rhythms-container {
    padding: 0 100px;
    overflow: visible;
  }
  
  .product-card {
    max-width: none;
    margin: 0;
  }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .hideslider {
    display: none;
  }
  
  .skin-rhythms-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    overflow: visible;
    display: grid;
  }
  
  .skin-rhythms-item {
    flex: none;
    min-width: auto;
    width: auto;
    padding: 0;
    display: block;
  }
  
  .skin-rhythms-container {
    padding: 0 50px;
    overflow: visible;
  }
  
  .custom-tabs .tab-btn {
    font-size: 25px;
    padding: 10px 25px;
  }
  
  .product-concern {
    min-height: 45px;
    font-size: 14px;
  }
  
  .product-card {
    max-width: none;
    margin: 0;
  }
}

/* Mobile Styles - Improved Layout */
@media (max-width: 768px) {
  .hideslider {
    display: block !important;
  }
  
  .skin-rhythms-container {
    padding: 0 15px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
  }
  
  .custom-tabs-wrapper {
    padding: 0px;
    margin-bottom: 10px;
  }
  
  .custom-tabs .tab-btn {
    font-size: 25px;
    padding: 10px 20px;
    line-height: 1.2;
  }
  
  .skin-rhythms-grid {
    display: flex;
    overflow-x: hidden;
    gap: 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    width: 100%;
    margin-top: 10px;
    position: relative;
    padding: 0 5px;
  }
  
  .skin-rhythms-item {
    flex: 0 0 calc(100vw - 50px);
    min-width: calc(100vw - 50px);
    max-width: calc(100vw - 50px);
    padding: 0 10px;
    box-sizing: border-box;
    scroll-snap-align: center;
    display: flex;
    margin:10px 0;
    justify-content: center;
  }
  
  .product-card {
    width: 100%;
    max-width: 380px;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    background: white;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .product-image-wrapper {
    height: 280px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
  }
  
  .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
  }
  
  .product-card:hover .product-image {
    transform: scale(1.03);
  }
  
  .product-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 12px 0;
    color: #333;
    min-height: auto;
    max-height: none;
    -webkit-line-clamp: unset;
    display: block;
    overflow: visible;
    text-overflow: initial;
  }
  
  .product-concern {
    font-size: 14px;
    color: #28a745;
    margin: 8px 0 12px 0;
    min-height: auto;
    line-height: 1.4;
  }
  
  .product-price {
    margin: 12px 0;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .price-current {
    font-size: 20px;
    font-weight: 700;
    color: #333;
  }
  
  .price-compare {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
  }
  
  .price-discount {
    font-size: 13px;
    font-weight: 600;
    color: #28a745;
    background: #e8f5e8;
    padding: 4px 8px;
    border-radius: 6px;
  }
  
  .add-to-cart-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 16px;
    background: #B2767E;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .add-to-cart-btn:hover {
    background: #9d6169;
    transform: translateY(-1px);
  }
  
  .reviews-overlay {
    bottom: 12px;
    left: 12px;
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  .badge {
        top: 0;
        
        padding: 6px 12px;
        font-size: 12px;
        font-weight: 600;
        border-radius: 16px;
        width: 110px;
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .skin-rhythms-container {
    padding: 0 10px;
  }
  
  .skin-rhythms-item {
    flex: 0 0 calc(100vw - 40px);
    min-width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    padding: 0 8px;
  }
  
  .product-card {
    max-width: 340px;
    padding: 16px;
  }
  
  .custom-tabs .tab-btn {
    font-size: 25px;
    padding: 8px 16px;
  }
  
  .product-image-wrapper {
    height: 260px;
    margin-bottom: 14px;
  }
  
  .product-title {
    font-size: 16px;
  }
  
  .product-concern {
    font-size: 13px;
    margin: 6px 0 10px 0;
  }
  
  .price-current {
    font-size: 18px;
  }
  
  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .prev-btn { 
    left: 10px; 
  }
  
  .next-btn { 
    right: 10px; 
  }
}

/* Smooth scrolling animation for mobile slider */
@media (max-width: 768px) {
  .skin-rhythms-grid {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}