/* ==========================================================================
   AFRA ENTERPRISE - HOMEPAGE CSS v3.0
   Brand palette matched exactly to the AFRA logo:
     Primary Green : #2DB85A  |  Accent Gold: #F5A623  |  BG: #EFF7F2
   ========================================================================== */

/* --- CSS Reset & Base --- */
:root {
  /* PRIMARY — from logo's main leaf green */
  --home-primary:       #2DB85A;
  --home-primary-dark:  #1E8A42;
  --home-primary-deep:  #145C2C;
  --home-primary-light: #A8D5B5;
  --home-primary-wash:  #EFF7F2;

  /* SECONDARY nav/footer background */
  --home-secondary:     #145C2C;

  /* ACCENT — from logo's golden leaf */
  --home-accent:        #F5A623;
  --home-accent-dark:   #D4860E;
  --home-accent-light:  #FAD282;

  /* SURFACES */
  --home-bg:          #EFF7F2;
  --home-surface:     #FFFFFF;
  --home-surface-alt: #F5FBF7;

  /* TEXT */
  --home-text-main:   #0F2F1A;
  --home-text-muted:  #4A6E58;
  --home-text-light:  #8AB89A;

  /* BORDER */
  --home-border:      #D1E8DA;

  /* SHADOWS — very light, green-tinted */
  --home-shadow-sm:    0 2px 8px rgba(15,47,26,0.05);
  --home-shadow-md:    0 8px 24px rgba(15,47,26,0.07);
  --home-shadow-lg:    0 20px 48px rgba(15,47,26,0.09);
  --home-shadow-hover: 0 16px 40px rgba(45,184,90,0.14);

  /* RADIUS */
  --home-radius-sm:   8px;
  --home-radius-md:   14px;
  --home-radius-lg:   20px;
  --home-radius-xl:   32px;
  --home-radius-full: 9999px;

  /* TRANSITION */
  --home-transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  /* FONTS */
  --font-heading: 'Hind Siliguri', sans-serif;
  --font-body:    'Hind Siliguri', sans-serif;
}


html {
    scroll-behavior: smooth;
}

body.home-page {
    background-color: var(--home-bg);
    color: var(--home-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* --- Container & Grid System --- */
.home-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-grid {
    display: grid;
    gap: 24px;
}

.home-grid-2 { grid-template-columns: repeat(1, 1fr); }
.home-grid-3 { grid-template-columns: repeat(1, 1fr); }
.home-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
.home-grid-6 { grid-template-columns: repeat(2, 1fr); gap: 16px; }

@media (min-width: 640px) {
    .home-grid-2 { grid-template-columns: repeat(2, 1fr); }
    .home-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .home-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .home-grid-6 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
    .home-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .home-grid-4 { grid-template-columns: repeat(3, 1fr); }
    .home-grid-6 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
    .home-grid-4 { grid-template-columns: repeat(4, 1fr); }
    .home-grid-6 { grid-template-columns: repeat(6, 1fr); }
}

/* --- Typography Utilities --- */
.home-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--home-text-main);
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.home-section-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--home-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 12px;
}

.home-section-desc {
    font-size: 1.125rem;
    color: var(--home-text-muted);
    max-width: 600px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-10 { margin-bottom: 40px; }
.mb-16 { margin-bottom: 64px; }
.mt-10 { margin-top: 40px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.py-20 { padding-top: 80px; padding-bottom: 80px; }

/* --- Buttons --- */
.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--home-radius-full);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--home-transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
}

.home-btn-primary {
    background: var(--home-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(45, 184, 90, 0.30);
}

.home-btn-primary:hover {
    background: var(--home-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(45, 184, 90, 0.40);
    color: white;
}

.home-btn-outline {
    background: transparent;
    color: var(--home-primary);
    border: 2px solid var(--home-primary);
}

.home-btn-outline:hover {
    background: var(--home-primary);
    color: white;
}

/* --- Hero Section --- */
.home-hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--home-primary-deep) 0%, var(--home-primary-dark) 60%, var(--home-primary) 100%);
    overflow: hidden;
    color: white;
    border-radius: 0 0 40px 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .home-hero {
        padding: 120px 0 100px;
    }
}

