/* ====================================
   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 4 Styles */
.product-showcase-4 {
  padding: 100px 40px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  position: relative;
  overflow: hidden;
}

/* Background Pattern */
.product-showcase-4::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-4 .showcase-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Product Header */
.product-showcase-4 .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-4 .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-4 h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--tertiary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

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

/* Zigzag List */
.product-showcase-4 .zigzag-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Zigzag Item */
.product-showcase-4 .zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  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);
  transition: transform 0.3s ease;
}

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

.product-showcase-4 .zigzag-item.reverse {
  direction: rtl;
}

.product-showcase-4 .zigzag-item.reverse > * {
  direction: ltr;
}

/* Product Image */
.product-showcase-4 .product-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-showcase-4 .product-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

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

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

/* Product Badge */
.product-showcase-4 .product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-gradient);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  z-index: 1;
}

.product-showcase-4 .featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  z-index: 1;
}

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

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

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

/* Feature Section */
.product-showcase-4 .feature-section {
  margin: 30px 0;
}

.product-showcase-4 .feature-section h4 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: var(--tertiary-color);
  margin-bottom: 20px;
}

.product-showcase-4 .feature-list {
  list-style: none;
  padding: 0;
}

.product-showcase-4 .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-4 .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Product Footer */
.product-showcase-4 .product-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(129, 183, 26, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-showcase-4 .price-section {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-showcase-4 .original-price {
  font-size: 16px;
  color: var(--tertiary-color);
  text-decoration: line-through;
  opacity: 0.6;
}

.product-showcase-4 .current-price {
  font-size: 24px;
  color: var(--primary-color);
  font-weight: bold;
}

.product-showcase-4 .discount-badge {
  background: var(--primary-gradient);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}

/* Total Value */
.product-showcase-4 .total-value {
  margin-top: 60px;
  text-align: center;
}

.product-showcase-4 .value-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 40px;
  border: 2px solid var(--primary-color);
  display: inline-block;
}

.product-showcase-4 .total-section {
  display: flex;
  align-items: center;
  gap: 30px;
}

.product-showcase-4 .total-section h3 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--tertiary-color);
}

.product-showcase-4 .price {
  color: var(--primary-color);
  font-weight: 800;
}

.product-showcase-4 .divider {
  width: 2px;
  height: 40px;
  background: rgba(129, 183, 26, 0.2);
}

.product-showcase-4 .price-today {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--tertiary-color);
}

.product-showcase-4 .highlight-price {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 1.2em;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .product-showcase-4 .zigzag-item,
  .product-showcase-4 .zigzag-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }

  .product-showcase-4 .total-section {
    flex-direction: column;
    gap: 20px;
  }

  .product-showcase-4 .divider {
    width: 100px;
    height: 2px;
  }
}

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

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

  .product-showcase-4 .zigzag-list {
    gap: 60px;
  }

  .product-showcase-4 .zigzag-item {
    padding: 30px;
  }

  .product-showcase-4 .product-footer {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

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

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

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