* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #a8ff60;
  --secondary: #00b09b;
  --accent: #96c93d;
  --dark: #0a0a0a;
  --darker: #000;
  --light: #f8f9fa;
  --gray: #bbb;
  --card-bg: rgba(10, 10, 10, 0.7);
  --card-border: rgba(168, 255, 96, 0.15);
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--darker);
  color: var(--light);
  overflow-x: hidden;
}

/* ANIMATED BACKGROUND */
.animated-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary), transparent);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--secondary), transparent);
  bottom: 10%;
  right: 10%;
  animation-delay: 3s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--accent), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 6s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* PARTICLES */
.particles {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.4;
  animation: floatUp 8s linear infinite;
}

@keyframes floatUp {
  0% { 
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { 
    transform: translateY(-100px) translateX(var(--drift));
    opacity: 0;
  }
}

/* HERO SECTION */
.services-hero {
  padding: 140px 20px 80px;
  position: relative;
  z-index: 1;
  text-align: center;
}


.products-hero {
  padding-top: 140px;
  padding-bottom: 80px;
}

.products-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.products-hero p {
  font-size: 1.3rem;
  color: var(--gray);
  max-width: 800px;
  margin: 1.25rem auto 1.25rem auto; /* Added vertical margins */
  line-height: 1.8;
}

/* FILTER TABS */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.filter-btn {
  padding: 12px 30px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  color: var(--gray);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.filter-btn:hover {
  color: var(--primary);
  border-color: rgba(168, 255, 96, 0.3);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  border-color: transparent;
}

/* PRODUCTS GRID */
.products-section {
  padding: 40px 20px 80px;
  position: relative;
  z-index: 1;
}

.products-container {
  max-width: 1400px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

/* PRODUCT CARD */
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 25px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
  position: relative;
  cursor: pointer;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168,255,96,0.05), rgba(0,176,155,0.05));
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(168, 255, 96, 0.4);
  box-shadow: 0 20px 50px rgba(0, 176, 155, 0.3);
}

.product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(0, 176, 155, 0.4);
}

.product-content {
  padding: 30px;
}

.product-category {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-description {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.feature-tag {
  padding: 5px 12px;
  background: rgba(168, 255, 96, 0.1);
  border: 1px solid rgba(168, 255, 96, 0.2);
  border-radius: 50px;
  color: var(--gray);
  font-size: 0.8rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(168, 255, 96, 0.1);
}

.product-certification {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
}

.inquiry-btn {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.inquiry-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 176, 155, 0.4);
}

/* STATS SECTION */
.stats-section {
  padding: 80px 20px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(0, 176, 155, 0.03), transparent);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: rgba(168, 255, 96, 0.3);
  transform: translateY(-5px);
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(0, 176, 155, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-label {
  color: var(--gray);
  font-size: 1rem;
  font-weight: 500;
}

/* CTA SECTION */
.cta-section {
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.cta-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(168,255,96,0.05), transparent);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.cta-btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  border: none;
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 176, 155, 0.4);
}

.cta-btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cta-btn-secondary:hover {
  background: rgba(168, 255, 96, 0.1);
  transform: translateY(-3px);
}

/* MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 25px;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  backdrop-filter: blur(20px);
  position: relative;
  animation: modalSlideIn 0.4s ease;
  max-height: 90vh; /* Ensure modal content doesn't exceed viewport height */
  overflow-y: auto; /* Enable scrolling for long content */
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  background: rgba(168, 255, 96, 0.1);
  border: 1px solid rgba(168, 255, 96, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  cursor: pointer;
  transition: all 0.3s;
}

.modal-close:hover {
  background: var(--primary);
  color: var(--dark);
  transform: rotate(90deg);
}

.modal-content h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.modal-content p {
  color: var(--gray);
  margin-bottom: 25px;
  line-height: 1.7;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(168, 255, 96, 0.2);
  border-radius: 12px;
  color: var(--light);
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
}

.modal-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(168, 255, 96, 0.2);
}

.modal-input::placeholder {
  color: var(--gray);
  opacity: 0.6;
}

textarea.modal-input {
  min-height: 120px;
  resize: vertical;
}

.modal-submit {
  padding: 14px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}

.modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 176, 155, 0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-thumbs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px; /* Space for scrollbar */
  }

  .thumb {
    flex-shrink: 0; /* Prevent thumbnails from shrinking */
    width: 80px;
    height: 80px;
  }

  .main-image {
    height: 40vh; /* Adjust main image height for mobile */
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .cta-container {
    padding: 40px 25px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
  }

  .modal-content {
    padding: 30px 25px;
    max-width: 90%; /* Adjust max-width for tablets and smaller desktops */
  }
}

