/** Shopify CDN: Minification failed

Line 417:13 Expected ":"

**/
/* Anvibha Custom Styles */

/* Color Variables */
:root {
  --anvibha-emerald-50: #ecfdf5;
  --anvibha-emerald-100: #d1fae5;
  --anvibha-emerald-600: #059669;
  --anvibha-emerald-700: #047857;
  --anvibha-emerald-800: #065f46;
  --anvibha-amber-50: #fffbeb;
  --anvibha-amber-100: #fef3c7;
  --anvibha-amber-200: #fde68a;
  --anvibha-rose-600: #e11d48;
  --anvibha-rose-700: #be123c;
  --anvibha-gray-50: #f9fafb;
  --anvibha-gray-600: #4b5563;
  --anvibha-gray-700: #374151;
  --anvibha-gray-900: #111827;
  --anvibha-yellow-400: #fbbf24;
  --anvibha-yellow-500: #f59e0b;
}

/* Container */
.anvibha-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.anvibha-container-narrow {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Section Headers */
.anvibha-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.anvibha-section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--anvibha-gray-900);
  margin-bottom: 0.75rem;
}

.anvibha-section-subtitle {
  color: var(--anvibha-gray-600);
  font-size: 1rem;
}

/* Hero Section */
.anvibha-hero {
  background: linear-gradient(to bottom right, var(--anvibha-emerald-50), var(--anvibha-amber-50));
  padding: 4rem 1rem;
}

.anvibha-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .anvibha-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.anvibha-trust-badge {
  display: inline-block;
  background-color: var(--anvibha-emerald-100);
  color: var(--anvibha-emerald-800);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.anvibha-hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--anvibha-gray-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .anvibha-hero-title {
    font-size: 3rem;
  }
}

.anvibha-hero-subtitle {
  font-size: 1.25rem;
  color: var(--anvibha-gray-600);
  margin-bottom: 1.5rem;
}

.anvibha-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .anvibha-hero-buttons {
    flex-direction: row;
  }
}

.anvibha-btn {
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.anvibha-btn-primary {
  background-color: var(--anvibha-rose-600);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.anvibha-btn-primary:hover {
  background-color: var(--anvibha-rose-700);
  color: white;
}

.anvibha-btn-secondary {
  border: 2px solid var(--anvibha-emerald-700);
  color: var(--anvibha-emerald-700);
  background-color: transparent;
}

.anvibha-btn-secondary:hover {
  background-color: var(--anvibha-emerald-50);
  color: var(--anvibha-emerald-700);
}

.anvibha-btn-light {
  background-color: white;
  color: var(--anvibha-emerald-800);
}

.anvibha-btn-light:hover {
  background-color: var(--anvibha-emerald-50);
  color: var(--anvibha-emerald-800);
}

.anvibha-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--anvibha-gray-700);
}

.anvibha-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.anvibha-icon {
  flex-shrink: 0;
}

.anvibha-hero-visual {
  background: linear-gradient(to bottom right, var(--anvibha-emerald-200), var(--anvibha-amber-200));
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.anvibha-hero-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.anvibha-icon-large {
  font-size: 3.75rem;
  margin-bottom: 1rem;
}

/* Scrolling Reviews */
.anvibha-scrolling-reviews {
  background-color: white;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
}

.anvibha-review-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.anvibha-review-item {
  display: none;
  align-items: center;
  gap: 1rem;
  animation: fadeIn 0.5s;
}

.anvibha-review-item.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.anvibha-review-stars-inline {
  display: flex;
  gap: 0.25rem;
}

.anvibha-star-small {
  color: var(--anvibha-yellow-500);
}

.anvibha-review-text-inline {
  color: var(--anvibha-gray-700);
  margin: 0;
}

.anvibha-review-author-inline {
  font-weight: 600;
}

/* Shop by Concern */
.anvibha-concerns-section {
  padding: 4rem 1rem;
  background-color: white;
}

.anvibha-concerns-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .anvibha-concerns-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .anvibha-concerns-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.anvibha-concern-card {
  background-color: var(--anvibha-amber-50);
  border-radius: 0.75rem;
  padding: 1.5rem;
  width: 100%;
  max-width: 280px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.anvibha-concern-card:hover {
  background-color: var(--anvibha-emerald-50);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.anvibha-concern-card a {
  text-decoration: none;
  color: inherit;
}

.anvibha-concern-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  transition: transform 0.3s;
}

.anvibha-concern-card:hover .anvibha-concern-icon {
  transform: scale(1.1);
}

.anvibha-concern-title {
  font-weight: 600;
  color: var(--anvibha-gray-900);
  margin-bottom: 0.25rem;
}

.anvibha-concern-desc {
  font-size: 0.875rem;
  color: var(--anvibha-gray-600);
}

/* Products Section */
.anvibha-products-section {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, white, var(--anvibha-amber-50));
}

.anvibha-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .anvibha-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .anvibha-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.anvibha-product-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.anvibha-product-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.anvibha-product-image {
  position: relative;
  background: linear-gradient(to bottom right, var(--anvibha-emerald-100), var(--anvibha-amber-100));
  padding: 1.5rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anvibha-product-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.anvibha-product-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anvibha-product-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anvibha-gallery-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.anvibha-gallery-img,
.anvibha-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.anvibha-gallery-img.active,
.anvibha-product-img {
  opacity: 1;
  position: relative;
}

.anvibha-gallery-arrow {
  position: absolute;
  top: 50%;\n  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: var(--anvibha-emerald-800);
  pointer-events: auto;
}

.anvibha-gallery-arrow:hover {
  background-color: var(--anvibha-emerald-800);
  color: white;
}

.anvibha-gallery-prev {
  left: 0.5rem;
}

.anvibha-gallery-next {
  right: 0.5rem;
}

.anvibha-gallery-dots {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 20;
  pointer-events: none;
}

.anvibha-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.anvibha-gallery-dot.active {
  background-color: white;
  width: 24px;
  border-radius: 4px;
}

.anvibha-gallery-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.anvibha-product-placeholder {
  font-size: 4.5rem;
  text-align: center;
}

.anvibha-product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: var(--anvibha-rose-600);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.anvibha-product-info {
  padding: 1.25rem;
}

.anvibha-product-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--anvibha-gray-900);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.anvibha-product-title a {
  text-decoration: none;
  color: inherit;
}

.anvibha-product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  min-height: 20px;
}

