/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* (Fonts loaded async in HTML head — no CSS import needed) */

body {
    font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding-bottom: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.hero-section {
    background: #fff;
    position: relative;
    padding: 60px 0 0;
    overflow: hidden;
    min-height: 550px;
    background-image:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.05"><circle cx="100" cy="100" r="80" fill="none" stroke="%23f57c00" stroke-width="2"/><circle cx="100" cy="100" r="60" fill="none" stroke="%23f57c00" stroke-width="1"/><path d="M100 20 L100 180 M20 100 L180 100" stroke="%23f57c00" stroke-width="1"/></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.05"><circle cx="100" cy="100" r="80" fill="none" stroke="%23f57c00" stroke-width="2"/><circle cx="100" cy="100" r="60" fill="none" stroke="%23f57c00" stroke-width="1"/><path d="M100 20 L100 180 M20 100 L180 100" stroke="%23f57c00" stroke-width="1"/></svg>');
    background-position: left center, right center;
    background-repeat: no-repeat;
    background-size: 400px 400px;
}


.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: 24px;
}

.hero-text {
    flex: 1;
    padding-right: 40px;
}

.brand-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.brand-logo img {
    height: 60px;
    margin-right: 10px;
}

.brand-logo span {
    font-size: 24px;
    font-weight: 700;
    color: #f57c00;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #f57c00;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-order {
    display: inline-block;
    background: linear-gradient(135deg, #f57c00, #ff9800);
    color: #fff;
    padding: 15px 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #f57c00;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-order:hover {
    background: transparent;
    color: #f57c00;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Features Bar */
.features-bar {
    background: transparent;
    padding: 60px 0;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 40px 20px;
    background: url('../essence/feature_watch.webp') center/cover no-repeat fixed;
}

/* Dark overlay on feature boxes background image */
.features-list::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.82), rgba(20, 18, 30, 0.88));
    z-index: 0;
}

.feature-item {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.07) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 15px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4) !important;
    border-color: rgba(255, 193, 7, 0.3) !important;
}

.feature-icon {
    font-size: 35px;
    color: #ffc107 !important;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.35));
}

.feature-item:hover .feature-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 12px rgba(255, 193, 7, 0.5));
}

