﻿:root {
  --primary-green: #2E7D32;
  --secondary-green: #4CAF50;
  --light-green: #81C784;
  --dark-green: #1B5E20;
  --black: #212121;
  --white: #FFFFFF;
  --light-gray: #F7F8F8;
  --border-color: #E0E0E0;
  --text-primary: #212121;
  --text-secondary: #757575;
  --success-green: #2E7D32;
  --danger-red: #D32F2F;
}

* {
  font-family: 'Amazon Ember', 'Roboto', sans-serif;
}

body {
  background-color: #FFFFFF;
  color: var(--text-primary);
  line-height: 1.5;
}



.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--text-secondary);
  font-weight: bold;
}

.breadcrumb-item a {
  color: var(--primary-blue);
  text-decoration: none;
}

  .breadcrumb-item a:hover {
    text-decoration: underline;
  }

.product-gallery {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  position: sticky;
  top: 20px;
}

.main-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
  transition: all 0.3s ease;
  border: none;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

  .main-image-container:hover {
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.3);
    transform: translateY(-4px);
  }

.main-image {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.3s ease;
  object-fit: contain;
}

.main-image-container:hover .main-image {
  transform: scale(1.05);
}

.thumbnail-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.thumbnail-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid #e8e8e8;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

  .thumbnail-item:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    transform: translateY(-2px);
  }

  .thumbnail-item.active {
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
  }

  .thumbnail-item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: all 0.3s ease;
    object-fit: contain;
  }

  .thumbnail-item:hover img {
    transform: scale(1.1);
  }

.product-info-section {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.product-name h1 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.brand-name {
  color: var(--primary-blue);
  font-size: 0.875rem;
  text-decoration: none;
  font-weight: 500;
}

  .brand-name:hover {
    text-decoration: underline;
  }

.rating-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.stars {
  color: var(--primary-orange);
  font-size: 1rem;
}

.rating-text {
  color: var(--primary-blue);
  font-size: 0.875rem;
  text-decoration: none;
}

  .rating-text:hover {
    text-decoration: underline;
  }

.rating-count {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.price-section {
  margin: 1rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.price-current {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--danger-red);
}

.price-original {
  font-size: 1rem;
  color: var(--text-secondary);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.price-save {
  color: var(--danger-red);
  font-size: 0.875rem;
  font-weight: 500;
}

.availability-section {
  margin: 1rem 0;
}

.in-stock {
  color: var(--success-green);
  font-weight: 500;
}

.out-of-stock {
  color: var(--danger-red);
  font-weight: 500;
}

.product-features {
  margin: 1rem 0;
}

  .product-features ul {
    list-style: none;
    padding: 0;
  }

  .product-features li {
    padding: 0.25rem 0;
    font-size: 0.875rem;
    color: var(--text-primary);
  }

    .product-features li:before {
      content: "✓";
      color: var(--success-green);
      margin-right: 0.5rem;
      font-weight: bold;
    }

.quantity-section {
  margin: 1rem 0;
}

.quantity-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.quantity-selector {
  width: 80px;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  text-align: center;
}

/* Primary Button Style - Add to Cart */
.btn-primary-action,
.btn-add-to-cart,
.add-to-cart-button {
  background: linear-gradient(to bottom, var(--primary-green), var(--dark-green));
  border: 1px solid var(--dark-green);
  color: var(--white) !important;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 0.875rem;
  width: 100%;
  margin-bottom: 0.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

  .btn-primary-action:hover,
  .btn-add-to-cart:hover,
  .add-to-cart-button:hover {
    background: linear-gradient(to bottom, var(--secondary-green), var(--primary-green));
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.4);
  }

/* Secondary Button Style - Buy Now */
.btn-secondary-action,
.btn-buy-now {
  background: linear-gradient(to bottom, var(--black), #424242);
  border: 1px solid var(--black);
  color: var(--white) !important;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 0.875rem;
  width: 100%;
  margin-bottom: 0.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(33, 33, 33, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

  .btn-secondary-action:hover,
  .btn-buy-now:hover {
    background: linear-gradient(to bottom, #424242, #616161);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 33, 33, 0.4);
  }

/* Tertiary Button Style - Wishlist, Compare, Share */
.btn-tertiary-action,
.btn-wishlist,
.btn-compare,
.btn-share,
.btn-email-friend,
.compare-products-button,
.add-to-wishlist-button,
.email-friend-button,
.share-button {
  background: linear-gradient(to bottom, var(--white), #F5F5F5);
  border: 2px solid var(--primary-green);
  color: var(--primary-green) !important;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 0.875rem;
  width: 100%;
  margin-bottom: 0.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

  .btn-tertiary-action:hover,
  .btn-wishlist:hover,
  .btn-compare:hover,
  .btn-share:hover,
  .btn-email-friend:hover,
  .compare-products-button:hover,
  .add-to-wishlist-button:hover,
  .email-friend-button:hover,
  .share-button:hover {
    background: linear-gradient(to bottom, var(--light-green), var(--secondary-green));
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
    border-color: var(--secondary-green);
  }

.shipping-info {
  background: var(--light-gray);
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
}

  .shipping-info h6 {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
  }

  .shipping-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0.25rem 0;
  }

.seller-info {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-top: 1rem;
}

  .seller-info h6 {
    font-weight: 500;
    margin-bottom: 0.5rem;
  }

  .seller-info a {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.875rem;
  }

    .seller-info a:hover {
      text-decoration: underline;
    }

.product-description {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

  .product-description h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }

.tab-content {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.nav-tabs {
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 1rem;
}

  .nav-tabs .nav-link {
    color: var(--text-primary);
    border: none;
    padding: 0.75rem 1rem;
    font-weight: 500;
    border-bottom: 2px solid transparent;
  }

    .nav-tabs .nav-link.active {
      color: var(--primary-orange);
      border-bottom-color: var(--primary-orange);
      background: none;
    }

    .nav-tabs .nav-link:hover {
      color: var(--primary-orange);
      border-bottom-color: var(--primary-orange);
    }

.security-badges {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.75rem;
}

  .security-badge i {
    color: var(--success-green);
  }

/* Center section buttons - smaller, side by side */
.col-lg-4 .btn-tertiary-action,
.col-lg-4 .btn-wishlist,
.col-lg-4 .btn-compare,
.col-lg-4 .btn-share,
.col-lg-4 .btn-email-friend,
.col-lg-4 .compare-products-button,
.col-lg-4 .add-to-wishlist-button,
.col-lg-4 .email-friend-button,
.col-lg-4 .share-button {
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  width: 100%;
  margin-bottom: 0.5rem;
}

/* Override any existing button styles */
.btn,
button,
input[type="submit"],
input[type="button"] {
  border: none;
  outline: none;
  box-sizing: border-box;
}

/* Ensure all form controls and buttons have consistent styling */
.overview-buttons .btn,
.overview-buttons button,
.overview-buttons input[type="submit"],
.overview-buttons input[type="button"] {
  background: linear-gradient(to bottom, #FFFFFF, #F8F8F8);
  border: 1px solid var(--border-color);
  color: var(--text-primary) !important;
  font-weight: 500;
  padding: 0.625rem 1rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  min-width: 120px;
}

  .overview-buttons .btn:hover,
  .overview-buttons button:hover,
  .overview-buttons input[type="submit"]:hover,
  .overview-buttons input[type="button"]:hover {
    background: linear-gradient(to bottom, #F0F0F0, #E8E8E8);
    color: var(--text-primary) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    border-color: #A0A0A0;
  }

.product-name h1 {
  font-size: 1.25rem;
}

.price-current {
  font-size: 1.5rem;
}

.btn-add-to-cart,
.btn-buy-now {
  padding: 0.625rem 1.5rem;
}
/* Animated India Notice Badge */
.india-notice-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
  animation: slideInAndPulse 0.6s ease-out;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.india-notice-badge .icon {
  font-size: 16px;
  animation: bounce 2s infinite;
  display: inline-block;
}

/* Slide in and pulse animation */
@keyframes slideInAndPulse {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  60% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Bounce animation for icon */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* Pulse glow effect */
@keyframes pulse {
  0% {
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
  }

  50% {
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.6);
  }

  100% {
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
  }
}

.india-notice-badge:hover {
  animation: pulse 1.5s ease-in-out infinite;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Container for badge placement */
#indiaNoticeContainer {
  margin-bottom: 15px;
}

#indiaNoticeContainer {
  display: none;
  margin: 20px 0;
  animation: containerFadeIn 0.6s ease-out;
}

/* Fade in animation for container */
@keyframes containerFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.india-notice-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #ffffff;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
  animation: slideIn 0.8s ease-out, float 3s ease-in-out 0.8s infinite;
  border: 2px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: default;
  padding :8px;
}

  /* Icon styling */
  .india-notice-badge .icon {
    font-size: 18px;
    animation: iconBounce 1.5s ease-in-out infinite;
    display: inline-block;
    flex-shrink: 0;
  }

/* ===== ANIMATIONS ===== */

/* Slide in from top on load */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating up and down animation - MAIN MOVEMENT */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
  }

  50% {
    transform: translateY(-12px);
    box-shadow: 0 16px 32px rgba(245, 158, 11, 0.6);
  }
}

/* Icon bounce animation - SYNCHRONIZED WITH BADGE */
@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-6px) scale(1.1);
  }
}

/* Pulse effect on shadow */
@keyframes shadowPulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
  }

  50% {
    box-shadow: 0 8px 40px rgba(245, 158, 11, 0.8);
  }
}

/* ===== HOVER EFFECT ===== */
.india-notice-badge:hover {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.7);
  transform: scale(1.02);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .india-notice-badge {
    padding: 13px 28px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .india-notice-badge {
    padding: 12px 24px;
    font-size: 14px;
    gap: 10px;
    max-width: 90%;
  }

    .india-notice-badge .icon {
      font-size: 20px;
    }
}

@media (max-width: 480px) {
  .india-notice-badge {
    padding: 10px 16px;
    font-size: 12px;
    gap: 8px;
  }

    .india-notice-badge .icon {
      font-size: 18px;
    }
}
/* ===== LAB REPORTS ENHANCED STYLES ===== */
#labReportsContainer {
  margin-top: 20px;
}

/* Header Card */
.lab-reports-header-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  box-shadow: 0 6px 18px rgba(102, 126, 234, 0.15);
  margin-bottom: 8px;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.header-text h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.header-text p {
  margin: 3px 0 0 0;
  font-size: 11px;
  opacity: 0.9;
  color:white;
}

.header-badge {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}

/* Report Cards */
.lab-report-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

  .lab-report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }

  .lab-report-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
    transform: translateY(-5px);
  }

    .lab-report-card:hover::before {
      transform: scaleX(1);
    }

