/* ===================================
   PRODUCTS SECTION - SHOWCASE STYLE
   =================================== */

/* Products Grid Section */
.products__grid-section {
  background: var(--cream);
  padding: 120px 40px 80px;
}

.products__grid-container {
  max-width: 1400px;
  margin: 0 auto;
}

.products__section-header {
  text-align: center;
  margin-bottom: 80px;
}

.products__section-header h2 {
  color: var(--dark-earth);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.products__section-header p {
  color: var(--secondary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.products__showcase {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Product Showcase Card - Alternating Layout */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  background: var(--white);
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(139, 111, 71, 0.08);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.product-showcase:hover {
  box-shadow: 0 12px 48px rgba(139, 111, 71, 0.12);
  transform: translateY(-4px);
}

.product-showcase__image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--light-sand) 0%, var(--cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  width: 100%;
}

.product-showcase__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.product-showcase:hover .product-showcase__image {
  transform: scale(1.05);
}

.product-showcase__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
}

.product-showcase__badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  width: fit-content;
}

.product-showcase h3 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--dark-earth);
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.product-showcase__description {
  font-size: 1.0625rem;
  color: var(--secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.product-showcase__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--cream);
  border-radius: 16px;
  transition: all 200ms ease;
}

.feature-item:hover {
  background: var(--light-sand);
  transform: translateX(4px);
}

.feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
}

.feature-text {
  color: var(--dark-earth);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}

.product-showcase__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
  box-shadow: 0 4px 16px rgba(122, 92, 56, 0.3);
}

.product-showcase__cta:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122, 92, 56, 0.4);
}

.product-showcase__cta svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Tablet Layout */
@media (min-width: 768px) {
  .products__grid-section {
    padding: 140px 60px 100px;
  }
  
  .products__section-header {
    margin-bottom: 100px;
  }
  
  .product-showcase {
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    padding: 60px;
    align-items: stretch;
  }
  
  .product-showcase__image-wrapper {
    height: 500px;
  }
  
  .product-showcase__content {
    min-height: 500px;
  }
  
  .product-showcase__features {
    grid-template-columns: 1fr;
  }
  
  /* Alternate layout for second product */
  .product-showcase:nth-child(even) {
    grid-template-columns: 3fr 2fr;
  }
  
  .product-showcase:nth-child(even) .product-showcase__image-wrapper {
    order: 2;
  }
  
  .product-showcase:nth-child(even) .product-showcase__content {
    order: 1;
  }
}

/* Desktop Layout */
@media (min-width: 1024px) {
  .products__grid-section {
    padding: 160px 80px 120px;
  }
  
  .product-showcase {
    padding: 80px;
    gap: 80px;
  }
  
  .product-showcase__image-wrapper {
    height: 600px;
  }
  
  .product-showcase__content {
    min-height: 600px;
  }
  
  .product-showcase__features {
    grid-template-columns: 1fr 1fr;
  }
}

/* NAVBAR OVERRIDE FOR PRODUCTS PAGE */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
}

.navbar .logo,
.navbar .nav-link {
  color: var(--dark-earth) !important;
}

.navbar .nav-link:hover {
  color: var(--primary) !important;
}

.navbar .hamburger span {
  background-color: var(--dark-earth) !important;
}

.navbar .lang-switcher {
  background: var(--primary);
  color: var(--white);
}

.navbar .lang-switcher:hover {
  background: var(--secondary);
}
