/* ===== PRODUCTS SECTION – IMAGE FITS WITHOUT CROPPING, SLIGHTLY REDUCED HEIGHT (MASTRIQ GREEN) ===== */
:root {
  --aqua-marine: #76b900;
  --aqua-marine-dark: #5a8c00;
  --aqua-marine-light: rgba(118, 185, 0, 0.1);
  --aqua-marine-glow: rgba(118, 185, 0, 0.15);
  --text-dark: #1a1a1a;
  --bg-white: #ffffff;
}

.products-section {
  padding: 0.5rem 0;
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  scroll-margin-top: 70px;
  position: relative;
  overflow: hidden;
}

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

.product-badge-new-white {
  display: inline-block;
  background: var(--aqua-marine);
  color: #0a0c12;
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 2px 8px var(--aqua-marine-glow);
}

.section-title-New {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 0.1rem;
}

.section-title-New .highlight {
  color: var(--aqua-marine);
}

.product-showcase {
  max-width: 1400px;
  margin: 0.1rem auto;
  position: relative;
  perspective: 2000px;
}

.product-showcase-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.showcase-nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--aqua-marine);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--aqua-marine);
  flex-shrink: 0;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.showcase-nav:hover {
  background: var(--aqua-marine);
  color: #0a0c12;
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 25px var(--aqua-marine-glow);
}

/* Product card – image gets most space, side columns narrower */
.product-showcase-content {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr 0.9fr;
  gap: 0.8rem;
  align-items: stretch;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 32px;
  padding: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(118, 185, 0, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Slightly reduced card height on desktop */
@media (min-width: 1024px) {
  .product-showcase-content {
    height: 600px;
  }
}

.product-showcase-content:hover {
  transform: translateY(-5px);
  border-color: var(--aqua-marine);
  box-shadow: 0 30px 50px -15px rgba(118, 185, 0, 0.2);
}

/* Left column – compact */
.product-info-side {
  padding: 0.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-badge-container {
  margin-bottom: 0.8rem;
}

.product-badge-new {
  display: inline-block;
  background: var(--aqua-marine);
  color: #0a0c12;
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  animation: badgePulse 2s infinite;
  box-shadow: 0 2px 8px var(--aqua-marine-glow);
}

.product-showcase-title {
 display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.2rem;
    font-size: 1.8rem;        /* was 2rem – much bigger */
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.product-showcase-desc {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.key-features-section {
  margin: 1rem 0;
  flex-shrink: 0;
}

.key-features-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.key-features-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.key-features-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: #1a1a1a;
  padding: 0.3rem 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.key-features-list li:hover {
  transform: translateX(5px);
  color: var(--aqua-marine);
}

.key-features-list li i {
  color: var(--aqua-marine);
  font-size: 0.9rem;
  width: 22px;
}

.product-showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--aqua-marine);
  color: #0a0c12;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  transition: all 0.3s ease;
  margin-top: 0.8rem;
  box-shadow: 0 2px 8px rgba(118, 185, 0, 0.2);
  text-align: center;
  display: inline-block;
}

.product-showcase-link:hover {
  background: var(--aqua-marine-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(118, 185, 0, 0.3);
}

/* Centre column – image fills height but fits without cropping */
.product-image-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
}

.image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-wrapper picture,
.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;      /* fits entire product without cropping */
  display: block;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), filter 0.3s ease;
  will-change: transform;
}

/* Zoom on hover (only image) */
.image-wrapper:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.2));
}

/* Glow effect on card hover */
.product-showcase-content:hover .image-glow {
  opacity: 0.5;
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(118, 185, 0, 0.08), transparent);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Right column – compact stats */
.product-stats-side {
  padding: 0.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 28px;
  padding: 1rem;
  border: 1px solid rgba(118, 185, 0, 0.15);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.next-preview {
  margin-top: 1rem;
  padding: 0.8rem;
  background: #f8f9fa;
  border-radius: 20px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  cursor: pointer;
}

.next-preview:hover {
  transform: translateY(-2px);
  border-color: var(--aqua-marine);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.next-preview-label {
  font-size: 0.7rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.next-product-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.next-product-image {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.next-product-image img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.next-product-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c3e50;
}

.next-product-desc {
  font-size: 0.7rem;
  color: #6c757d;
}

.next-hint {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.3rem;
  margin-top: 0.6rem;
  padding-top: 0.4rem;
  border-top: 1px solid #e9ecef;
  font-size: 0.65rem;
  color: #adb5bd;
}

.compare-all-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: transparent;
  border: 2px solid var(--aqua-marine);
  color: #0a0c12;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.compare-all-btn:hover {
  background: var(--aqua-marine);
  gap: 1rem;
  transform: translateY(-2px);
}

.desktop-only {
  display: block;
}
.mobile-next-preview,
.mobile-compare-wrapper {
  display: none;
}

/* Responsive – tablet/mobile */
@media (max-width: 1023px) {
  .product-showcase-content {
    height: auto;
  }
  .product-image-center {
    height: auto;
    min-height: 300px;
  }
}

@media (max-width: 1024px) {
  .product-showcase-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
    height: auto;
    padding: 1rem;
  }
  .product-info-side {
    max-width: 500px;
    margin: 0 auto;
  }
  .key-features-list li {
    justify-content: center;
  }
  .stats-card {
    max-width: 500px;
    margin: 0 auto;
  }
  .desktop-only {
    display: none;
  }
  .image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {

   .product-showcase-title {
        font-size: 2.2rem;    /* was 1.8rem */
    }
  .products-section {
    padding: 2rem 0;
  }
  .product-showcase-title {
    font-size: 1.8rem;
  }
  .image-wrapper {
    max-width: 320px;
  }
  .showcase-nav {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .mobile-next-preview,
  .mobile-compare-wrapper {
    display: block;
  }
  .compare-wrapper {
    display: none;
  }
}

@media (max-width: 480px) {
  .product-showcase-title {
        font-size: 1.8rem;    /* was 1.5rem */
    }
  .product-showcase-content {
    padding: 1rem;
  }
  .product-showcase-title {
    font-size: 1.5rem;
  }
  .image-wrapper {
    max-width: 260px;
  }
  .showcase-nav {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

.mobile-next-preview {
  margin-top: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 20px;
  border: 1px solid #e9ecef;
}
.mobile-next-header {
  font-size: 0.75rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.mobile-next-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mobile-next-image {
  width: 55px;
  height: 55px;
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e9ecef;
}
.mobile-next-image img {
  width: 75%;
  height: 75%;
  object-fit: contain;
}
.mobile-next-info {
  flex: 1;
}
.mobile-next-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c3e50;
}
.mobile-next-desc {
  font-size: 0.7rem;
  color: #6c757d;
}
.mobile-next-btn {
  background: var(--aqua-marine);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #0a0c12;
}
.mobile-compare-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: var(--aqua-marine);
  color: #0a0c12;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  margin-top: 1rem;
}

@keyframes floatImage {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(118, 185, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(118, 185, 0, 0);
  }
}

@keyframes explorePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(118, 185, 0, 0.7);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(118, 185, 0, 0);
    transform: scale(1.02);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(118, 185, 0, 0);
    transform: scale(1);
  }
}

.product-showcase-link.pulse-animation {
  animation: explorePulse 1.2s ease-out;
}

.product-showcase-title .beast-icon {
   display: inline-block;  /* or block, but flex handles it */
    height: 1.2em;
    width: auto;
    flex-shrink: 0;
}