.feature-title {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.feature-desc {
    font-size: 14px;
    color: #ffc107 !important;
    margin: 0;
    line-height: 1.6;
}

/* Products Section */
.products-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Centered products when less than 4 */
.products-grid.products-centered {
    justify-content: center;
}

.products-grid.products-count-1 {
    grid-template-columns: minmax(280px, 320px);
    justify-content: center;
}

.products-grid.products-count-2 {
    grid-template-columns: repeat(2, minmax(280px, 320px));
    justify-content: center;
}

.products-grid.products-count-3 {
    grid-template-columns: repeat(3, minmax(280px, 320px));
    justify-content: center;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 3px solid transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card.selected {
    border-color: #f57c00;
    box-shadow: 0 5px 25px rgba(245, 124, 0, 0.3);
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #fff;
    position: relative;
    flex-shrink: 0;
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d32f2f;
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.regular-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #f57c00;
}

.btn-product-order {
    display: block;
    background: linear-gradient(135deg, #f57c00, #ff9800);
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    margin-top: auto;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-product-order:hover {
    background: linear-gradient(135deg, #e65100, #f57c00);
}

/* Ramadan Free Delivery Promo Section */
.ramadan-promo-section {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(135deg, #0c1a0f, #1a3a2a, #0d2818, #142e1c);
    background-size: 400% 400%;
    animation: ramadanGradientShift 8s ease infinite;
    overflow: hidden;
    border-top: 3px solid rgba(255, 193, 7, 0.4);
    border-bottom: 3px solid rgba(255, 193, 7, 0.4);
}

@keyframes ramadanGradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Shimmer sweep across section */
.ramadan-promo-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.06), rgba(255, 255, 255, 0.08), rgba(255, 193, 7, 0.06), transparent);
    animation: ramadanShimmerSweep 4s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes ramadanShimmerSweep {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

/* Floating particles */
.ramadan-promo-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.ramadan-promo-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 193, 7, 0.5);
    border-radius: 50%;
    animation: ramadanFloat 6s ease-in-out infinite;
}

.ramadan-promo-particles span:nth-child(1) {
    left: 5%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.ramadan-promo-particles span:nth-child(2) {
    left: 15%;
    top: 70%;
    animation-delay: 1s;
    animation-duration: 7s;
    width: 3px;
    height: 3px;
}

.ramadan-promo-particles span:nth-child(3) {
    left: 30%;
    top: 40%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.ramadan-promo-particles span:nth-child(4) {
    left: 45%;
    top: 80%;
    animation-delay: 0.5s;
    animation-duration: 8s;
    width: 5px;
    height: 5px;
}

.ramadan-promo-particles span:nth-child(5) {
    left: 60%;
    top: 15%;
    animation-delay: 3s;
    animation-duration: 5.5s;
}

.ramadan-promo-particles span:nth-child(6) {
    left: 70%;
    top: 60%;
    animation-delay: 1.5s;
    animation-duration: 7s;
    width: 3px;
    height: 3px;
}

.ramadan-promo-particles span:nth-child(7) {
    left: 80%;
    top: 30%;
    animation-delay: 2.5s;
    animation-duration: 6.5s;
}

.ramadan-promo-particles span:nth-child(8) {
    left: 90%;
    top: 75%;
    animation-delay: 0.8s;
    animation-duration: 5s;
    width: 5px;
    height: 5px;
}

.ramadan-promo-particles span:nth-child(9) {
    left: 25%;
    top: 90%;
    animation-delay: 3.5s;
    animation-duration: 6s;
}

.ramadan-promo-particles span:nth-child(10) {
    left: 55%;
    top: 50%;
    animation-delay: 1.2s;
    animation-duration: 7.5s;
    width: 3px;
    height: 3px;
}

@keyframes ramadanFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-30px) scale(1.5);
        opacity: 0.9;
    }
}

/* Content */
.ramadan-promo-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

/* Ramadan badge */
.ramadan-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 152, 0, 0.1));
    border: 1px solid rgba(255, 193, 7, 0.35);
    border-radius: 50px;
    padding: 8px 24px;
    margin-bottom: 25px;
    color: #ffc107;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ramadan-promo-badge i {
    font-size: 16px;
    animation: ramadanMoonPulse 2s ease-in-out infinite;
}

@keyframes ramadanMoonPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 4px rgba(255, 193, 7, 0.4));
    }

    50% {
        transform: scale(1.2) rotate(10deg);
        filter: drop-shadow(0 0 12px rgba(255, 193, 7, 0.7));
    }
}

/* Title */
.ramadan-promo-title {
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ramadan-truck-icon {
    display: inline-block;
    color: #ffc107;
    margin-right: 10px;
    font-size: 36px;
    animation: ramadanTruckBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.5));
}

@keyframes ramadanTruckBounce {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(8px);
    }

    75% {
        transform: translateX(-4px);
    }
}

.ramadan-highlight {
    color: #ffc107;
    position: relative;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.4), 0 0 40px rgba(255, 193, 7, 0.2);
}

/* Divider */
.ramadan-promo-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px auto;
    max-width: 300px;
}

.ramadan-promo-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.5), transparent);
}

.ramadan-promo-divider i {
    color: #ffc107;
    font-size: 12px;
    animation: ramadanStarSpin 4s linear infinite;
}

@keyframes ramadanStarSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.3);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Description */
.ramadan-promo-desc {
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin-bottom: 30px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.ramadan-promo-desc strong {
    color: #ffc107;
    font-weight: 700;
}

/* CTA Button */
.ramadan-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 45px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #0c1a0f;
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.3), 0 0 0 0 rgba(255, 193, 7, 0.4);
    animation: ramadanBtnGlow 2s ease-in-out infinite;
}