@media (max-width: 576px) { /* Extra small devices (phones) */
  .modal-content {
    padding: 25px 15px; /* Further reduce padding for smaller phones */
    max-width: calc(100% - 30px); /* Account for padding in overlay */
  }

  .modal-content h2 {
    font-size: 1.6rem; /* Adjust title size for smaller screens */
  }

  .modal-content p {
    font-size: 0.95rem; /* Adjust paragraph size */
  }

  .modal-input {
    padding: 12px 15px; /* Adjust input padding */
    font-size: 0.95rem;
  }

  .modal-submit {
    padding: 12px;
    font-size: 1rem;
  }

  .modal-close {
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}

/* MODAL - Lightbox */
    .lightbox-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(5px);
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .lightbox-overlay.active {
      display: flex;
      opacity: 1;
    }

    .lightbox-content {
      position: relative;
      max-width: 90vw;
      max-height: 90vh;
    }

    .lightbox-img {
      max-width: 100%;
      max-height: 90vh;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
    }

    .lightbox-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.5);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.2rem;
      transition: all 0.3s;
    }

    .lightbox-btn:hover {
      background: var(--primary);
      transform: scale(1.1);
    }

    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.5);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.2rem;
      z-index: 10;
      transition: all 0.3s;
    }

    .lightbox-close:hover {
      background: var(--primary);
      transform: rotate(90deg);
    }

    .lightbox-counter {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      font-size: 0.9rem;
      background: rgba(0, 0, 0, 0.5);
      padding: 4px 12px;
      border-radius: 20px;
    }

    /* MODAL - Inquiry */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(10px);
      z-index: 10000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal-overlay.active {
      display: flex;
    }

    .modal-content {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 25px;
      max-width: 600px;
      width: 100%;
      padding: 40px;
      backdrop-filter: blur(20px);
      position: relative;
      animation: modalSlideIn 0.4s ease;
    }

    @keyframes modalSlideIn {
      from { transform: translateY(-50px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 35px;
      height: 35px;
      background: rgba(168, 255, 96, 0.1);
      border: 1px solid rgba(168, 255, 96, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--light);
      cursor: pointer;
      transition: all 0.3s;
    }

    .modal-close:hover {
      background: var(--primary);
      color: var(--dark);
      transform: rotate(90deg);
    }

    .modal-content h2 {
      color: var(--primary);
      font-size: 2rem;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .modal-content p {
      color: var(--gray);
      margin-bottom: 25px;
      line-height: 1.7;
    }

    .modal-form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .modal-input {
      width: 100%;
      padding: 14px 18px;
      background: rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(168, 255, 96, 0.2);
      border-radius: 12px;
      color: var(--light);
      font-size: 1rem;
      font-family: 'Poppins', sans-serif;
      transition: all 0.3s;
    }

    .modal-input:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 20px rgba(168, 255, 96, 0.2);
    }

    .modal-input::placeholder {
      color: var(--gray);
      opacity: 0.6;
    }

    textarea.modal-input {
      min-height: 120px;
      resize: vertical;
    }

    .modal-submit {
      padding: 14px;
      background: linear-gradient(135deg, var(--secondary), var(--accent));
      color: #fff;
      border: none;
      border-radius: 12px;
      font-weight: 600;
      font-size: 1.05rem;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 10px;
    }

    .modal-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(0, 176, 155, 0.4);
    }

    /* PRODUCT DETAIL */
    .product-hero {
      padding-top: 100px;
      position: relative;
      z-index: 1;
    }

    .product-gallery {
      display: grid;
      grid-template-columns: 1fr 120px;
      gap: 20px;
      margin-bottom: 30px;
    }

    @media (max-width: 768px) {
      .product-gallery {
        grid-template-columns: 1fr;
      }
    }

    .main-image-wrapper {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      background: rgba(0, 0, 0, 0.2);
      cursor: zoom-in;
    }

    .main-image {
      width: 100%;
      height: 500px;
      object-fit: cover;
      display: block;
      transition: transform 0.3s;
    }

    @media (max-width: 768px) {
      .main-image {
        height: 40vh;
      }
    }

    .gallery-thumbs {
      display: flex;
      flex-direction: column;
      gap: 10px;
      overflow-y: auto;
      padding-right: 5px;
      scrollbar-width: thin;
    }

    .gallery-thumbs::-webkit-scrollbar {
      width: 6px;
    }

    .gallery-thumbs::-webkit-scrollbar-thumb {
      background: rgba(168, 255, 96, 0.3);
      border-radius: 3px;
    }

    .thumb {
      height: 110px;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      opacity: 0.7;
      transition: all 0.3s;
    }

    .thumb:hover, .thumb.active {
      opacity: 1;
      transform: scale(1.02);
      border: 2px solid var(--primary);
    }

    .thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .product-summary {
      margin-bottom: 30px;
    }

    .product-breadcrumb {
      color: var(--gray);
      font-size: 0.9rem;
      margin-bottom: 12px;
    }
    
    .product-breadcrumb a {
      color: var(--light); /* Make links brighter than surrounding gray text */
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .product-breadcrumb a:hover {
      color: var(--primary); /* Highlight on hover with primary theme color */
    }
    .product-category {
      color: var(--primary);
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .product-title {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      margin: 8px 0 16px;
      line-height: 1.2;
    }

    .product-rating {
      color: #ffc107;
      margin-bottom: 15px;
      font-size: 1.1rem;
    }

    .product-price {
      font-size: 2rem;
      font-weight: 800;
      margin: 15px 0;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .price-note {
      font-size: 0.95rem;
      color: var(--gray);
      margin-bottom: 20px;
    }

    /* Product Tabs */
    .product-tabs {
      display: flex;
      border-bottom: 1px solid var(--card-border);
      margin: 30px 0 20px;
    }

    .tab-btn {
      padding: 12px 24px;
      background: transparent;
      border: none;
      color: var(--gray);
      font-weight: 500;
      cursor: pointer;
      position: relative;
      transition: color 0.3s;
    }

    .tab-btn:hover, .tab-btn.active {
      color: var(--primary);
    }

    .tab-btn.active::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--primary);
    }

    .tab-content {
      display: none;
    }

    .tab-content.active {
      display: block;
      animation: fadeIn 0.4s;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .product-description {
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--gray);
      margin-bottom: 30px;
    }

    .spec-table {
      width: 100%;
      border-collapse: collapse;
    }

    .spec-table th,
    .spec-table td {
      padding: 14px 20px;
      text-align: left;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .spec-table th {
      color: var(--gray);
      font-weight: 500;
      width: 40%;
    }

    .spec-table td {
      color: var(--light);
      font-weight: 500;
    }

    /* Product Actions (Add to Cart) */
    .product-actions {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 20px;
      padding: 30px;
      backdrop-filter: blur(10px);
      margin-top: 40px;
    }

    .quantity-control {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 25px;
    }

    .qty-btn {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background: rgba(168, 255, 96, 0.1);
      border: 1px solid var(--card-border);
      color: var(--light);
      font-size: 1.2rem;
      cursor: pointer;
      transition: all 0.2s;
    }

    .qty-btn:hover {
      background: var(--primary);
      color: var(--dark);
    }

    .qty-input {
      width: 80px;
      height: 40px;
      text-align: center;
      background: rgba(0, 0, 0, 0.3);
      border: 1px solid var(--card-border);
      border-radius: 8px;
      color: var(--light);
      font-size: 1.1rem;
      font-weight: 500;
      outline: none;
    }

    .add-to-cart-btn {
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, var(--secondary), var(--accent));
      color: #fff;
      border: none;
      border-radius: 12px;
      font-weight: 600;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 20px;
    }

    .add-to-cart-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(0, 176, 155, 0.4);
    }

    .action-links {
      display: flex;
      gap: 15px;
    }

    .action-btn {
      flex: 1;
      padding: 12px;
      border-radius: 12px;
      font-weight: 500;
      font-size: 0.95rem;
      cursor: pointer;
      text-align: center;
      transition: all 0.3s;
    }

    .btn-inquiry {
      background: rgba(168, 255, 96, 0.1);
      color: var(--primary);
      border: 1px solid var(--card-border);
    }

    .btn-inquiry:hover {
      background: rgba(168, 255, 96, 0.2);
    }

    .btn-download {
      background: rgba(0, 176, 155, 0.1);
      color: var(--secondary);
      border: 1px solid var(--card-border);
    }

    .btn-download:hover {
      background: rgba(0, 176, 155, 0.2);
    }

    /* Sticky Add to Cart (Mobile) */
    .sticky-cart {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: var(--card-bg);
      border-top: 1px solid var(--card-border);
      padding: 15px 20px;
      backdrop-filter: blur(15px);
      z-index: 1000;
    }

    .sticky-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .sticky-price {
      font-size: 1.3rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .sticky-btn {
      padding: 12px 25px;
      background: linear-gradient(135deg, var(--secondary), var(--accent));
      color: #fff;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }

    @media (max-width: 768px) {
      .product-actions { display: block; } /* Show product actions on smaller screens */
      .sticky-cart { display: none; } /* Hide sticky cart on smaller screens */
    }