.home-hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 80%; height: 200%;
    background: radial-gradient(circle, rgba(80, 200, 120, 0.15) 0%, transparent 60%);
    transform: rotate(-15deg);
    pointer-events: none;
}

.home-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

@media (min-width: 992px) {
    .home-hero-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.home-hero-content {
    flex: 1;
    z-index: 10;
    max-width: 600px;
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--home-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: #A8E6C0;
    backdrop-filter: blur(8px);
    margin-bottom: 24px;
}

.home-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: white; /* Fixed from dark text */
}

.home-hero-title span {
    color: var(--home-accent);
}

.home-hero-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 32px;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.home-hero-visual {
    flex: 1;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 500px;
}

.home-hero-image-wrapper {
    position: relative;
    border-radius: var(--home-radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border: 4px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--home-transition);
}

.home-hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.home-hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
}

/* --- 3 Promo Banners --- */
.home-promo-banner {
    border-radius: var(--home-radius-lg);
    overflow: hidden;
    position: relative;
    color: white;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
    box-shadow: var(--home-shadow-sm);
    transition: var(--home-transition);
}

.home-promo-banner:hover {
    transform: translateY(-5px);
    box-shadow: var(--home-shadow-md);
}

.home-promo-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.home-promo-banner:hover .home-promo-bg {
    transform: scale(1.05);
}

.home-promo-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.home-promo-content {
    position: relative;
    z-index: 3;
    max-width: 80%;
}

.home-promo-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.home-promo-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
}

.home-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--home-accent);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.home-promo-btn:hover {
    color: white;
}

/* Header Nav Fixes */
.nav-item {
    white-space: nowrap;
    font-size: 0.95rem;
}
.nav-links {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    padding-bottom: 4px;
}
.nav-links::-webkit-scrollbar {
    height: 0px;
}


/* --- Categories Section --- */
.home-category-card {
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-lg);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: var(--home-transition);
    box-shadow: var(--home-shadow-sm);
}

.home-category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--home-shadow-md);
    border-color: var(--home-primary);
}

.home-category-icon {
    width: 72px;
    height: 72px;
    background: var(--home-surface-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 16px;
    transition: var(--home-transition);
    overflow: hidden;
}

.home-category-card:hover .home-category-icon {
    background: var(--home-primary);
    color: white;
    transform: scale(1.1);
}

.home-category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-category-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--home-text-main);
    margin: 0;
}

/* --- Product Cards --- */
.home-product-card {
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-lg);
    overflow: hidden;
    transition: var(--home-transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--home-shadow-sm);
    position: relative;
}

.home-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--home-shadow-hover);
    border-color: rgba(45, 142, 60, 0.3);
}

.home-product-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background: #f8f9fa;
    overflow: hidden;
}

.home-product-image img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-product-card:hover .home-product-image img {
    transform: scale(1.08);
}

.home-product-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--home-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--home-radius-full);
    z-index: 2;
}

.home-product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.home-product-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--home-text-main);
    text-decoration: none;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-product-title:hover {
    color: var(--home-primary);
}

.home-product-price-row {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
}

.home-product-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--home-primary);
}

.home-product-old-price {
    font-size: 0.875rem;
    color: var(--home-text-light);
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 400;
}

.home-product-add {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--home-surface-alt);
    color: var(--home-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--home-transition);
}

.home-product-add:hover {
    background: var(--home-primary);
    color: white;
}

/* --- Offer Banner --- */
.home-offer {
    position: relative;
    border-radius: var(--home-radius-xl);
    overflow: hidden;
    padding: 60px 32px;
    color: white;
    box-shadow: var(--home-shadow-lg);
    background-color: var(--home-secondary);
}

@media (min-width: 768px) {
    .home-offer {
        padding: 80px 64px;
    }
}

.home-offer-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.home-offer-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, var(--home-secondary) 0%, rgba(15, 61, 25, 0.7) 100%);
    z-index: 2;
}

.home-offer-content {
    position: relative;
    z-index: 5;
    max-width: 500px;
}

.home-offer-badge {
    display: inline-block;
    background: var(--home-accent);
    color: white;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--home-radius-full);
    font-size: 0.875rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.home-offer-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
}

.home-offer-title span {
    color: var(--home-accent);
}