@keyframes ramadanBtnGlow {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(255, 193, 7, 0.3), 0 0 0 0 rgba(255, 193, 7, 0.4);
    }

    50% {
        box-shadow: 0 8px 40px rgba(255, 193, 7, 0.5), 0 0 0 8px rgba(255, 193, 7, 0.1);
    }
}

.ramadan-promo-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(255, 193, 7, 0.5);
}

.ramadan-promo-btn .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: ramadanBtnShine 3s ease-in-out infinite;
}

@keyframes ramadanBtnShine {
    0% {
        left: -100%;
    }

    60% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ramadan-promo-section {
        padding: 50px 0;
    }

    .ramadan-promo-title {
        font-size: 22px;
    }

    .ramadan-truck-icon {
        font-size: 26px;
        display: block;
        margin: 0 auto 10px;
    }

    .ramadan-promo-desc {
        font-size: 14px;
        line-height: 1.8;
        padding: 0 10px;
    }

    .ramadan-promo-btn {
        padding: 14px 35px;
        font-size: 16px;
    }
}

/* Offer Section */
.offer-section {
    background: linear-gradient(135deg, #1a5f2a, #2e7d32);
    padding: 60px 0;
    text-align: center;
}

.offer-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.offer-box {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    border-radius: 15px;
    padding: 30px 80px 30px 100px;
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.offer-badge {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #f57c00;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.offer-regular-price {
    font-size: 18px;
    color: #333;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.offer-special-price {
    font-size: 28px;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 5px;
}

.offer-note {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.btn-offer-order {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-offer-order:hover {
    background: #555;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.85), rgba(44, 62, 80, 0.85)), url('../essence/watch.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0;
}

.features-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.features-text {
    flex: 1;
}

.features-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 25px;
    border-bottom: 3px solid #ffc107;
    padding-bottom: 10px;
    display: inline-block;
}

.features-list-detailed {
    list-style: none;
}

.features-list-detailed li {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.features-list-detailed li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
}

.features-image {
    flex: 0 0 300px;
}

.features-image img {
    width: 100%;
    border-radius: 10px;
}

/* Why Buy Section */
.why-buy-section {
    background: #fff;
    padding: 60px 0;
}

.why-buy-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.why-buy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-buy-box {
    background: #fff;
    border: 2px dashed #72b01d;
    border-radius: 15px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.why-buy-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(114, 176, 29, 0.1);
}

.why-buy-icon {
    font-size: 30px;
    color: #72b01d;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.why-buy-box:hover .why-buy-icon {
    transform: scale(1.1);
}

.why-buy-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
}

/* Media Section (Video/Image Carousel) */
.media-section {
    background: url('../essence/video_watch.webp') center/cover no-repeat fixed !important;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.media-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.85), rgba(20, 18, 30, 0.90));
    z-index: 0;
}

.media-section>* {
    position: relative;
    z-index: 1;
}

.media-section .section-title {
    color: #ffffff !important;
}

.media-carousel-container {
    max-width: 900px;
    margin: 0 auto;
}

