/* ====================================
   Root Variables and Base Styles
   ==================================== */
/* Root Variables */
:root {
  --primary-color: #81b71a;
  --secondary-color: #4ebbf7;
  --tertiary-color: #6d6d6d;
  --body-font: Arial, sans-serif;
  --title-font: Helvetica, Arial, sans-serif;
}

/* Base Typography */
body {
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
}

p,
span,
a,
li,
button {
  font-family: var(--body-font);
}

/* ====================================
     Common Components
     ==================================== */
.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  opacity: 0.3;
}

.feature-item {
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
}

.tag {
  transition: background-color 0.2s ease;
}

.tag:hover {
  background-color: var(--secondary-color);
}

.cta-button {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product-showcase-4 {
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.product-showcase-4 .showcase-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-showcase-4 .value-header {
  text-align: center;
  margin-bottom: 80px;
}

.product-showcase-4 h2 {
  font-size: 48px;
  color: var(--tertiary-color);
  margin-bottom: 20px;
}

.product-showcase-4 .subtitle {
  font-size: 20px;
  color: var(--tertiary-color);
  opacity: 0.8;
}

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

.product-showcase-4 .zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

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

/* Image Styles */
.product-showcase-4 .zigzag-image {
  position: relative;
  padding: 20px;
}

.product-showcase-4 .image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.product-showcase-4 .image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.product-showcase-4 .image-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  color: var(--tertiary-color);
  backdrop-filter: blur(10px);
}

/* Content Styles */
.product-showcase-4 .zigzag-content {
  padding: 40px;
}

.product-showcase-4 .content-inner {
  max-width: 480px;
}

.product-showcase-4 .status-badge {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-showcase-4 .status-badge.premium {
  background: #ffd700;
  color: var(--tertiary-color);
}

.product-showcase-4 h3 {
  font-size: 36px;
  color: var(--tertiary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.product-showcase-4 .component-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--tertiary-color);
  margin-bottom: 30px;
  opacity: 0.8;
}

/* Highlights Grid */
.product-showcase-4 .highlights-grid {
  display: grid;
  gap: 15px;
  margin-bottom: 30px;
}

.product-showcase-4 .highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-showcase-4 .highlight-icon {
  width: 24px;
  height: 24px;
  background: rgba(129, 183, 26, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.product-showcase-4 .highlight-text {
  font-size: 16px;
  color: var(--tertiary-color);
}

/* Action Area */
.product-showcase-4 .action-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 15px;
  margin-top: 30px;
}

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

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

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

.product-showcase-4 .value-tag {
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
}

/* Responsive Design for Template 4 */
@media (max-width: 1024px) {
  .product-showcase-4 .zigzag-item {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .product-showcase-4 .content-inner {
    max-width: 100%;
  }
}

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

  .product-showcase-4 h2 {
    font-size: 36px;
  }

  .product-showcase-4 h3 {
    font-size: 28px;
  }

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

  .product-showcase-4 .action-area {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
