/* ====================================
   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 2: Modern Box Layout */
.product-showcase-2 {
  padding: 100px 0;
  background: var(--primary-color);
  color: white;
}

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

.product-showcase-2 .product-header {
  text-align: center;
  margin-bottom: 60px;
}

.product-showcase-2 h2 {
  font-size: 48px;
  color: white;
  margin-bottom: 20px;
}

.product-showcase-2 .box-layout {
  max-width: 1000px;
  margin: 0 auto;
}

.product-showcase-2 .info-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-showcase-2 .box-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 40px;
}

.product-showcase-2 .icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-showcase-2 .icon {
  font-size: 40px;
}

.product-showcase-2 .header-text {
  flex: 1;
}

.product-showcase-2 .category-label {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-showcase-2 h3 {
  font-size: 32px;
  color: white;
  margin: 0;
}

.product-showcase-2 .box-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.product-showcase-2 .content-section {
  padding-right: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.product-showcase-2 .description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.product-showcase-2 .feature-list li {
  font-size: 18px;
  margin-bottom: 15px;
  padding-left: 28px;
  position: relative;
}

.product-showcase-2 .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

.product-showcase-2 .media-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-showcase-2 .media-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.product-showcase-2 .info-box:hover .media-container img {
  transform: scale(1.05);
}

.product-showcase-2 .price-section {
  display: flex;
  justify-content: center;
}

.product-showcase-2 .price-tag {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .product-showcase-2 .box-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-showcase-2 .content-section {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 30px;
  }
}

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

  .product-showcase-2 .box-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

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

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

  .product-showcase-2 .info-box {
    padding: 30px;
  }
}