.media-main-display {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.media-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.media-item.active {
    opacity: 1;
    visibility: visible;
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Navigation Arrows */
.media-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.media-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.media-nav-prev {
    left: 15px;
}

.media-nav-next {
    right: 15px;
}

/* Thumbnail Gallery */
.media-thumbnails {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding: 10px 0;
    overflow-x: auto;
}

.media-thumb {
    position: relative;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.media-thumb:hover {
    border-color: #f57c00;
    transform: scale(1.05);
}

.media-thumb.active {
    border-color: #f57c00;
    box-shadow: 0 4px 15px rgba(245, 124, 0, 0.4);
}

.media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.thumb-video-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    z-index: -1;
}

/* Media Counter */
.media-counter {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.media-counter .current-media {
    color: #f57c00;
    font-weight: 700;
}

/* Testimonials Section */
.testimonials-section {
    background: url('../essence/review_watch.webp') center/cover no-repeat fixed !important;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.82), rgba(20, 18, 30, 0.88));
    z-index: 0;
}

.testimonials-section>* {
    position: relative;
    z-index: 1;
}

.testimonials-section .testimonials-title {
    color: #ffffff !important;
}

.testimonials-header-content {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffc107;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.testimonials-rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.summary-stars {
    color: #ffc107;
    font-size: 20px;
}

.summary-text {
    color: #fff;
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

.testimonials-slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 15px;
    opacity: 0.4;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
}

.card-inner {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-quote-mark {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 60px;
    color: #ffc107;
    opacity: 0.15;
    line-height: 1;
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #ffc107;
    padding: 3px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f2f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #65676b;
}

.avatar-placeholder i {
    font-size: 35px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-role {
    color: #ffc107;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 16px;
    display: flex;
    gap: 4px;
}

.testimonial-content {
    margin-bottom: 30px;
    flex: 1;
}

.testimonial-text {
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    opacity: 0.95;
}

.testimonial-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-date {
    color: #fff;
    font-size: 14px;
    opacity: 0.6;
}

.verified-badge {
    color: #4caf50;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 193, 7, 0.3);
    background: transparent;
    color: #ffc107;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #ffc107;
    color: #0f4d19;
    border-color: #ffc107;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* Pagination Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #ffc107;
    width: 30px;
    border-radius: 10px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-title {
        font-size: 30px;
    }

    .card-inner {
        padding: 25px;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .testimonial-name {
        font-size: 18px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonial-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .testimonial-stars {
        order: -1;
    }

    .testimonial-quote-mark {
        font-size: 40px;
        top: 20px;
        right: 25px;
    }
}

/* Contact Section */
.contact-section {
    background: #f5f5f5;
    padding: 60px 0;
    text-align: center;
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-box {
    background: #fff;
    border: 2px dashed #ddd;
    border-radius: 15px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-box.whatsapp {
    border-color: #25d366;
}

.contact-box.messenger {
    border-color: #0084ff;
}

.contact-box.phone {
    border-color: #f57c00;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-box.whatsapp .contact-icon {
    color: #25d366;
}

.contact-box.messenger .contact-icon {
    color: #0084ff;
}

.contact-box.phone .contact-icon {
    color: #f57c00;
}

.contact-box-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-grid {
        gap: 10px;
        padding: 0 10px;
    }

    .contact-box {
        padding: 20px 10px;
    }

    .contact-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .contact-box-title {
        font-size: 12px;
    }
}

/* Order Form Section */
.order-form-section {
    background: #fff;
    padding: 60px 0;
}

.order-form-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.order-form-container {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
}

.form-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group label span {
    color: #d32f2f;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
    transition: border-color 0.3s ease;
    font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #f57c00;
}

.shipping-section {
    margin-top: 25px;
}

.shipping-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.shipping-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.shipping-box {
    cursor: pointer;
    position: relative;
}

.shipping-box input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.shipping-box-content {
    background: #fff;
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.shipping-icon {
    font-size: 24px;
    color: #666;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.shipping-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.shipping-cost {
    font-size: 16px;
    font-weight: 700;
    color: #f57c00;
}

/* Checked State */
.shipping-box input[type="radio"]:checked+.shipping-box-content {
    border-color: #f57c00;
    background-color: rgba(245, 124, 0, 0.05);
    box-shadow: 0 5px 15px rgba(245, 124, 0, 0.1);
}

.shipping-box input[type="radio"]:checked+.shipping-box-content .shipping-icon {
    color: #f57c00;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .shipping-grid {
        gap: 10px;
    }

    .shipping-box-content {
        padding: 12px 5px;
    }

    .shipping-icon {
        font-size: 20px;
    }

    .shipping-label {
        font-size: 12px;
    }
}

/* Order Summary */
.order-summary h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.order-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.order-item-info {
    display: flex;
    align-items: center;
}

.order-item-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f5f5f5;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-name {
    font-size: 16px;
    color: #333;
}

.order-item-qty {
    font-size: 14px;
    color: #666;
}

.order-item-price {
    font-weight: 600;
    color: #333;
}

.order-totals {
    margin-top: 20px;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.order-total-row.total {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    border-bottom: none;
}

.payment-info {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.payment-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.payment-info p {
    font-size: 14px;
    color: #666;
}

.privacy-note {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
    line-height: 1.5;
}

.btn-submit-order {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #f57c00, #ff9800);
    color: #fff;
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
}

.btn-submit-order:hover {
    background: linear-gradient(135deg, #e65100, #f57c00);
}

.btn-submit-order i {
    margin-right: 10px;
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 95, 42, 0.98);
    border-radius: 0;
    padding: 14px 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    justify-content: space-around;
    z-index: 1200;
    backdrop-filter: blur(8px);
}

.mobile-bottom-nav .mobile-nav-item {
    color: #fff;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    font-size: 18px;
}

.mobile-bottom-nav .mobile-nav-item:hover,
.mobile-bottom-nav .mobile-nav-item:focus {
    background: rgba(255, 255, 255, 0.12);
    outline: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    body {
        padding-bottom: 90px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .brand-logo {
        justify-content: center;
    }

    .features-bar {
        padding: 40px 0;
    }

    .hero-image img {
        max-height: 360px;
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 25px 15px;
    }

    .why-buy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .feature-item {
        padding: 25px 15px;
    }

    .feature-icon {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-desc {
        font-size: 13px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid.products-count-1 {
        grid-template-columns: minmax(250px, 300px);
    }

    .products-grid.products-count-2,
    .products-grid.products-count-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        gap: 10px;
    }

    .features-content {
        flex-direction: column;
    }

    .features-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .order-form-container {
        grid-template-columns: 1fr;
    }

    .mobile-bottom-nav {
        display: inline-flex;
        padding-bottom: calc(10px + env(safe-area-inset-bottom, 0));
    }

    /* Media Section Tablet */
    .media-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .media-nav-prev {
        left: 10px;
    }

    .media-nav-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 44px !important;
        text-align: center !important;
        margin-bottom: 15px;
        width: 100%;
    }

    .hero-description {
        font-size: 15px !important;
        text-align: center !important;
        line-height: 1.6;
        margin-bottom: 25px;
        width: 100%;
        display: block;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .products-grid.products-count-1 {
        grid-template-columns: 1fr;
    }

    .products-grid.products-count-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid.products-count-3 .product-card:last-child {
        grid-column: 1 / span 2;
    }

    .products-grid.products-count-4 .product-card:nth-child(n+3) {
        /* This already works with repeat(2, 1fr) but we can be explicit if needed */
    }

    .products-grid.products-count-5 .product-card:last-child {
        grid-column: 1 / span 2;
    }

    .product-image {
        height: 180px;
    }

    .product-info {
        padding: 12px 8px;
    }

    .product-name {
        font-size: 15px;
        margin-bottom: 5px;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-price {
        font-size: 18px;
        margin-bottom: 0;
    }

    .price-container {
        gap: 8px;
        margin-bottom: 8px;
    }

    .regular-price {
        font-size: 13px;
    }

    .discount-badge {
        top: 8px;
        right: 8px;
        font-size: 11px;
        padding: 3px 8px;
    }

    .btn-product-order {
        padding: 8px 5px;
        font-size: 13px;
        white-space: nowrap;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .btn-product-order i {
        font-size: 12px;
    }

    .testimonials-grid {
        gap: 10px;
    }

    .features-list {
        flex-direction: column;
        gap: 15px;
    }

    /* Media Section Mobile */
    .media-section {
        padding: 40px 0;
    }

    .media-carousel-container {
        padding: 0 10px;
    }

    .media-nav {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .media-nav-prev {
        left: 5px;
    }

    .media-nav-next {
        right: 5px;
    }

    .media-thumbnails {
        gap: 8px;
        justify-content: flex-start;
        padding: 10px 5px;
    }

    .media-thumb {
        width: 60px;
        height: 45px;
    }

    .thumb-video-icon {
        font-size: 18px;
    }

    .thumb-video-icon::before {
        width: 22px;
        height: 22px;
    }

    .why-buy-box {
        padding: 20px 10px;
    }

    .why-buy-item-title {
        font-size: 14px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 28px;
    }

    .offer-box {
        padding: 20px 30px;
    }

    .offer-badge {
        position: relative;
        left: 0;
        transform: none;
        margin-bottom: 15px;
    }

    .hero-image img {
        max-height: 320px;
    }

    .features-title {
        font-size: 26px;
        text-align: center;
        display: table;
        margin: 0 auto 25px;
    }

    .features-list-detailed li {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .order-form-title {
        font-size: 22px;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .order-form-section {
        padding: 40px 0;
    }

    .contact-title {
        font-size: 26px;
    }

    .contact-subtitle {
        font-size: 18px;
    }

    .shipping-grid {
        gap: 10px;
    }

    .shipping-box-content {
        padding: 12px 5px;
    }

    .shipping-icon {
        font-size: 20px;
    }

    .shipping-label {
        font-size: 12px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .testimonials-title {
        font-size: 26px;
        margin-bottom: 25px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.lightbox-content-wrapper {
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1200px;
    height: 80vh;
}

.lightbox-content {
    max-width: 95vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: auto;
    animation-name: zoom;
    animation-duration: 0.3s;
}

@keyframes zoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2005;
    background: rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #ff0000;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1px dashed #ddd;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    border-color: var(--primary-color);
    border-style: solid;
}

.faq-question-container {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 14px;
    color: #999;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
}

.faq-answer-content {
    padding: 0 25px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* FAQ Mobile */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-accordion {
        margin-top: 25px;
        gap: 10px;
    }

    .faq-question-container {
        padding: 15px 20px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer-content {
        padding: 0 20px 15px;
        font-size: 14px;
    }
}

#lightboxCaption {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
    text-align: center;
    color: #fff;
    padding: 10px 25px;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 30px;
}

.media-item[data-type="image"],
.media-thumb {
    cursor: pointer;
}

.media-item[data-type="image"]:hover::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 32px;
    pointer-events: none;
    background: rgba(114, 176, 29, 0.8);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* ========== Product Select Button Styles ========== */
.btn-select-product {
    margin-top: 10px;
    width: 100%;
    padding: 12px 16px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--secondary-color, #ff9800), var(--primary-color, #f57c00));
    color: #fff;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Hind Siliguri', sans-serif;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: selectBtnPulse 2s ease-in-out infinite, selectBtnBounce 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(245, 124, 0, 0.4), 0 0 0 0 rgba(245, 124, 0, 0.4);
    letter-spacing: 0.3px;
}

/* Shimmer shine effect to auto-attract attention */
.btn-select-product::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    animation: selectBtnShine 2.5s ease-in-out infinite;
    pointer-events: none;
}

.btn-select-product:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(245, 124, 0, 0.5);
    filter: brightness(1.1);
}

.btn-select-product:active {
    transform: translateY(0) scale(0.97);
}

/* Pulsing glow animation */
@keyframes selectBtnPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(245, 124, 0, 0.4), 0 0 0 0 rgba(245, 124, 0, 0.5);
    }

    50% {
        box-shadow: 0 4px 20px rgba(245, 124, 0, 0.6), 0 0 0 8px rgba(245, 124, 0, 0.1);
    }
}

/* Subtle bounce to attract attention */
@keyframes selectBtnBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-4px);
    }

    60% {
        transform: translateY(-2px);
    }
}

/* Shine sweep across the button */
@keyframes selectBtnShine {
    0% {
        left: -100%;
    }

    60% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* ========== Selected State (Black BG + White Text) ========== */
.btn-select-product.selected {
    background: #111111 !important;
    color: #ffffff !important;
    border: 2px solid #333333;
    animation: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-select-product.selected::after {
    display: none;
}

.btn-select-product.selected:hover {
    background: #000000 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

/* ========== Product Instruction Notice ========== */
.product-instruction-notice {
    max-width: 850px;
    margin: 0 auto 35px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #fffbea, #fff3cd);
    border: 2px solid #ffc107;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
    animation: noticeGlow 2.5s ease-in-out infinite;
}

.product-instruction-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.15), transparent);
    animation: noticeShimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.product-instruction-notice .notice-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: noticeIconPulse 2s ease-in-out infinite;
}

.product-instruction-notice .notice-icon i {
    color: #fff;
    font-size: 18px;
}

.product-instruction-notice p {
    font-size: 14.5px;
    line-height: 1.8;
    color: #5a4a00;
    margin: 0;
    font-family: 'Hind Siliguri', sans-serif;
    font-weight: 500;
}

.product-instruction-notice p strong {
    color: #d35400;
    font-weight: 700;
    background: rgba(211, 84, 0, 0.08);
    padding: 1px 6px;
    border-radius: 4px;
}

@keyframes noticeGlow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
    }

    50% {
        box-shadow: 0 4px 30px rgba(255, 193, 7, 0.35), 0 0 0 4px rgba(255, 193, 7, 0.08);
    }
}

@keyframes noticeShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

@keyframes noticeIconPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(255, 193, 7, 0);
    }
}

@media (max-width: 768px) {
    .product-instruction-notice {
        padding: 14px 16px;
        gap: 10px;
        margin-bottom: 25px;
    }

    .product-instruction-notice p {
        font-size: 13px;
        line-height: 1.7;
    }

    .product-instruction-notice .notice-icon {
        width: 32px;
        height: 32px;
    }

    .product-instruction-notice .notice-icon i {
        font-size: 15px;
    }

    .btn-select-product {
        font-size: 12px !important;
        padding: 8px 10px !important;
    }
}

/* Quantity Controls */
.qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 2px;
    border-radius: 6px;
    border: 1px solid #eee;
}

.qty-control button {
    width: 28px;
    height: 28px;
    border: none;
    background: #fff;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.qty-control button:hover {
    background: #f57c00;
    color: #fff;
}

.qty-control button:active {
    transform: scale(0.95);
}

.qty-control span {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    font-size: 14px;
    color: #333;
}

/* ========== PERFORMANCE: Mobile Scroll & Animation Fixes ========== */
@media (max-width: 1024px) {

    /* Fixed backgrounds cause severe scroll jank on mobile */
    .features-section,
    .media-section,
    .testimonials-section,
    .features-list {
        background-attachment: scroll !important;
    }

    /* Reduce animation intensity on mobile to save CPU/battery */
    .btn-select-product {
        animation: selectBtnPulse 3s ease-in-out infinite !important;
    }

    .btn-select-product::after {
        animation: selectBtnShine 4s ease-in-out infinite !important;
    }

    .product-instruction-notice {
        animation: none !important;
    }

    .product-instruction-notice::before {
        animation: none !important;
    }

    .ramadan-promo-shimmer {
        animation: none !important;
    }

    .ramadan-promo-particles {
        display: none !important;
    }
}

/* GPU compositing hints for smooth animations */
.btn-select-product,
.gallery-track,
.features-carousel-track,
.testimonials-track {
    will-change: transform;
}

.discount-badge {
    will-change: transform;
}