/** Shopify CDN: Minification failed

Line 222:14 Expected identifier but found whitespace
Line 222:21 Unexpected ";"

**/
/* Product Gallery Section Styles */
.section-product-gallery {
  padding: 2rem 0;
}

/* Section Header Styles */
.section-product-gallery .section-header {
  margin-bottom: 3rem;
}

.section-product-gallery .section-header.text-center {
  text-align: center;
}

.section-product-gallery .section-subheading {
  margin-top: 1rem;
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
}

.section-product-gallery .product-gallery {
  display: grid;
  gap: 2rem;
}

.section-product-gallery .product-gallery-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: scale(1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.section-product-gallery .product-gallery-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.section-product-gallery .product-image-container {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.section-product-gallery .product-image-container img,
.section-product-gallery .product-image-container .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Fix for image-style snippet padding issue */
.section-product-gallery .product-image-container .image__style {
  padding-top: 0 !important;
  height: 100% !important;
  position: relative !important;
}

.section-product-gallery .product-image-container .image__style img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Ensure proper image display without extra spacing */
.section-product-gallery .product-image-container a {
  display: block;
  width: 100%;
  height: 100%;
}

.section-product-gallery .product-image-container a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-product-gallery .product-gallery-card:hover .product-image-container img {
  transform: scale(1.1);
}

.section-product-gallery .product-favorite {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.section-product-gallery .favorite-btn {
  
}

/* Subscription Design Styles */

.section-product-gallery .subscription-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.section-product-gallery .subscription-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  margin: 0;
}

.section-product-gallery .subscription-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #ec4899;
}

.section-product-gallery .subscription-description {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.section-product-gallery .subscription-frequency {
  background: #fdf2f8;
  border: 1px solid #fce7f3;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-product-gallery .frequency-text {
  font-size: 0.875rem;
  color: #be185d;
  font-weight: 500;
  margin: 0;
}

.section-product-gallery .subscription-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-product-gallery .subscription-price {
  font-size: 1.875rem;
  font-weight: bold;
  color: #ec4899;
}

.section-product-gallery .subscription-btn {
  background: #ec4899;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  display: inline-block;
}

.section-product-gallery .subscription-btn:hover {
  background: #be185d;
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Ensure subscription design maintains the same card structure */
.section-product-gallery .product-gallery-card.subscription-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: scale(1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.section-product-gallery .product-gallery-card.subscription-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments for subscription design */
@media (max-width: 768px) {
  .section-product-gallery .subscription-content {
    padding: 1.5rem;
  }
  
  .section-product-gallery .subscription-title {
    font-size: 1.25rem;
  }
  
  .section-product-gallery .subscription-price {
    font-size: 1.5rem;
  }
  
  .section-product-gallery .subscription-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.section-product-gallery .favorite-btn:hover {
  background: #ec4899;
  color: white;
}

.section-product-gallery .heart-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #ec4899;
  transition: color 0.3s ease;
}

.section-product-gallery .favorite-btn:hover .heart-icon {
  color: white;
}

.section-product-gallery .product-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section-product-gallery .product-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.section-product-gallery .product-favorite-header {
  margin-left: 1rem;
  flex-shrink: 0;
}

.section-product-gallery .favorite-btn-header {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-product-gallery .favorite-btn-header:hover {
  background: rgba(236, 72, 153, 0.1);
  transform: scale(1.1);
}

.section-product-gallery .heart-icon-header {
  width: 1.25rem;
  height: 1.25rem;
  color: #6b7280;
  transition: all 0.3s ease;
}

.section-product-gallery .favorite-btn-header:hover .heart-icon-header {
  color: #ec4899;
}

.section-product-gallery .favorite-btn-header.active .heart-icon-header {
  color: #ec4899;
  fill: #ec4899;
}

.section-product-gallery .product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.2;
}

.section-product-gallery .product-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.section-product-gallery .product-title a:hover {
  color: #ec4899;
}

.section-product-gallery .product-description {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex: 1;
}

.section-product-gallery .product-variants {
  margin-bottom: 1.5rem;
}

.section-product-gallery .variant-label {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.section-product-gallery .variant-icon {
  width: 1rem;
  height: 1rem;
  color: #ec4899;
  margin-right: 0.5rem;
}

.section-product-gallery .variant-label span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.section-product-gallery .variant-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.section-product-gallery .color-option,
.section-product-gallery .variant-option {
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 2px solid #e5e7eb;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.section-product-gallery .color-option:hover,
.section-product-gallery .variant-option:hover {
  border-color: #f9a8d4;
}

.section-product-gallery .color-option[data-selected="true"],
.section-product-gallery .variant-option[data-selected="true"] {
  border-color: #ec4899;
  background: #fdf2f8;
}

.section-product-gallery .color-option.active {
  border-color: #ec4899;
  background: #fdf2f8;
}

.section-product-gallery .color-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  border: 1px solid #d1d5db;
}

/* Color mapping for common colors */
.section-product-gallery .color-dot.color-gold {
  background-color: #ffd700 !important;
}

.section-product-gallery .color-dot.color-multicolor {
  background: linear-gradient(45deg, #ff0000, #ff8000, #ffff00, #00ff00, #0080ff, #8000ff) !important;
}

.section-product-gallery .color-dot.color-red {
  background-color: #dc2626 !important;
}

.section-product-gallery .color-dot.color-yellow {
  background-color: #eab308 !important;
}

.section-product-gallery .color-dot.color-pink {
  background-color: #ec4899 !important;
}

.section-product-gallery .color-dot.color-white {
  background-color: #ffffff !important;
  border: 1px solid #d1d5db !important;
}

.section-product-gallery .color-dot.color-purple {
  background-color: #7c3aed !important;
}

.section-product-gallery .color-dot.color-orange {
  background-color: #ea580c !important;
}

.section-product-gallery .color-dot.color-blue {
  background-color: #3b82f6 !important;
}

.section-product-gallery .color-dot.color-green {
  background-color: #22c55e !important;
}

.section-product-gallery .color-dot.color-black {
  background-color: #000000 !important;
}

.section-product-gallery .color-dot.color-rose-gold {
  background-color: #e8b4b8 !important;
}

.section-product-gallery .color-dot.color-rosegold {
  background-color: #e8b4b8 !important;
}

.section-product-gallery .color-dot.color-silver {
  background-color: #c0c0c0 !important;
}

.section-product-gallery .color-dot.color-grey {
  background-color: #808080 !important;
}

.section-product-gallery .color-dot.color-gray {
  background-color: #808080 !important;
}

.section-product-gallery .color-dot.color-brown {
  background-color: #8b4513 !important;
}

.section-product-gallery .color-dot.color-navy {
  background-color: #000080 !important;
}

.section-product-gallery .color-dot.color-teal {
  background-color: #008080 !important;
}

.section-product-gallery .color-dot.color-maroon {
  background-color: #800000 !important;
}

/* Special handling for multicolor gradient */
.section-product-gallery .color-dot[style*="linear-gradient"] {
  background: linear-gradient(45deg, #ff0000, #ff8000, #ffff00, #00ff00, #0080ff, #8000ff) !important;
  border: 1px solid #d1d5db;
}

.section-product-gallery .variant-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.section-product-gallery .variant-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.section-product-gallery .variant-select {
  padding: 0.25rem 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  background: white;
}

.section-product-gallery .product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.section-product-gallery .product-price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.section-product-gallery .price-current {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ec4899;
}

.section-product-gallery .price-compare {
  font-size: 1rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.section-product-gallery .product-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-block;
}

.section-product-gallery .product-btn.btn-primary {
  background: #ec4899;
  color: white;
}

.section-product-gallery .product-btn.btn-primary:hover {
  background: #be185d;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

.section-product-gallery .product-btn.btn-secondary {
  background: #6b7280;
  color: white;
}

.section-product-gallery .product-btn.btn-secondary:hover {
  background: #4b5563;
  transform: scale(1.05);
}

.section-product-gallery .product-btn.btn-outline {
  background: transparent;
  color: #ec4899;
  border: 2px solid #ec4899;
}

.section-product-gallery .product-btn.btn-outline:hover {
  background: #ec4899;
  color: white;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-product-gallery .product-content {
    padding: 1.5rem;
  }
  
  .section-product-gallery .product-title {
    font-size: 1.25rem;
  }
  
  .section-product-gallery .color-variants {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-product-gallery .product-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .section-product-gallery .product-btn {
    width: 100%;
    text-align: center;
  }
}

/* Slider specific styles */
.section-product-gallery .slider-container .product-gallery-card {
  margin: 0 0.5rem;
}

.section-product-gallery .slider-container .product-gallery-card:hover {
  transform: scale(1.02);
}

/* Grid layout adjustments */
.section-product-gallery .product-gallery.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

/* Override Bootstrap grid classes for product cards */
.section-product-gallery .product-card {
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
}

/* Ensure product cards take full available width */
.section-product-gallery .slider-item.product-card {
  width: 100%;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-product-gallery .product-gallery.row {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .section-product-gallery .product-gallery.row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Slider specific overrides */
.section-product-gallery .slider-container .slider-item.product-card {
  width: 100%;
  margin: 0 0.5rem;
}

/* Override any Bootstrap column classes that might be applied */
.section-product-gallery .product-card[class*="col-"] {
  width: 100% !important;
  flex: none !important;
  max-width: none !important;
}

/* Ensure proper display for product cards */
.section-product-gallery .product-gallery-card {
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

/* Grid mode specific styles */
.section-product-gallery .product-gallery .product-card {
  display: block;
  width: 100%;
}

/* Slider mode specific styles */
.section-product-gallery .slider-container .product-card {
  display: block;
  width: 100%;
  flex-shrink: 0;
}

 .section-product-gallery .section-header .heading{
  font-size: 3.5rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section-product-gallery .section-header .heading{
    font-size: 2.5rem;
  }
}