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

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

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

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

/* Split Layout */
.product-showcase-5 .split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin: 40px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  border: 1px solid rgba(129, 183, 26, 0.2);
  overflow: hidden;
}

/* Preview Section */
.product-showcase-5 .preview-section {
  padding: 40px;
  background: rgba(129, 183, 26, 0.05);
}

.product-showcase-5 .preview-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.product-showcase-5 .preview-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;
}

/* Preview Navigation */
.product-showcase-5 .preview-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.product-showcase-5 .nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(129, 183, 26, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-showcase-5 .nav-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Details Section */
.product-showcase-5 .details-section {
  padding: 60px;
}

.product-showcase-5 .badge-group {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

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

.product-showcase-5 .status-badge {
  background: rgba(129, 183, 26, 0.1);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}

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

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

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

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

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

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

/* Bonus Section */
.product-showcase-5 .bonus-section {
  margin-top: 40px;
  padding: 30px;
  background: rgba(129, 183, 26, 0.05);
  border-radius: 20px;
}

.product-showcase-5 .bonus-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.product-showcase-5 .bonus-badge {
  background: var(--secondary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}

/* Value Section */
.product-showcase-5 .value-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(129, 183, 26, 0.2);
}

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

.product-showcase-5 .original-value,
.product-showcase-5 .current-value {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-showcase-5 .label {
  font-size: 14px;
  color: var(--tertiary-color);
}

.product-showcase-5 .price {
  font-size: 24px;
  font-weight: bold;
}

.product-showcase-5 .price.highlight {
  color: var(--primary-color);
}

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

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

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

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

  .product-showcase-5 .preview-section,
  .product-showcase-5 .details-section {
    padding: 30px;
  }
}

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

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

  .product-showcase-5 .preview-section,
  .product-showcase-5 .details-section {
    padding: 20px;
  }
}