/* --- Reviews --- */
.home-review-card {
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-lg);
    padding: 32px;
    box-shadow: var(--home-shadow-sm);
    transition: var(--home-transition);
    position: relative;
}

.home-review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--home-shadow-md);
}

.home-review-quote {
    position: absolute;
    top: 24px; right: 24px;
    color: var(--home-surface-alt);
    font-size: 48px;
    line-height: 1;
}

.home-review-stars {
    color: var(--home-accent);
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.home-review-text {
    font-size: 1rem;
    color: var(--home-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.home-review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.home-review-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--home-surface-alt);
    color: var(--home-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.home-review-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--home-text-main);
    margin: 0;
}

.home-review-loc {
    font-size: 0.875rem;
    color: var(--home-text-light);
}

/* --- Features (Why Choose Us) --- */
.home-feature-card {
    background: var(--home-surface);
    border-radius: var(--home-radius-lg);
    padding: 40px 24px;
    text-align: center;
    border: 1px solid var(--home-border);
    transition: var(--home-transition);
}

.home-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--home-shadow-md);
    border-color: var(--home-primary);
}

.home-feature-icon {
    width: 80px; height: 80px;
    background: var(--home-surface-alt);
    color: var(--home-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 24px;
    transition: var(--home-transition);
}

.home-feature-card:hover .home-feature-icon {
    background: var(--home-primary);
    color: white;
}

.home-feature-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.home-feature-desc {
    color: var(--home-text-muted);
    font-size: 0.95rem;
}

/* --- FAQ Accordion --- */
.home-faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.home-faq-item {
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-md);
    margin-bottom: 16px;
    overflow: hidden;
}

.home-faq-btn {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--home-text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--home-transition);
}

.home-faq-btn:hover {
    background: var(--home-surface-alt);
}

.home-faq-btn.active {
    color: var(--home-primary);
    border-bottom: 1px solid var(--home-border);
}

.home-faq-icon {
    transition: transform 0.3s ease;
}

.home-faq-btn.active .home-faq-icon {
    transform: rotate(180deg);
}

.home-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.home-faq-content-inner {
    padding: 24px;
    color: var(--home-text-muted);
    line-height: 1.7;
}

/* --- Newsletter & Footer --- */
.home-newsletter {
    background: var(--home-secondary);
    border-radius: var(--home-radius-xl) var(--home-radius-xl) 0 0;
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.home-newsletter-content {
    position: relative;
    z-index: 5;
    max-width: 600px;
    margin: 0 auto;
}

.home-newsletter-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;

    color: #ffffff !important;}

.home-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

@media (min-width: 640px) {
    .home-newsletter-form {
        flex-direction: row;
    }
}

.home-newsletter-input {
    flex-grow: 1;
    padding: 16px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    background: #ffffff !important;
    color: #1A261C !important;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}
.home-newsletter-input::placeholder {
    color: #64748B !important;
    opacity: 1 !important;
}

.home-newsletter-btn {
    padding: 16px 36px;
    border-radius: 50px;
    background: var(--home-accent) !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.40) !important;
}

.home-newsletter-btn:hover {
    background: var(--home-accent-dark) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.55) !important;
}

.home-footer {
    background: #FFFFFF;
    color: var(--home-text-muted);
    padding: 80px 0 32px;
    border-top: 1px solid #E5E7EB;
}

