/* Featured Special Section */
.featured-special {
  position: relative;
  width: 100%;
  min-height: 600px;
  background: linear-gradient(135deg, #3d2817 0%, #2d1e12 100%);
  overflow: hidden;
  margin-top: 100px;
}

.coffee-beans-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background-image: url('https://images.unsplash.com/photo-1514432324607-a09d9b4aefdd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.coffee-beans-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, #3d2817);
}

.featured-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 220px 80px 80px;
  z-index: 2;
  align-items: center;
}

/* Left Content */
.featured-content {
  color: white;
}

.featured-label {
  color: #d2691e;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.featured-title {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
  font-family: Georgia, 'Times New Roman', serif;
  color: #ffffff;
}

.featured-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 580px;
}

.featured-btn {
  padding: 14px 32px;
  background: transparent;
  border: 2px solid white;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.5px;
}

.featured-btn:hover {
  background: white;
  color: #3d2817;
  transform: translateX(4px);
}

/* Right Card */
.featured-card {
  background: linear-gradient(135deg, #f5f0e8 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  max-width: 450px;
  margin-left: auto;
}

.card-image {
  width: 100%;
  height: 280px;
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
  background: #d2b48c;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-title {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #3d2817;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
}

.card-price {
  font-size: 1.4rem;
  font-weight: 600;
  color: #8b4513;
  margin-bottom: 12px;
}

.card-caffeine {
  font-size: 0.9rem;
  color: #654321;
  margin-bottom: 16px;
  font-weight: 500;
}

.card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5a4a3a;
  margin-bottom: 24px;
}

.card-link {
  display: inline-block;
  color: #8b4513;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.card-link:hover {
  color: #d2691e;
  border-bottom-color: #d2691e;
  transform: translateX(4px);
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  .featured-container {
    padding: 200px 50px 60px;
    gap: 40px;
  }
  
  .featured-title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 900px) {
  .featured-container {
    grid-template-columns: 1fr;
    padding: 200px 40px 60px;
    gap: 50px;
  }
  
  .featured-card {
    margin-left: 0;
    max-width: 100%;
  }
  
  .featured-title {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 600px) {
  .coffee-beans-bg {
    height: 120px;
  }
  
  .featured-container {
    padding: 160px 20px 40px;
  }
  
  .featured-title {
    font-size: 2rem;
  }
  
  .featured-description {
    font-size: 0.95rem;
  }
  
  .featured-card {
    padding: 30px 24px;
  }
  
  .card-image {
    height: 220px;
  }
  
  .card-title {
    font-size: 1.4rem;
  }
}