.anvibha-rating-placeholder {
  height: 20px;
}

.anvibha-stars {
  display: flex;
  gap: 0.125rem;
}

.anvibha-star {
  color: var(--anvibha-yellow-500);
}

.anvibha-rating-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--anvibha-gray-700);
}

.anvibha-product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.anvibha-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--anvibha-gray-900);
}

.anvibha-compare-price {
  font-size: 0.875rem;
  color: var(--anvibha-gray-600);
  text-decoration: line-through;
}

.anvibha-discount-badge {
  font-size: 0.75rem;
  background-color: #dcfce7;
  color: #166534;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
}

.anvibha-product-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.anvibha-product-benefits li {
  font-size: 0.875rem;
  color: var(--anvibha-gray-600);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.anvibha-check {
  color: var(--anvibha-emerald-600);
  flex-shrink: 0;
}

.anvibha-product-buttons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.anvibha-cart-form {
  flex: 1;
}

.anvibha-add-to-cart {
  width: 100%;
  background-color: var(--anvibha-rose-600);
  color: white;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.anvibha-add-to-cart:hover {
  background-color: var(--anvibha-rose-700);
}

.anvibha-add-to-cart:disabled {
  background-color: var(--anvibha-gray-600);
  cursor: not-allowed;
}

.anvibha-quick-buy {
  background-color: var(--anvibha-emerald-800);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: 2px solid var(--anvibha-emerald-800);
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.anvibha-quick-buy:hover {
  background-color: white;
  color: var(--anvibha-emerald-800);
  border-color: var(--anvibha-emerald-800);
}

.anvibha-quick-buy:hover svg {
  stroke: var(--anvibha-emerald-800);
}

.anvibha-social-proof {
  font-size: 0.75rem;
  text-align: center;
  color: var(--anvibha-gray-600);
  margin-top: 0.5rem;
}

/* Testimonials */
.anvibha-testimonials-section {
  padding: 4rem 1rem;
  background-color: var(--anvibha-emerald-800);
  color: white;
}

.anvibha-testimonials-section .anvibha-section-title {
  color: white;
}

.anvibha-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .anvibha-testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.anvibha-testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.anvibha-testimonial-stars {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.anvibha-testimonial-stars .anvibha-star {
  color: var(--anvibha-yellow-400);
}

.anvibha-testimonial-text {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.anvibha-testimonial-author {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.anvibha-testimonial-location {
  font-size: 0.875rem;
  color: var(--anvibha-emerald-100);
}

.anvibha-section-cta {
  text-align: center;
}

/* How It Works */
.anvibha-how-it-works {
  padding: 4rem 1rem;
  background-color: white;
}

.anvibha-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .anvibha-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.anvibha-step-card {
  text-align: center;
}

.anvibha-step-icon {
  width: 5rem;
  height: 5rem;
  background-color: var(--anvibha-emerald-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
  margin: 0 auto 1rem;
}

.anvibha-step-card:nth-child(2) .anvibha-step-icon {
  background-color: var(--anvibha-amber-100);
}

.anvibha-step-card:nth-child(3) .anvibha-step-icon {
  background-color: #ffe4e6;
}

.anvibha-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.anvibha-step-description {
  color: var(--anvibha-gray-600);
}

/* Why Choose Us */
.anvibha-why-choose {
  padding: 4rem 1rem;
  background-color: var(--anvibha-amber-50);
}

.anvibha-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .anvibha-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.anvibha-feature-card {
  text-align: center;
}

.anvibha-feature-icon-round {
  width: 4rem;
  height: 4rem;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.anvibha-feature-title {
  font-weight: 600;
  color: var(--anvibha-gray-900);
  margin-bottom: 0.5rem;
}

.anvibha-feature-description {
  font-size: 0.875rem;
  color: var(--anvibha-gray-600);
}

/* Newsletter */
.anvibha-newsletter {
  padding: 4rem 1rem;
  background-color: var(--anvibha-emerald-800);
  color: white;
}

.anvibha-newsletter-content {
  text-align: center;
}

.anvibha-newsletter-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.anvibha-newsletter-subtitle {
  color: var(--anvibha-emerald-100);
  margin-bottom: 2rem;
}

.anvibha-newsletter-form {
  max-width: 28rem;
  margin: 0 auto;
}

.anvibha-newsletter-input-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .anvibha-newsletter-input-group {
    flex-direction: row;
  }
}

.anvibha-newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: none;
  color: var(--anvibha-gray-900);
  font-size: 1rem;
}

.anvibha-newsletter-button {
  background-color: var(--anvibha-rose-600);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.anvibha-newsletter-button:hover {
  background-color: var(--anvibha-rose-700);
}

.anvibha-form-success {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

/* Floating WhatsApp Button */
.anvibha-whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
}

.anvibha-whatsapp-button {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
}

.anvibha-whatsapp-button:hover {
  background-color: #128c7e;
}

/* Responsive utilities */
@media (max-width: 640px) {
  .anvibha-section-title {
    font-size: 1.5rem;
  }
  
  .anvibha-hero-title {
    font-size: 1.875rem;
  }
}