.home-footer-title {
    color: var(--home-text-main);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.home-footer-link {
    color: var(--home-text-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.home-footer-link:hover {
    color: var(--home-primary);
}

.home-footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.home-footer-social a {
    width: 40px; height: 40px;
    background: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4B5563;
    transition: var(--home-transition);
}

.home-footer-social a:hover {
    background: var(--home-primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(45, 184, 90, 0.4);
    color: #ffffff;
}

.home-footer-bottom {
    border-top: 1px solid #E5E7EB;
    margin-top: 48px;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    color: var(--home-text-muted);
}

@media (min-width: 768px) {
    .home-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* --- Reviews Carousel / Slider Animated Styles --- */
.reviews-slider-container {
    position: relative;
    overflow: hidden;
    padding: 15px 0 35px 0;
}
.reviews-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) !important;
    gap: 20px;
}
.reviews-slide {
    flex: 0 0 calc(33.333% - 13.333px);
    box-sizing: border-box;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reviews-slide .home-review-card {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Mobile & Tablet Slider 3D / Zoom Animations */
@media (max-width: 767.98px) {
    .reviews-slide {
        flex: 0 0 100% !important;
    }
    .reviews-slider-container {
        padding: 10px 0 45px 0;
    }
    .reviews-slide:not(.active-slide) .home-review-card {
        transform: scale(0.90) translateY(10px);
        opacity: 0.45;
        filter: blur(1px);
        box-shadow: none !important;
    }
    .reviews-slide.active-slide .home-review-card {
        transform: scale(1) translateY(0px);
        opacity: 1;
        filter: blur(0px);
        box-shadow: 0 18px 40px -10px rgba(45, 184, 90, 0.15) !important;
        border-color: var(--home-primary) !important;
    }
}

/* Floating Quote Animation */
@keyframes floatQuoteAnim {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.18; }
    50% { transform: translateY(-8px) rotate(6deg); opacity: 0.35; color: var(--home-primary); }
}
.home-review-quote {
    animation: floatQuoteAnim 4.5s ease-in-out infinite !important;
    transition: all 0.4s ease;
}

/* Star Shimmer / Pulse Animation */
@keyframes starPulseAnim {
    0% { transform: scale(1); }
    50% { transform: scale(1.25) rotate(-3deg); text-shadow: 0 0 10px rgba(240, 160, 48, 0.8); }
    100% { transform: scale(1); }
}
.reviews-slide.active-slide .home-review-stars i {
    animation: starPulseAnim 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.reviews-slide.active-slide .home-review-stars i:nth-child(1) { animation-delay: 0.05s; }
.reviews-slide.active-slide .home-review-stars i:nth-child(2) { animation-delay: 0.12s; }
.reviews-slide.active-slide .home-review-stars i:nth-child(3) { animation-delay: 0.19s; }
.reviews-slide.active-slide .home-review-stars i:nth-child(4) { animation-delay: 0.26s; }
.reviews-slide.active-slide .home-review-stars i:nth-child(5) { animation-delay: 0.33s; }

/* Author Avatar Glowing Ripple */
@keyframes avatarRippleAnim {
    0% { box-shadow: 0 0 0 0 rgba(45, 184, 90, 0.45); }
    70% { box-shadow: 0 0 0 12px rgba(45, 184, 90, 0); }
    100% { box-shadow: 0 0 0 0 rgba(45, 184, 90, 0); }
}
.reviews-slide.active-slide .home-review-avatar {
    animation: avatarRippleAnim 2.2s infinite;
    border: 2px solid var(--home-primary);
}

/* Navigation Buttons Spring & Hover */
.reviews-slider-btn {
    position: absolute;
    top: calc(50% - 20px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--home-primary, #2DB85A);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--home-primary, #145C2C);
    font-size: 18px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.reviews-prev-btn { left: 15px !important; }
.reviews-next-btn { right: 15px !important; }

.reviews-slider-btn:hover {
    background: var(--home-primary, #2DB85A) !important;
    color: white !important;
    transform: scale(1.15) !important;
    box-shadow: 0 8px 22px rgba(45, 184, 90, 0.28) !important;
}
.reviews-slider-btn:active {
    transform: scale(0.85) !important;
}
@media (max-width: 767.98px) {
    .reviews-slider-btn {
        top: calc(50% - 30px);
    }
    .reviews-prev-btn { left: 4px !important; }
    .reviews-next-btn { right: 4px !important; }
}

/* Dots Smooth Width Animation & Glow */
.reviews-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}
.reviews-slider-dots .custom-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(45, 184, 90, 0.18);
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reviews-slider-dots .custom-slider-dot.active {
    background: var(--home-primary);
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(45, 184, 90, 0.40);
}

* {
    font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif !important;
}

/* Hind Siliguri Bold Price & Strikethrough Readability */
del, s, strike, .price-original, .original-price, .old-price {
    font-weight: 700 !important;
    color: #64748B !important;
    text-decoration: line-through !important;
    text-decoration-color: #64748B !important;
    text-decoration-thickness: 1.5px !important;
    opacity: 0.9 !important;
    margin-left: 6px !important;
    display: inline-block !important;
}