/* Badge */
.report-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 10px;
  font-weight: 700;
  z-index: 10;
}

/* Icon Container */
.report-icon-container {
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: all 0.3s ease;
}

.lab-report-card:hover .report-icon-container {
  transform: scale(1.08);
}

/* Info Section */
.report-info {
  padding: 10px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.report-type {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  color: #667eea;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}

.report-name {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.report-details {
  display: flex;
  gap: 8px;
  font-size: 11px;
  align-items: center;
}

.file-size {
  color: #28a745;
  display: flex;
  align-items: center;
  gap: 3px;
}

  .file-size i {
    font-size: 10px;
  }

.file-extension {
  background: #f0f4ff;
  color: #667eea;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 9px;
}

/* Actions */
.report-actions {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  border-top: 1px solid #e9ecef;
  margin-top: auto;
}

.btn-download,
.btn-view {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 6px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-download {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

  .btn-download:hover {
    transform: scale(1.03);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
    color: white;
  }

.btn-view {
  background: #f0f4ff;
  color: #667eea;
  border: 1px solid #667eea;
}

  .btn-view:hover {
    background: #667eea;
    color: white;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.25);
  }

  .btn-download i,
  .btn-view i {
    font-size: 10px;
  }

/* Footer */
.report-footer {
  padding: 8px 12px;
  border-top: 1px solid #f0f4ff;
  text-align: center;
}

.trust-badge {
  font-size: 10px;
  color: #28a745;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

  .trust-badge i {
    font-size: 10px;
  }

/* Empty State */
.empty-state,
.error-state {
  background: #f8f9fa;
  border: 2px dashed #e9ecef;
  border-radius: 12px;
  padding: 60px 20px;
  text-align: center;
  color: #666;
}

.empty-icon,
.error-icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.3;
}

.empty-icon {
  color: #667eea;
}

.error-icon {
  color: #d32f2f;
}

.empty-state h5,
.error-state h5 {
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.empty-state p,
.error-state p {
  font-size: 14px;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .lab-reports-header-card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 12px 14px;
  }

  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .header-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .header-badge {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .report-icon-container {
    padding: 12px;
    font-size: 28px;
  }

  .report-name {
    font-size: 11px;
  }

  .btn-download span,
  .btn-view span {
    display: none;
  }

  .btn-download,
  .btn-view {
    padding: 8px 10px;
  }
}

.product-info-section {
  background: #ffffff;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HEADER COMPACT ===== */
.header-compact
{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 0 16px 0;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 20px;
  gap: 16px;
  flex-wrap: wrap;
}



@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.brand-rating-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}
brand-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0066cc;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: fit-content;
}

.brand-name:hover {
  color: #0052a3;
  text-decoration: underline;
}

.brand-name i {
  font-size: 14px;
}

.rating-section-compact {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.stars-compact {
  display: flex;
  gap: 3px;
  font-size: 14px;
}

  .stars-compact i {
    color: #ffc107;
  }


@keyframes popIn {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

.rating-value-compact {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 14px;
}

.review-count-link-compact {
  color: #0066cc;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

  .review-count-link-compact:hover {
    text-decoration: underline;
  }


.india-notice-compact {
  background: linear-gradient(135deg, #fff3cd, #fffbea);
  border-left: 3px solid #d4a574;
  padding: 8px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #665d00;
  white-space: nowrap;
  animation: slideInRight 0.5s ease-out 0.2s both;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.india-notice-compact .icon {
  font-size: 14px;
}

/* ===== PRODUCT NAME ===== */
.product-name-compact {
  margin-bottom: 16px;
  margin-top: 0;
}

  .product-name-compact h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
  }


@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== PRODUCT FEATURES ===== */
.product-features-compact {
  margin-bottom: 16px;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  padding: 0;
  background: transparent;
  border: none;
}

  .product-features-compact p {
    margin: 0;
  }
/* ============================================
   FEATURES/METRICS
   ============================================ */

.features-metrics-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 0;
}

.metric-item-compact {
  text-align: center;
}

.metric-value-compact {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #0066cc;
  line-height: 1;
  margin-bottom: 6px;
}

.metric-label-compact {
  display: block;
  font-size: 12px;
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
/* ============================================
   PRICE SECTION
   ============================================ */

/* Price Section Container */
.price-section-compact {
  padding: 20px 0;
  border-bottom: 1px solid #e8e8e8;
}

/* Price Display Wrapper */
.price-display-compact {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 8px;
}

/* Main Prices Container */
.prices {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Main Product Price */
.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

  .product-price span {
    display: inline;
  }

/* Price Value Display */
.price-value-id {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
}

/* Old Price (Strikethrough) */
.old-product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #999;
}

  .old-product-price span {
    text-decoration: line-through;
    color: #999;
  }

/* Discounted Price (Green) */
.discounted-price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #28a745;
  font-weight: 600;
}

  .discounted-price span {
    color: #28a745;
  }

/* Non-Discounted Price */
.non-discounted-price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
}

  .non-discounted-price label {
    display: none;
    font-size: 12px;
    color: #666;
    font-weight: 500;
  }

/* Rental Price */
.rental-price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

  .rental-price span:first-child {
    color: #666;
    font-weight: 500;
  }

  .rental-price span:last-child {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
  }

/* Call for Price Button Style */
.call-for-price {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #f8fafb;
  border-radius: 8px;
  border: 2px solid #0066cc;
  font-size: 16px;
  font-weight: 600;
  color: #0066cc;
}

/* Base Price PAngV */
.base-price-pangv {
  font-size: 12px;
  color: #999;
  font-weight: 500;
  padding: 8px 0;
}

/* Tax & Shipping Information */
.tax-shipping-info {
  font-size: 11px;
  color: #999;
  margin-top: 8px;
  line-height: 1.4;
}

  .tax-shipping-info a {
    color: #0066cc;
    text-decoration: none;
    transition: all 0.3s ease;
  }

    .tax-shipping-info a:hover {
      text-decoration: underline;
      color: #0052a3;
    }

/* Price Info Text (per serving, quantity) */
.price-info-text-compact {
  font-size: 13px;
  color: #666;
  margin: 8px 0 0 0;
}
/* ============================================
   PURCHASE OPTIONS
   ============================================ */

.purchase-options-compact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #e8e8e8;
}

.purchase-option-item-compact {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

  .purchase-option-item-compact:hover {
    border-color: #0066cc;
    background: #f8fafb;
  }

  .purchase-option-item-compact.active {
    border-color: #0066cc;
    background: #f0f6ff;
  }

  .purchase-option-item-compact input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #0066cc;
  }

  .purchase-option-item-compact label {
    flex: 1;
    cursor: pointer;
    margin: 0;
  }

.option-title-compact {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 14px;
  margin-bottom: 4px;
}

.option-subtitle-compact {
  font-size: 13px;
  color: #999;
}

.option-price-compact {
  font-size: 18px;
  font-weight: 700;
  color: #0066cc;
  white-space: nowrap;
}


.availability-section-compact {
  background: linear-gradient(135deg, #f0f8e8 0%, #e8f5e0 100%);
  padding: 16px;
  border-radius: 6px;
  border: 1px solid #2d5016;
  animation: slideInRight 0.5s ease-out 0.25s both;
}

  .availability-section-compact .status {
    font-size: 13px;
    font-weight: 700;
    color: #2d5016;
    display: flex;
    align-items: center;
    gap: 6px;
  }

    .availability-section-compact .status i {
      font-size: 14px;
      animation: pulse 2s infinite;
    }

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

/* ===== DETAILS ROW ===== */
.details-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #555;
  animation: fadeIn 0.5s ease-out 0.3s both;
}

  .details-row > div {
    padding: 10px 12px;
    background: #f8f8f8;
    border-radius: 4px;
    border-left: 2px solid #d4a574;
  }

  .details-row strong {
    color: #2d5016;
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
  }

/* ===== SHIPPING INFO COMPACT ===== */
.shipping-info-compact {
  margin-bottom: 14px;
  border-radius: 6px;
  overflow: hidden;
  animation: fadeIn 0.5s ease-out 0.35s both;
}

.shipping-header {
  background: linear-gradient(135deg, #2d5016, #1e3610);
  padding: 10px 14px;
  display: flex;
  align-items: center;
}

  .shipping-header h6 {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .shipping-header i {
    color: #d4a574;
    font-size: 14px;
  }

.shipping-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #f8f8f8;
  border: 1px solid #2d5016;
  border-top: none;
}

.shipping-item {
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid #2d5016;
  transition: all 0.3s ease;
  cursor: pointer;
}

  .shipping-item:last-child {
    border-right: none;
  }

  .shipping-item:hover {
    background: #f0f8e8;
    transform: translateY(-2px);
  }

  .shipping-item i {
    color: #2d5016;
    font-size: 16px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
  }

  .shipping-item:hover i {
    color: #d4a574;
    transform: scale(1.1);
  }

  .shipping-item p {
    font-size: 12px;
    color: #555;
    margin: 0;
    line-height: 1.4;
  }

  .shipping-item a {
    color: #2d5016;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

    .shipping-item a:hover {
      color: #1e3610;
      text-decoration: underline;
    }

/* ===== SECURITY BADGES COMPACT ===== */
.security-badges-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
  animation: fadeIn 0.5s ease-out 0.4s both;
}

.security-badge-item {
  background: linear-gradient(135deg, #faf6f1, #f5ede5);
  border: 2px solid #d4a574;
  padding: 12px;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

  .security-badge-item:hover {
    background: linear-gradient(135deg, #2d5016, #1e3610);
    border-color: #1e3610;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(45, 80, 22, 0.2);
  }

  .security-badge-item i {
    font-size: 18px;
    color: #2d5016;
    transition: all 0.3s ease;
  }

  .security-badge-item:hover i {
    color: #d4a574;
    transform: rotate(10deg) scale(1.15);
  }

  .security-badge-item span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #1a1a1a;
    transition: color 0.3s ease;
  }

  .security-badge-item:hover span {
    color: #ffffff;
  }

/* ===== PURCHASE SECTION ===== */
.purchase-section-compact {
  animation: fadeIn 0.5s ease-out 0.45s both;
}

  .purchase-section-compact .btn-add-to-cart {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2d5016, #1e3610);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(45, 80, 22, 0.2);
  }

    .purchase-section-compact .btn-add-to-cart:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(45, 80, 22, 0.3);
      background: linear-gradient(135deg, #1e3610, #0f1c08);
    }

    .purchase-section-compact .btn-add-to-cart:active {
      transform: translateY(0);
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .product-info-section {
    padding: 20px;
  }

  .product-name-compact h1 {
    font-size: 22px;
  }

  .price-avail-row,
  .details-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .shipping-content {
    grid-template-columns: 1fr;
  }

  .shipping-item {
    border-right: none;
    border-bottom: 1px solid #2d5016;
    flex-direction: row;
    padding: 10px;
    text-align: left;
    align-items: flex-start;
  }

    .shipping-item:last-child {
      border-bottom: none;
    }

    .shipping-item i {
      margin-right: 8px;
      margin-bottom: 0;
    }

  .header-compact {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-rating-group {
    flex-direction: column;
  }

  .india-notice-compact {
    width: 100%;
    justify-content: flex-start;
  }
}
/* ===== ADS SIDEBAR ===== */
.ads-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 15px;
  height: fit-content;
}
/* ===== ANIMATED ADS HEADER ===== */
.ads-header-animated {
  padding: 10px;
  background: white;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

  .ads-header-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
    z-index: 1;
  }

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.ads-header-content {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

/* Icon */
.ads-header-icon {
  font-size: 18px;
  color: #ff6b6b;
  animation: pulse-icon 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
    color: #ff6b6b;
  }

  50% {
    transform: scale(1.15);
    color: #ff8787;
  }
}

/* Text */
.ads-header-text {
  flex: 1;
  min-width: 0;
}

.ads-header-title {
  font-size: 12px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

.ads-header-desc {
  font-size: 10px;
  color: #999;
  margin: 2px 0 0 0;
  font-weight: 500;
}

/* Badge */
.ads-header-badge {
  flex-shrink: 0;
}

.header-badge-text {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  animation: bounce-badge 2s ease-in-out infinite;
}

@keyframes bounce-badge {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* Bottom Animated Line */
.ads-header-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff6b6b, #ff8787, transparent);
  margin-top: 8px;
  animation: expand-line 2s ease-in-out infinite;
}

@keyframes expand-line {
  0%, 100% {
    width: 0%;
    margin-left: 0;
  }

  50% {
    width: 100%;
    margin-left: 0;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .ads-header-animated {
    padding: 8px;
    margin-bottom: 10px;
  }

  .ads-header-icon {
    font-size: 16px;
  }

  .ads-header-title {
    font-size: 11px;
  }

  .ads-header-desc {
    font-size: 9px;
    margin-top: 1px;
  }

  .header-badge-text {
    padding: 3px 7px;
    font-size: 8px;
  }
}

@media (max-width: 992px) {
  .ads-header-animated {
    padding: 8px;
    margin-bottom: 10px;
  }

  .ads-header-content {
    gap: 8px;
  }

  .ads-header-icon {
    font-size: 15px;
  }

  .ads-header-title {
    font-size: 11px;
  }

  .ads-header-desc {
    font-size: 9px;
  }

  .header-badge-text {
    padding: 3px 6px;
    font-size: 8px;
  }
}

@media (max-width: 768px) {
  .ads-header-animated {
    padding: 8px;
    margin-bottom: 8px;
  }

  .ads-header-content {
    gap: 6px;
  }

  .ads-header-icon {
    font-size: 14px;
  }

  .ads-header-title {
    font-size: 10px;
  }

  .ads-header-desc {
    font-size: 8px;
    margin-top: 0;
  }

  .header-badge-text {
    padding: 2px 5px;
    font-size: 7px;
  }

  .ads-header-line {
    margin-top: 6px;
  }
}

@media (max-width: 480px) {
  .ads-header-animated {
    padding: 6px 8px;
  }

  .ads-header-icon {
    font-size: 13px;
  }

  .ads-header-title {
    font-size: 10px;
  }

  .header-badge-text {
    padding: 2px 5px;
    font-size: 7px;
  }
}
/* ===== PRODUCT CARD ===== */
.ad-product-card {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

  .ad-product-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #ff6b6b;
  }

/* Product Image */
.ad-product-image {
  width: 100%;
  height: 205px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

  .ad-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

.ad-product-card:hover .ad-product-image img {
  transform: scale(1.05);
}

/* Product Content */
.ad-product-content {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.ad-product-title {
  font-size: 12px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

/* Rating */
.ad-product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ad-stars {
  display: flex;
  gap: 1px;
  color: #ffc107;
  font-size: 10px;
}

  .ad-stars i {
    line-height: 1;
  }

.ad-rating-text {
  font-size: 10px;
  color: #666;
  font-weight: 600;
}

/* Price */
.ad-product-price {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ad-price-current {
  font-size: 16px;
  font-weight: 700;
  color: #ff6b6b;
}

.ad-price-original {
  font-size: 11px;
  color: #999;
  text-decoration: line-through;
}

/* Action Buttons */
.ad-product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.ad-btn-buy,
.ad-btn-cart {
  border: none;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.ad-btn-buy {
  background: #ffc107;
  color: #1a1a1a;
}

  .ad-btn-buy:hover {
    background: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
  }

.ad-btn-cart {
  background: #4caf50;
  color: white;
}

  .ad-btn-cart:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
  }

  .ad-btn-buy i,
  .ad-btn-cart i {
    font-size: 10px;
  }

/* ===== REVIEWS WIDGET ===== */
.reviews-widget {
  padding: 10px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
}

  .reviews-widget h5 {
    font-size: 11px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }

.review-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 10px;
}

  .review-stat:last-child {
    margin-bottom: 0;
  }

.stat-label {
  font-size: 10px;
  color: #666;
  min-width: 50px;
  font-weight: 600;
}

.stat-bar {
  flex: 1;
  height: 5px;
  background: #e5e5e5;
  border-radius: 2px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff6b6b 0%, #ff8787 100%);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.stat-value {
  font-size: 9px;
  color: #666;
  min-width: 28px;
  text-align: right;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .ad-product-image {
    height: 130px;
  }

  .ad-product-title {
    font-size: 11px;
  }

  .ad-price-current {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .ads-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: static;
    gap: 10px;
  }

  .reviews-widget {
    grid-column: 1 / -1;
  }

  .ad-product-card {
    flex-direction: row;
    height: auto;
  }

  .ad-product-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
  }

  .ad-product-content {
    padding: 8px;
    gap: 6px;
  }

  .ad-product-title {
    font-size: 11px;
  }

  .ad-price-current {
    font-size: 14px;
  }

  .ad-product-actions {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 2px;
  }

  .ad-btn-buy,
  .ad-btn-cart {
    padding: 6px 8px;
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .ads-sidebar {
    grid-template-columns: repeat(2, 1fr);
  }

  .ad-product-card {
    flex-direction: row;
  }

  .ad-product-image {
    width: 90px;
    height: 90px;
  }

  .ad-product-content {
    padding: 8px;
    gap: 5px;
  }

  .ad-product-title {
    font-size: 10px;
  }

  .ad-stars {
    font-size: 9px;
  }

  .ad-rating-text {
    font-size: 9px;
  }

  .ad-price-current {
    font-size: 13px;
  }

  .ad-price-original {
    font-size: 10px;
  }

  .ad-product-actions {
    gap: 5px;
  }

  .ad-btn-buy,
  .ad-btn-cart {
    padding: 5px 6px;
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .ads-sidebar {
    grid-template-columns: 1fr;
  }

  .ad-product-card {
    flex-direction: row;
  }

  .ad-product-image {
    width: 80px;
    height: 80px;
  }

  .ad-product-content {
    padding: 8px;
  }
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateX(-20px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
/* ===== ANIMATED EXPORT NOTICE ===== */
.india-notice-animated {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fff3cd 0%, #fff9e6 100%);
  padding: 4px 7px;
  border-radius: 6px;
  font-weight: 600;
  color: #856404;
  font-size: 12px;
  border: 1.5px solid #ffd966;
  position: relative;
  overflow: hidden;
  animation: zoom-in-out 2.5s ease-in-out infinite;
  cursor: pointer;
}

@keyframes zoom-in-out {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateX(-20px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.notice-content {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 2;
  flex: 1;
}

.notice-icon {
  font-size: 14px;
  animation: blink-icon 1.5s ease-in-out infinite;
  display: inline-block;
}

@keyframes blink-icon {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.notice-text {
  font-size: 12px;
  font-weight: 600;
  color: #856404;
  letter-spacing: 0.3px;
  animation: text-pulse 2s ease-in-out infinite;
}

@keyframes text-pulse {
  0%, 100% {
    color: #856404;
    text-shadow: 0 0 0 rgba(133, 100, 4, 0);
  }

  50% {
    color: #8b5a00;
    text-shadow: 0 0 8px rgba(255, 193, 7, 0.4);
  }
}


@keyframes pulse-dot {
  0%, 100% {
    width: 8px;
    height: 8px;
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
  }

  50% {
    width: 10px;
    height: 10px;
    opacity: 0.8;
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.3);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .india-notice-animated {
    padding: 8px 10px;
    font-size: 11px;
    gap: 6px;
  }

  .notice-icon {
    font-size: 13px;
  }

  .notice-text {
    font-size: 11px;
  }
}

@media (max-width: 992px) {
  .india-notice-animated {
    padding: 8px 10px;
    font-size: 11px;
    border-radius: 5px;
  }

  .notice-icon {
    font-size: 12px;
  }

  .notice-text {
    font-size: 11px;
  }

  .notice-pulse {
    width: 6px;
    height: 6px;
    right: 8px;
  }
}

@media (max-width: 768px) {
  .india-notice-animated {
    padding: 7px 9px;
    font-size: 10px;
    gap: 5px;
  }

  .notice-icon {
    font-size: 12px;
  }

  .notice-text {
    font-size: 10px;
  }

  .notice-pulse {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 480px) {
  .india-notice-animated {
    padding: 6px 8px;
    font-size: 10px;
  }

  .notice-text {
    font-size: 10px;
  }

  .notice-pulse {
    width: 5px;
    height: 5px;
  }
}


/* ===== PRODUCT DESCRIPTION SECTION ===== */
.product-description {
  background: white;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  margin-top: 20px;
}

  .product-description:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #d0d0d0;
  }

/* ===== TABS NAVIGATION ===== */
.product-tabs {
  display: flex;
  border-bottom: 2px solid #f0f0f0;
  background: linear-gradient(to right, #fafafa 0%, #ffffff 100%);
  padding: 0;
  margin: 0;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

  .product-tabs::-webkit-scrollbar {
    display: none;
  }

  .product-tabs .nav-item {
    position: relative;
    flex: 1;
    min-width: 150px;
  }

.tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 14px;
  background: transparent;
  border: none;
  color: #666;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
  letter-spacing: 0.3px;
}

  .tab-btn i {
    font-size: 13px;
    transition: all 0.3s ease;
  }

  .tab-btn span {
    white-space: nowrap;
    transition: all 0.3s ease;
  }

  .tab-btn:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
    transform: translateY(-2px);
  }

    .tab-btn:hover i {
      transform: scale(1.15) rotate(10deg);
    }

  /* Active Tab */
  .tab-btn.active {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.08);
  }

    .tab-btn.active i {
      animation: icon-pop-tab 0.5s ease;
    }

@keyframes icon-pop-tab {
  0% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.25) rotate(15deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

/* Tab Indicator */
.tab-indicator {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, lightgreen 0%, #ff8787 100%);
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tab-btn.active .tab-indicator {
  width: 100%;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

/* Badge */
.badge-pulse {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
  color: white;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 8px;
  font-weight: 700;
  animation: badge-bounce-tab 2s ease-in-out infinite;
}

@keyframes badge-bounce-tab {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-4px) scale(1.1);
  }
}

/* ===== TAB CONTENT ===== */
.product-tab-content {
  animation: fadeIn-tab 0.4s ease;
}

  .product-tab-content .tab-pane {
    min-height: 200px;
  }

    .product-tab-content .tab-pane.show {
      animation: slideDown-tab 0.4s ease;
    }

@keyframes fadeIn-tab {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideDown-tab {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Description Content */
.full-description {
  line-height: 1.7;
  color: #333;
  font-size: 13px;
}

  .full-description p {
    margin-bottom: 10px;
    transition: all 0.3s ease;
  }

    .full-description p:hover {
      color: #ff6b6b;
      padding-left: 4px;
    }

  .full-description ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
  }

    .full-description ul li {
      position: relative;
      padding-left: 35px;
      margin-bottom: 12px;
      line-height: 1.6;
      color: #333;
      font-size: 13px;
      transition: all 0.3s ease;
    }

      .full-description ul li:before {
        content: "\f00c";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 2px;
        color: #28a745;
        font-size: 16px;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(40, 167, 69, 0.1);
        border-radius: 50%;
        transition: all 0.3s ease;
      }

      .full-description ul li:hover {
        padding-left: 40px;
      }

        .full-description ul li:hover:before {
          transform: scale(1.15);
          background-color: rgba(40, 167, 69, 0.2);
        }

  .full-description ol {
    padding-left: 35px;
    counter-reset: custom-counter;
    list-style: none;
  }

    .full-description ol li {
      position: relative;
      padding-left: 35px;
      margin-bottom: 12px;
      counter-increment: custom-counter;
      line-height: 1.6;
      color: #333;
      font-size: 13px;
    }

      .full-description ol li:before {
        content: counter(custom-counter);
        position: absolute;
        left: 0;
        top: 0;
        background: #007bff;
        color: white;
        font-weight: bold;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
      }

/* Specifications Content */
.specifications-content {
  line-height: 1.6;
  font-size: 13px;
  color: #333;
}

/* Lab Reports */
.lab-reports-content {
  padding: 0;
}

.lab-header {
  padding: 12px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 8px;
  border-left: 4px solid #0ea5e9;
  animation: slideInLeft-tab 0.5s ease;
  margin-bottom: 16px !important;
}

@keyframes slideInLeft-tab {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.lab-title {
  font-size: 13px;
  font-weight: 700;
  color: #0c4a6e;
  margin: 0 0 6px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.3px;
}

  .lab-title i {
    color: #0ea5e9;
    animation: lab-icon-spin-tab 3s linear infinite;
  }

@keyframes lab-icon-spin-tab {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.lab-subtitle {
  font-size: 11px;
  color: #0c4a6e;
  margin: 0;
  opacity: 0.85;
}

.lab-reports-grid {
  display: grid;
  gap: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .tab-btn {
    padding: 10px 12px;
    font-size: 11px;
  }

    .tab-btn i {
      font-size: 12px;
    }

  .product-tabs .nav-item {
    min-width: 120px;
  }

  .full-description,
  .specifications-content {
    font-size: 12px;
  }

  .lab-title {
    font-size: 12px;
  }

  .lab-subtitle {
    font-size: 10px;
  }

}

@media (max-width: 992px) {
  .product-tabs {
    gap: 0;
  }

    .product-tabs .nav-item {
      flex: 1;
      min-width: 100px;
    }

  .tab-btn {
    padding: 10px 10px;
    font-size: 10px;
    flex-direction: column;
    gap: 3px;
  }

    .tab-btn i {
      font-size: 11px;
    }

    .tab-btn span {
      display: block;
      white-space: normal;
      font-size: 9px;
    }

  .full-description,
  .specifications-content {
    font-size: 12px;
    padding: 12px 10px;
  }

  .lab-reports-grid {
    gap: 10px;
  }

  .product-description {
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .product-tabs {
    gap: 0;
    padding: 0;
  }

    .product-tabs .nav-item {
      flex: 1;
      min-width: 80px;
    }

  .tab-btn {
    padding: 8px 8px;
    font-size: 9px;
    flex-direction: column;
    gap: 2px;
  }

    .tab-btn i {
      font-size: 10px;
    }

    .tab-btn span {
      display: block;
      font-size: 8px;
      white-space: normal;
      line-height: 1.2;
    }

  .full-description,
  .specifications-content {
    font-size: 11px;
    padding: 10px 8px;
  }

  .product-tab-content .tab-pane {
    min-height: 150px;
  }

  .lab-reports-grid {
    gap: 8px;
  }

  .lab-header {
    padding: 10px;
    margin-bottom: 10px !important;
  }

  .lab-title {
    font-size: 11px;
    margin-bottom: 4px;
  }

  .lab-subtitle {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .product-description {
    border-radius: 8px;
    margin-top: 15px;
  }

  .product-tabs .nav-item {
    min-width: 70px;
  }

  .tab-btn {
    padding: 6px 6px;
    font-size: 8px;
  }

    .tab-btn i {
      font-size: 9px;
    }

  .full-description,
  .specifications-content {
    font-size: 11px;
    padding: 8px 6px;
  }

  .product-tab-content .tab-pane {
    min-height: 120px;
  }



  .full-description ul li,
  .full-description ol li {
    padding-left: 30px;
    font-size: 12px;
  }

    .full-description ul li:before {
      font-size: 14px;
      width: 18px;
      height: 18px;
    }
}
/* ============================================
   BENEFITS SECTION - COMPLETE CSS
   ============================================ */

.benefits-section-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px 0;
}

.benefit-item-compact {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: all 0.3s ease;
  padding: 16px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid transparent;
}

  .benefit-item-compact:hover {
    background: #f0f6ff;
    border-color: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
  }

.benefit-icon-compact {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #f0f6ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #0066cc;
  transition: all 0.3s ease;
}

.benefit-item-compact:hover .benefit-icon-compact {
  background: #0066cc;
  color: white;
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.benefit-content-compact {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefit-title-compact {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.benefit-item-compact:hover .benefit-title-compact {
  color: #0066cc;
}

/* ============================================
   RESPONSIVE - BENEFITS SECTION
   ============================================ */

@media (max-width: 1024px) {
  .benefits-section-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 16px 0;
  }

  .benefit-item-compact {
    padding: 14px;
  }

  .benefit-icon-compact {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .benefit-title-compact {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .benefits-section-compact {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 0;
  }

  .benefit-item-compact {
    padding: 12px;
    margin-bottom: 0;
  }

  .benefit-icon-compact {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .benefit-title-compact {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .benefits-section-compact {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 0;
  }

  .benefit-item-compact {
    padding: 10px;
    gap: 10px;
  }

  .benefit-icon-compact {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .benefit-title-compact {
    font-size: 11px;
    line-height: 1.3;
  }
}

.transformation-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Header */
.transformation-header {
  text-align: center;
  margin-bottom: 50px;
}

.transformation-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.transformation-subtitle {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

/* Horizontal Timeline */
.transformation-timeline-horizontal {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  position: relative;
  padding: 40px 0 60px 0;
  margin-bottom: 50px;
}

  .transformation-timeline-horizontal::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066cc 0%, #00c9ff 50%, #0066cc 100%);
    z-index: 0;
  }

.timeline-item-horizontal {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 10px;
}

.timeline-circle-horizontal {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 15px;
  border: 4px solid white;
}

.timeline-item-horizontal:hover .timeline-circle-horizontal {
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.5);
}

.timeline-label-horizontal {
  font-size: 16px;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 10px;
}

.timeline-text-horizontal {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.5;
  max-width: 150px;
}

/* Additional Info Section */
.additional-info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.info-card {
  background: linear-gradient(135deg, #e3f2fd 0%, #f0f6ff 100%);
  border: 2px solid #0066cc;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
  }

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.info-card:hover .info-icon {
  transform: scale(1.1) rotate(10deg);
}

.info-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 15px 0;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

  .info-list li {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
  }

    .info-list li:last-child {
      margin-bottom: 0;
    }

    .info-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #0066cc;
      font-weight: 700;
      font-size: 14px;
    }

/* Timeline Connector (Hidden) */
.timeline-connector-horizontal {
  display: none;
}

/* ============================================
	   RESPONSIVE DESIGN
	   ============================================ */

@media (max-width: 1024px) {
  .transformation-timeline-horizontal {
    gap: 10px;
  }

  .timeline-circle-horizontal {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 12px;
  }

  .timeline-label-horizontal {
    font-size: 14px;
  }

  .timeline-text-horizontal {
    font-size: 12px;
    max-width: 130px;
  }

  .transformation-title {
    font-size: 28px;
  }

  .info-card {
    padding: 25px;
  }

  .info-title {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .transformation-title {
    font-size: 24px;
  }

  .transformation-timeline-horizontal {
    gap: 0;
    padding: 30px 0;
  }

    .transformation-timeline-horizontal::before {
      top: 25px;
    }

  .timeline-circle-horizontal {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 10px;
  }

  .timeline-label-horizontal {
    font-size: 12px;
  }

  .timeline-text-horizontal {
    font-size: 11px;
    max-width: 100px;
  }

  .additional-info-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .transformation-title {
    font-size: 20px;
  }

  .transformation-subtitle {
    font-size: 14px;
  }

  .transformation-timeline-horizontal {
    gap: 0;
    padding: 25px 0;
    overflow-x: auto;
    padding-bottom: 15px;
  }

    .transformation-timeline-horizontal::before {
      top: 20px;
      height: 2px;
    }

  .timeline-item-horizontal {
    flex: 0 0 120px;
    min-width: 120px;
  }

  .timeline-circle-horizontal {
    width: 45px;
    height: 45px;
    font-size: 18px;
    margin-bottom: 8px;
    border-width: 3px;
  }

  .timeline-label-horizontal {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .timeline-text-horizontal {
    font-size: 10px;
    max-width: 110px;
  }

  .transformation-container {
    padding: 10px;
  }

  .info-card {
    padding: 15px;
  }

  .info-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .info-title {
    font-size: 15px;
  }

  .info-list li {
    font-size: 12px;
    padding-left: 20px;
  }
}

.unified-tabs-section {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.unified-nav-tabs {
  display: flex;
  border-bottom: 2px solid #e0e0e0;
  background: #f8f9fa;
  border-radius: 8px 8px 0 0;
  overflow-x: auto;
}

  .unified-nav-tabs .nav-link {
    flex: 0 1 auto;
    text-align: center;
    padding: 18px 25px;
    border: none;
    background: transparent;
    color: #666;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    min-height: 60px;
  }

    .unified-nav-tabs .nav-link:hover {
      background: #f0f0f0;
      color: #333;
    }

    .unified-nav-tabs .nav-link.active {
      color: #0066cc;
      border-bottom: 3px solid #0066cc;
      background: #fff;
    }

    .unified-nav-tabs .nav-link i {
      font-size: 16px;
    }

.unified-tab-content {
  padding: 40px;
  min-height: 400px;
  animation: fadeIn 0.3s ease-in;
}


.tab-pane {
  display: none;
}

  .tab-pane.active {
    display: block;
  }

/* Product Description Tab */
.full-description {
  line-height: 1.8;
  color: #333;
}

  .full-description h3 {
    color: #0066cc;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .full-description p {
    margin-bottom: 15px;
  }

  .full-description ul,
  .full-description ol {
    margin-left: 20px;
    margin-bottom: 15px;
  }

/* Specifications Tab */
.specifications-content {
  line-height: 1.8;
}

.spec-group {
  margin-bottom: 30px;
}

.spec-group-title {
  background: #f8f9fa;
  padding: 12px 15px;
  font-weight: 600;
  color: #0066cc;
  border-left: 4px solid #0066cc;
  margin-bottom: 15px;
}

.spec-item {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

  .spec-item:last-child {
    border-bottom: none;
  }

.spec-name {
  font-weight: 600;
  color: #333;
  min-width: 200px;
  flex: 0 0 30%;
}

.spec-value {
  color: #666;
  flex: 1;
}

/* Lab Reports Tab */
.lab-reports-header-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.header-content {
  display: flex;
  gap: 15px;
  align-items: center;
}

.header-icon {
  font-size: 28px;
}

.header-text h5 {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
}

.header-text p {
  margin: 5px 0 0 0;
  opacity: 0.9;
  font-size: 14px;
}

.header-badge {
  background: rgba(255, 255, 255, 0.3);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
}

.lab-reports-grid {
  display: grid;
  gap: 20px;
}

.lab-report-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
}

  .lab-report-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #0066cc;
    transform: translateY(-5px);
  }

.report-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #0066cc;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.report-icon-container {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.report-info {
  margin-bottom: 15px;
}

.report-type {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.report-name {
  font-weight: 600;
  color: #333;
  font-size: 14px;
  margin: 8px 0;
  word-break: break-word;
}

.report-details {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  color: #666;
}

.file-size,
.file-extension {
  display: flex;
  align-items: center;
  gap: 4px;
}

.report-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.btn-download,
.btn-view {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  color: #0066cc;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

  .btn-download:hover {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
  }

  .btn-view:hover {
    background: #f0f0f0;
    color: #0066cc;
  }

.report-footer {
  text-align: center;
  font-size: 12px;
  color: #666;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #28a745;
  font-weight: 600;
}

.empty-state,
.error-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-icon,
.error-icon {
  font-size: 48px;
  color: #ddd;
  margin-bottom: 15px;
}

.error-icon {
  color: #d32f2f;
}

.empty-state h5,
.error-state h5 {
  color: #666;
  font-weight: 600;
  margin: 15px 0;
}

.empty-state p,
.error-state p {
  color: #999;
}

/* Reviews Tab */
.reviews-container {
  max-width: 100%;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.review-summary {
  display: flex;
  gap: 30px;
  align-items: center;
}

.review-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-rating-value {
  font-size: 36px;
  font-weight: 700;
  color: #0066cc;
}

.review-rating-stars {
  color: #ffc107;
  font-size: 14px;
}

.review-rating-count {
  color: #999;
  font-size: 14px;
}

.review-btn {
  background: #0066cc;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

  .review-btn:hover {
    background: #0052a3;
  }

.review-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

  .review-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

.review-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

.review-author {
  font-weight: 600;
  color: #333;
}

.review-date {
  color: #999;
  font-size: 14px;
}

.review-rating-stars {
  color: #ffc107;
}

.review-title {
  font-weight: 600;
  color: #333;
  margin: 10px 0;
  font-size: 15px;
}

.review-text {
  color: #666;
  line-height: 1.6;
  margin: 10px 0;
}

.review-footer {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.review-action {
  cursor: pointer;
  color: #0066cc;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

  .review-action:hover {
    color: #0052a3;
  }

.no-reviews {
  text-align: center;
  padding: 40px;
  color: #999;
}



.unified-nav-tabs .nav-link {
  padding: 15px 12px;
  font-size: 12px;
  flex: 0 1 auto;
}

  .unified-nav-tabs .nav-link span {
    display: inline;
  }

  .unified-nav-tabs .nav-link i {
    margin: 0;
  }

.unified-tab-content {
  padding: 20px;
  min-height: 300px;
}

.lab-reports-grid {
}

.review-summary {
  flex-direction: column;
  gap: 15px;
}

/* ============================================
	   FAQ TAB STYLES
	   ============================================ */

.faq-container {
  margin: 0 auto;
  padding: 20px 0;
}

/* FAQ Header */
.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.faq-subtitle {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

/* FAQ Items Container */
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

/* FAQ Item */
.faq-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

  .faq-item:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
  }

/* FAQ Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #f8fafb;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-item:hover .faq-question {
  background: #f0f6ff;
}

.faq-item.active .faq-question {
  background: #e3f2fd;
  border-bottom: 2px solid #0066cc;
}

.faq-question-text {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  flex: 1;
}

.faq-toggle-icon {
  font-size: 18px;
  color: #0066cc;
  transition: transform 0.3s ease;
  margin-left: 15px;
  flex-shrink: 0;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 18px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Support Section */
.faq-support-section {
  margin-top: 50px;
}

.support-card {
  background: linear-gradient(135deg, #e3f2fd 0%, #f0f6ff 100%);
  border: 2px solid #0066cc;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

  .support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
  }

.support-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.support-card:hover .support-icon {
  transform: scale(1.1) rotate(10deg);
}

.support-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px 0;
}

.support-text {
  font-size: 14px;
  color: #666;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.support-button {
  display: inline-block;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

  .support-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 102, 204, 0.4);
    color: white;
  }

/* ============================================
	   RESPONSIVE DESIGN
	   ============================================ */

@media (max-width: 768px) {
  .faq-title {
    font-size: 24px;
  }

  .faq-question {
    padding: 15px 16px;
  }

  .faq-question-text {
    font-size: 14px;
  }

  .faq-toggle-icon {
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-item.active .faq-answer {
    padding: 15px 16px;
  }

  .support-card {
    padding: 30px 20px;
  }

  .support-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .support-title {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 20px;
  }

  .faq-subtitle {
    font-size: 14px;
  }

  .faq-question {
    padding: 12px 14px;
  }

  .faq-question-text {
    font-size: 13px;
  }

  .faq-toggle-icon {
    font-size: 15px;
    margin-left: 10px;
  }

  .faq-answer p {
    font-size: 13px;
  }

  .support-card {
    padding: 25px 16px;
  }

  .support-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .support-title {
    font-size: 16px;
  }

  .support-text {
    font-size: 13px;
  }

  .support-button {
    padding: 10px 24px;
    font-size: 12px;
  }
}