/**
 * HOMEPAGE V2 - Fast Growing Trees Style
 * Beautiful product cards, FAQ section, About section
 */

/* ===================================
   HERO SECTION V2 - Minimal & Clean
   =================================== */
.hero-section-v2 {
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  padding: 6rem 0 4rem;
  text-align: center;
}

.hero-content-v2 {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title-v2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle-v2 {
  font-size: 1.375rem;
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.0625rem;
}

/* ===================================
   TRUST BADGES BAR
   =================================== */
.trust-badges-bar {
  background-color: var(--color-white);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-badge-item svg {
  flex-shrink: 0;
  color: var(--color-primary);
}

.trust-badge-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.trust-badge-text span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ===================================
   BEST SELLERS V2 - FGT Style Product Cards
   =================================== */
.best-sellers-v2 {
  padding: 5rem 0;
  background-color: var(--color-background);
}

.section-header-v2 {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header-v2 h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.section-header-v2 p {
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.products-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Product Card V2 - Fast Growing Trees Style */
.product-card-v2 {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--color-border);
  padding: 1rem;
}

.product-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(45, 95, 63, 0.15);
  border-color: var(--color-primary-light);
}

/* Best Seller Badge */
.bestseller-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.bestseller-badge svg {
  width: 14px;
  height: 14px;
}

/* Sale Badge V2 - Circular */
.sale-badge-v2 {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: #DC2626;
  color: var(--color-white);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 9;
  line-height: 1;
}

.promo-badge-v2 {
  position: absolute;
  top: 5rem;
  left: 1.5rem;
  background-color: #D97706;
  color: var(--color-white);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 9;
}

/* Product Image V2 */
.product-image-v2 {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  background-color: var(--color-background-alt);
}

.product-image-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-v2:hover .product-image-v2 img {
  transform: scale(1.08);
}

/* Growing Zones */
.growing-zones {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* Product Title V2 */
.product-title-v2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.product-title-v2 a {
  color: var(--color-text);
  transition: color 0.2s;
}

.product-title-v2 a:hover {
  color: var(--color-primary);
}

/* Product Rating V2 */
.product-rating-v2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-rating-v2 .stars {
  display: flex;
  gap: 2px;
}

.product-rating-v2 .review-count {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Product Price V2 */
.product-price-v2 {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
}

.price-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
}

.price-amount del {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-right: 0.5rem;
}

.price-amount ins {
  text-decoration: none;
  color: var(--color-accent);
}

/* Promo Text V2 */
.promo-text-v2 {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.875rem;
}

/* ===================================
   ABOUT COMPANY SECTION
   =================================== */
.about-company-section {
  padding: 6rem 0;
  background-color: var(--color-white);
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ===================================
   HERO SECTION V3 - Enhanced Professional Design
   =================================== */
.hero-section-v3 {
  position: relative;
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 50%, #BBF7D0 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2322C55E0' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-section-v3 .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: #059669;
  font-weight: 500;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.hero-title-v3 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  color: #1F2937;
  margin-bottom: 1.5rem;
}

.hero-subtitle-v3 {
  font-size: 1.375rem;
  line-height: 1.6;
  color: #4B5563;
  margin-bottom: 2.5rem;
}

.hero-buttons-v3 {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-cta-primary {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.hero-cta-secondary {
  background: transparent;
  color: #059669;
  border: 2px solid #059669;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
  background: #059669;
  color: white;
  transform: translateY(-2px);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9375rem;
  color: #6B7280;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.social-proof-divider {
  color: #D1D5DB;
}

.hero-image-v3 {
  position: relative;
}

.hero-image-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.hero-main-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.hero-image-badges {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.image-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  font-size: 0.875rem;
  color: #1F2937;
}

.floating-badge-1 {
  top: 20px;
  right: -20px;
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  animation: float 3s ease-in-out infinite;
}

.floating-badge-2 {
  bottom: 40px;
  left: -10px;
  background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
  animation: float 3s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section-v3 .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-buttons-v3 {
    justify-content: center;
  }

  .hero-social-proof {
    justify-content: center;
  }

  .floating-badge-1,
  .floating-badge-2 {
    position: static;
    display: inline-flex;
    margin: 0.5rem;
    animation: none;
  }

  .hero-image-badges {
    position: static;
    text-align: center;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-section-v3 {
    padding: 6rem 0 4rem;
  }

  .hero-title-v3 {
    font-size: 2.5rem;
  }

  .hero-subtitle-v3 {
    font-size: 1.125rem;
  }

  .hero-buttons-v3 {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-social-proof {
    flex-direction: column;
    gap: 0.75rem;
  }

  .social-proof-divider {
    display: none;
  }
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.about-text .lead {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.about-features li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-features svg {
  flex-shrink: 0;
  color: var(--color-success);
  margin-top: 0.25rem;
}

/* ===================================
   PRODUCT CARD V3 - Professional E-commerce Design
   =================================== */
.product-card-v3 {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.product-card-v3:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.product-image-container-v3 {
  position: relative;
  overflow: hidden;
  background: #F9FAFB;
}

.product-image-link-v3 img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card-v3:hover .product-image-link-v3 img {
  transform: scale(1.05);
}

/* Product Actions Overlay */
.product-actions-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.product-card-v3:hover .product-actions-overlay {
  opacity: 1;
  pointer-events: all;
}

.action-btn {
  background: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.action-btn:hover {
  background: #10B981;
  color: white;
  transform: scale(1.1);
}

.action-btn span {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #1F2937;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}

.action-btn:hover span {
  bottom: -35px;
  opacity: 1;
}

/* Product Badges */
.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.bestseller-badge {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  color: #92400E;
}

.sale-badge {
  background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
  color: #991B1B;
}

.promo-badge {
  background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
  color: #1E40AF;
}

/* Product Info */
.product-info-v3 {
  padding: 1.5rem;
}

.growing-zones-v3 {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6B7280;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.product-title-v3 {
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
}

.product-title-v3 a {
  color: #1F2937;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.product-title-v3 a:hover {
  color: #10B981;
}

/* Rating Section */
.product-rating-v3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.rating-stars-v3 {
  display: flex;
  gap: 2px;
}

.rating-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6B7280;
  font-size: 0.875rem;
}

.rating-number {
  font-weight: 600;
  color: #1F2937;
}

.review-count-v3 {
  color: #9CA3AF;
}

/* Product Footer - Price and Add to Cart */
.product-footer-v3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.price-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-current {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1F2937;
}

.price-regular {
  font-size: 1rem;
  color: #9CA3AF;
  text-decoration: line-through;
}

.price-sale {
  font-size: 1.5rem;
  font-weight: 700;
  color: #DC2626;
}

.btn-add-to-cart {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-add-to-cart:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-out-of-stock {
  background: #F3F4F6;
  color: #9CA3AF;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  cursor: not-allowed;
}

/* Stock Status */
.stock-status {
  margin-top: 0.75rem;
}

.in-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #10B981;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-image-link-v3 img {
    height: 220px;
  }

  .product-actions-overlay {
    opacity: 1;
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 0.75rem;
    pointer-events: all;
  }

  .action-btn {
    width: 32px;
    height: 32px;
  }

  .action-btn span {
    display: none;
  }

  .product-title-v3 a {
    font-size: 1rem;
  }

  .price-current,
  .price-sale {
    font-size: 1.25rem;
  }

  .btn-add-to-cart {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

/* ===================================
   ECOMMERCE UI COMPONENTS
   =================================== */

/* Notifications */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transform: translateX(400px);
  transition: all 0.3s ease;
  max-width: 400px;
}

.notification.show {
  transform: translateX(0);
}

.notification-success {
  background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
  color: #065F46;
  border-left: 4px solid #10B981;
}

.notification-error {
  background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
  color: #991B1B;
  border-left: 4px solid #EF4444;
}

.notification-info {
  background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
  color: #1E40AF;
  border-left: 4px solid #3B82F6;
}

/* Quick View Modal */
.quick-view-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.quick-view-modal.active {
  opacity: 1;
  visibility: visible;
}

.quick-view-content {
  background: white;
  border-radius: 16px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.quick-view-modal.active .quick-view-content {
  transform: scale(1);
}

.quick-view-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #6B7280;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  z-index: 1;
}

.quick-view-close:hover {
  background: #F3F4F6;
  color: #1F2937;
}

.quick-view-loading {
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #E5E7EB;
  border-top: 4px solid #10B981;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.quick-view-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem;
}

.quick-view-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.quick-view-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1F2937;
}

.quick-view-info .rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.quick-view-info .stars {
  color: #FFB800;
}

.quick-view-info .price {
  font-size: 2rem;
  font-weight: 700;
  color: #10B981;
  margin-bottom: 1rem;
}

.quick-view-info .description {
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.view-full-details {
  display: inline-block;
  margin-top: 1rem;
  color: #10B981;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.view-full-details:hover {
  color: #059669;
}

/* Body scroll lock when quick view is open */
body.quick-view-open {
  overflow: hidden;
}

/* Loading state for buttons */
.btn.loading {
  opacity: 0.7;
  cursor: wait;
}

.btn.added {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
  color: white !important;
}

.btn.added svg {
  animation: checkmark 0.5s ease;
}

@keyframes checkmark {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Wishlist button active state */
.wishlist-btn-v3.active {
  background: #EF4444 !important;
  color: white !important;
}

.wishlist-btn-v3.active svg {
  fill: currentColor;
}

.about-features strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.about-features p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.6;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
  padding: 6rem 0;
  background-color: var(--color-background);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.faq-item {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all 0.2s;
}

.faq-item:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.faq-question svg {
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 0.125rem;
}

.faq-answer {
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

.faq-answer a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
}

/* ===================================
   NEWSLETTER SECTION V2
   =================================== */
.newsletter-section-v2 {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: var(--color-white);
}

.newsletter-content-v2 {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content-v2 h2 {
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.newsletter-content-v2 > p:first-of-type {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.newsletter-form-v2 {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.newsletter-form-v2 input[type="email"] {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  transition: all 0.2s;
}

.newsletter-form-v2 input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form-v2 input[type="email"]:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  outline: none;
}

.newsletter-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.newsletter-privacy svg {
  flex-shrink: 0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .products-grid-v2 {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-title-v2 {
    font-size: 2.5rem;
  }

  .hero-subtitle-v2 {
    font-size: 1.125rem;
  }

  .trust-badges-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .products-grid-v2 {
    grid-template-columns: 1fr;
  }

  .section-header-v2 h2 {
    font-size: 2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form-v2 {
    flex-direction: column;
  }

  .about-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title-v2 {
    font-size: 2rem;
  }

  .bestseller-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }

  .product-title-v2 {
    font-size: 1rem;
  }
}
