/* ====================================
   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 Template 1: Clean Grid Layout */
.product-showcase-1 {
  padding: 100px 0;
  background: white;
}

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

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

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

.product-showcase-1 .lead-text {
  font-size: 24px;
  color: var(--tertiary-color);
  max-width: 700px;
  margin: 0 auto;
}

.product-showcase-1 .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.product-showcase-1 .product-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-showcase-1 .product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-showcase-1 .product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.product-showcase-1 .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

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

.product-showcase-1 h3 {
  font-size: 24px;
  color: var(--tertiary-color);
  margin-bottom: 15px;
}

.product-showcase-1 .feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.product-showcase-1 .feature-list li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 12px;
  color: var(--tertiary-color);
}

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

.product-showcase-1 .value-tag {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: bold;
}
