/* =============================================
   WHY FINE STAR SECTION - COMPLETE STYLES
   ============================================= */

.why-fine-star-section {
  width: 100%;
  background-color: #F5EBD9;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Main wrapper */
.why-fine-star-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Card container - horizontal layout */
.why-fine-star-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 50px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 236, 0.95));
  border-radius: 28px;
  padding: 40px;
  box-shadow: 
    0 30px 60px rgba(78, 55, 25, 0.12),
    0 0 0 1px rgba(196, 92, 73, 0.08);
  position: relative;
  overflow: hidden;
}

.why-fine-star-card::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(196, 92, 73, 0.15), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.why-fine-star-card::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(107, 142, 35, 0.15), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* Image container - Left side */
.why-fine-star-image {
  flex: 0 0 45%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 450px;
}

.why-fine-star-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

.why-fine-star-card:hover .why-fine-star-image img {
  transform: scale(1.03);
}

.why-fine-star-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(61, 42, 23, 0.6) 100%
  );
  border-radius: 20px;
  pointer-events: none;
}

.why-fine-star-image-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: #3d2a17;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* Content container - Right side */
.why-fine-star-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.why-fine-star-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #C45C49;
  background: rgba(196, 92, 73, 0.12);
  padding: 10px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  width: fit-content;
}

.why-fine-star-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.why-fine-star-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #4a4a4a;
  margin-bottom: 30px;
  text-align: justify;
}

/* Highlights/Stats row */
.why-fine-star-highlights {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.why-fine-star-highlights > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-fine-star-highlights span {
  font-size: 2.5rem;
  font-weight: 900;
  color: #C45C49;
  line-height: 1;
}

.why-fine-star-highlights small {
  font-size: 0.85rem;
  color: #666;
  margin-top: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Actions row */
.why-fine-star-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.why-fine-star-btn {
  background: linear-gradient(135deg, #C45C49, #a04b3c);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(196, 92, 73, 0.35);
}

.why-fine-star-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(196, 92, 73, 0.45);
}

.why-fine-star-note {
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */

/* Extra Large screens (4K) */
@media (min-width: 2560px) {
  .why-fine-star-wrap {
    max-width: 2200px;
  }
  
  .why-fine-star-card {
    padding: 80px;
    gap: 80px;
  }
  
  .why-fine-star-image {
    min-height: 700px;
  }
  
  .why-fine-star-title {
    font-size: 4.5rem;
  }
  
  .why-fine-star-text {
    font-size: 1.5rem;
  }
  
  .why-fine-star-highlights span {
    font-size: 4rem;
  }
  
  .why-fine-star-highlights small {
    font-size: 1.1rem;
  }
  
  .why-fine-star-btn {
    padding: 22px 50px;
    font-size: 1.3rem;
  }
  
  .why-fine-star-badge {
    font-size: 1.1rem;
    padding: 14px 24px;
  }
}

/* 2K screens */
@media (min-width: 1920px) and (max-width: 2559px) {
  .why-fine-star-wrap {
    max-width: 1700px;
  }
  
  .why-fine-star-card {
    padding: 60px;
    gap: 60px;
  }
  
  .why-fine-star-image {
    min-height: 550px;
  }
  
  .why-fine-star-title {
    font-size: 3.2rem;
  }
  
  .why-fine-star-text {
    font-size: 1.15rem;
  }
}

/* Large screens */
@media (max-width: 1440px) {
  .why-fine-star-wrap {
    max-width: 1200px;
  }
  
  .why-fine-star-card {
    padding: 35px;
    gap: 40px;
  }
  
  .why-fine-star-image {
    min-height: 400px;
  }
  
  .why-fine-star-title {
    font-size: 2.4rem;
  }
}

/* Medium screens / Tablets */
@media (max-width: 1024px) {
  .why-fine-star-section {
    padding: 50px 0 60px;
  }
  
  .why-fine-star-card {
    flex-direction: column;
    padding: 30px;
    gap: 30px;
  }
  
  .why-fine-star-image {
    flex: none;
    width: 100%;
    min-height: 350px;
  }
  
  .why-fine-star-content {
    width: 100%;
  }
  
  .why-fine-star-title {
    font-size: 2rem;
  }
  
  .why-fine-star-highlights {
    gap: 25px;
  }
  
  .why-fine-star-highlights span {
    font-size: 2rem;
  }
}

/* Small screens / Mobile */
@media (max-width: 768px) {
  .why-fine-star-section {
    padding: 40px 0;
  }
  
  .why-fine-star-wrap {
    padding: 0 15px;
  }
  
  .why-fine-star-card {
    padding: 20px;
    gap: 25px;
    border-radius: 20px;
  }
  
  .why-fine-star-image {
    min-height: 280px;
  }
  
  .why-fine-star-badge {
    font-size: 0.75rem;
    padding: 8px 14px;
  }
  
  .why-fine-star-title {
    font-size: 1.6rem;
  }
  
  .why-fine-star-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .why-fine-star-highlights {
    gap: 20px;
  }
  
  .why-fine-star-highlights span {
    font-size: 1.8rem;
  }
  
  .why-fine-star-highlights small {
    font-size: 0.75rem;
  }
  
  .why-fine-star-btn {
    padding: 14px 28px;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }
  
  .why-fine-star-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .why-fine-star-note {
    font-size: 0.85rem;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .why-fine-star-card {
    padding: 16px;
  }
  
  .why-fine-star-image {
    min-height: 220px;
  }
  
  .why-fine-star-title {
    font-size: 1.4rem;
  }
  
  .why-fine-star-highlights {
    flex-direction: column;
    gap: 15px;
  }
}
