/* ============================================
   REDESIGN (V2) HOMEPAGE STYLES - REFINED
   ============================================ */

/* Features Strip */
.features-strip {
  background: #FFF8F9; /* Very light pink background */
  padding: 40px 20px;
  border-top: 1px solid #fce8eb;
  border-bottom: 1px solid #fce8eb;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.08);
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  background: #FFF0F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 4px;
  font-weight: 700;
}

.feature-text p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
}

@media (max-width: 992px) {
  .features-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .features-container { grid-template-columns: 1fr; }
}


/* Common Header for V2 */
.section-header-v2 {
  text-align: center;
  margin-bottom: 40px;
}

.section-title-v2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.heart-icon {
  font-size: 1.5rem;
  color: var(--primary);
}

.section-desc-v2 {
  font-size: 1rem;
  color: var(--gray-500);
}


/* Categories V2 */
.categories-v2 {
  padding: 80px 20px;
  background: white;
}

.categories-grid-v2 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.category-card-v2 {
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  padding-bottom: 10px;
}

.category-card-v2:hover {
  transform: translateY(-5px);
}

.cat-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 15px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF0F2; /* Light pink background */
  padding: 20px;
  transition: all 0.3s ease;
}

.category-card-v2:hover .cat-img-wrapper {
  box-shadow: 0 10px 25px rgba(196, 30, 58, 0.15);
}

.cat-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.category-card-v2:hover .cat-img-wrapper img {
  transform: scale(1.05);
}

.category-card-v2 h3 {
  font-size: 1rem;
  color: var(--dark);
  margin: 0;
  font-weight: 700;
}

@media (max-width: 992px) {
  .categories-grid-v2 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 576px) {
  .categories-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}


/* Why Choose Us V2 */
.why-us-v2 {
  background: #fdfdfd;
  padding: 80px 20px;
  position: relative;
}

.why-us-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-collage {
  position: relative;
  height: 500px;
}

.collage-item {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border: 5px solid white;
}

.item-1 { width: 60%; height: 60%; top: 0; left: 0; z-index: 2; }
.item-2 { width: 50%; height: 50%; top: 15%; right: 0; z-index: 1; }
.item-3 { width: 55%; height: 55%; bottom: 0; left: 20%; z-index: 3; }
.collage-item img { width: 100%; height: 100%; object-fit: cover; }

.collage-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.15);
  border: 1px solid #fce8eb;
}

.badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 800;
  color: var(--dark);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.badge-heart {
  font-size: 1.5rem;
  margin: 2px 0;
  color: var(--primary);
}

.section-label-red {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.why-us-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
  list-style: none;
  padding: 0;
}

.why-us-features li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.wu-icon-wrapper {
  width: 45px;
  height: 45px;
  background: #FFF0F2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wu-icon { font-size: 1.2rem; }

.wu-text h4 {
  color: var(--dark);
  font-size: 1.05rem;
  margin-bottom: 5px;
  font-weight: 700;
}
.wu-text p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin: 0;
}


/* Best Sellers V2 */
.best-sellers {
  padding: 80px 20px;
  background: #FAFAFA;
}

.products-grid-v2 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.product-card-v2 {
  background: white;
  border-radius: 12px;
  border: 1px solid #eee;
  overflow: hidden;
  transition: all 0.3s ease;
  padding-bottom: 15px;
}

.product-card-v2:hover {
  box-shadow: 0 10px 25px rgba(196, 30, 58, 0.08);
  transform: translateY(-5px);
  border-color: #fce8eb;
}

.product-image-v2 {
  width: 100%;
  aspect-ratio: 1/1;
  background: #FFF0F2; /* Pink background as in screenshot */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 15px;
  padding: 10px;
}

.product-image-v2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info-v2 {
  padding: 0 15px;
}

.product-name-v2 {
  font-size: 0.95rem;
  color: var(--dark);
  margin: 0 0 10px;
  font-weight: 700;
}

.product-meta-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.current-price-v2 {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
}

.product-rating-v2 {
  font-size: 0.8rem;
  color: #4a4a4a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-rating-v2::before {
  content: "★";
  color: #F59E0B;
  font-size: 0.9rem;
}
.product-rating-v2 span {
  color: var(--gray-400);
  font-weight: 400;
}


/* Modern Rounded Buttons */
.btn-outline-red {
  display: block;
  width: 100%;
  padding: 8px 0;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 50px; /* Pill shape */
  font-weight: 600;
  font-size: 0.8rem;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-outline-red:hover {
  background: var(--primary);
  color: white;
}

.btn-outline-red-rounded {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-outline-red-rounded:hover {
  background: var(--primary);
  color: white;
}

.btn-primary-solid {
  display: inline-block;
  padding: 14px 35px;
  background: var(--primary);
  color: white;
  border-radius: 50px; /* Pill shape */
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}
.btn-primary-solid:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.3);
}


/* Bulk Banner */
.bulk-banner-wrap {
  padding: 40px 20px 80px;
  background: #FAFAFA;
}

.bulk-banner {
  max-width: 1200px;
  margin: 0 auto;
  background: #FFF0F2; /* Solid pinkish background */
  border-radius: 20px;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid #fce8eb;
}

.bulk-label {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
  display: block;
}

.bulk-banner-text h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.bulk-banner-text p {
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.6;
}

.bulk-banner-img {
  flex: 1;
  max-width: 500px;
}

@media (max-width: 768px) {
  .bulk-banner {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }
}


/* Testimonials V2 */
.testimonials-v2 {
  padding: 80px 20px;
  background: white;
}

.testimonials-grid-v2 {
  max-width: 1200px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card-v2 {
  background: white;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  position: relative;
}

.testi-quote-icon {
  color: var(--primary);
  font-size: 3rem;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 15px;
  display: block;
}

.testi-text {
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.testi-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.testi-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.9rem;
}

.testi-stars {
  color: #F59E0B;
  font-size: 0.9rem;
}

.testi-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testi-pagination .dot {
  width: 8px;
  height: 8px;
  background: #e0e0e0;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.testi-pagination .dot.active {
  background: var(--primary);
}
