/* ====================================
   Root Variables and Base Styles
   ==================================== */
/* Root Variables */
:root {
  --primary-color: #81b71a;
  --secondary-color: #4ebbf7;
  --tertiary-color: #6d6d6d;
  --text-color: #000000;
  --background-light: #ffffff;

  /* Gradients */
  --primary-gradient: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );

  /* Typography */
  --heading-font: Helvetica, Arial, sans-serif;
  --body-font: Arial, sans-serif;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  line-height: 1.8;
  background: #fafafa;
  color: var(--text-color);
}

.container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  overflow: hidden;
}

/* Product Showcase 1 Styles */
.product-showcase-1 {
  padding: 100px 40px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  position: relative;
  overflow: hidden;
}

/* Background Pattern */
.product-showcase-1::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(129, 183, 26, 0.1),
    transparent 60%
  );
  pointer-events: none;
}

.product-showcase-1 .showcase-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Product Header */
.product-showcase-1 .product-header {
  text-align: center;
  margin-bottom: 80px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  border: 1px solid rgba(129, 183, 26, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.product-showcase-1 .overline {
  display: inline-block;
  background: var(--primary-gradient);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.product-showcase-1 h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--tertiary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.product-showcase-1 .lead-text {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--tertiary-color);
  max-width: 800px;
  margin: 0 auto;
}

/* Product Item */
.product-showcase-1 .product-item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: clamp(30px, 5vw, 60px);
  border: 1px solid rgba(129, 183, 26, 0.2);
  margin-bottom: 40px;
  transition: transform 0.3s ease;
}

.product-showcase-1 .product-item:hover {
  transform: translateY(-10px);
}

/* Product Image */
.product-showcase-1 .product-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.product-showcase-1 .product-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.product-showcase-1 .product-image:hover img {
  transform: scale(1.05);
}

.product-showcase-1 .image-overlay {
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-showcase-1 .product-image:hover .image-overlay {
  opacity: 0.1;
}

/* Product Details */
.product-showcase-1 .product-details {
  padding: 20px;
}

.product-showcase-1 .product-badge {
  display: inline-block;
  background: var(--primary-gradient);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.product-showcase-1 h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--tertiary-color);
  margin-bottom: 20px;
}

.product-showcase-1 .product-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--tertiary-color);
  margin-bottom: 30px;
  line-height: 1.8;
}

/* Feature List */
.product-showcase-1 .feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.product-showcase-1 .feature-list li {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: var(--tertiary-color);
}

.product-showcase-1 .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Product Footer */
.product-showcase-1 .product-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.product-showcase-1 .value-tag {
  display: inline-block;
  background: var(--primary-gradient);
  color: white;
  padding: 10px 25px;
  border-radius: 100px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(129, 183, 26, 0.2);
}

.product-showcase-1 .included-tag {
  display: inline-block;
  background: rgba(129, 183, 26, 0.1);
  color: var(--primary-color);
  padding: 10px 25px;
  border-radius: 100px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  border: 1px solid var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .product-showcase-1 .product-item {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .product-showcase-1 .product-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .product-showcase-1 {
    padding: 60px 20px;
  }

  .product-showcase-1 .product-header {
    padding: 30px;
  }

  .product-showcase-1 .product-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .product-showcase-1 {
    padding: 40px 15px;
  }

  .product-showcase-1 .product-header {
    padding: 20px;
  }

  .product-showcase-1 .product-item {
    padding: 20px;
  }
}
