﻿
.naisthika-deal-container {
    background: #f8f9fa;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    max-width: 1400px;
    margin: auto;
    position: relative;
}


.naisthika-deal-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f1f1f;
    margin: 0;
}


.naisthika-timer-box {
    background: #ff327c;
    padding: 8px 24px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 16px;
    min-width: 150px;
    text-align: center;
}

/* Product Card */
.naisthika-product-card {
    background: #fff;    
    padding: 20px;
    position: relative;
    transition: 0.3s;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 100%;
}


    .naisthika-product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

.naisthika-discount-badge {
    background: #75c043;
    color: #fff;
    padding: 4px 12px;
    font-size: 13px;
    border-radius: 5px;
    font-weight: 600;
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 2;
}

.naisthika-wishlist-circle {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f0f2f4;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

    .naisthika-wishlist-circle:hover {
        background: #e0e2e4;
    }

.naisthika-product-image-container {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 10px;
}

    .naisthika-product-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.naisthika-product-image-container_cat {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 10px;
}

    .naisthika-product-image-container_cat img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }



.naisthika-product-card:hover .naisthika-product-image-container img {
    transform: scale(1.05);
}

.naisthika-category {
    color: #7f8c8d;
    font-size: 13px;
    margin-bottom: 0px;
    min-height: 10px;
    line-height: 0.5;
}

.naisthika-product-title {
    font-size: 12px;    
    color: #1d1d1d;
    margin-bottom: 5px;
    line-height: 1.4;
    min-height: 20px;
}

.naisthika-rating {
    margin-bottom: 8px;
}

    .naisthika-rating i {
        color: #ffb703;
        font-size: 14px;
        margin-right: 2px;
    }

.naisthika-price-container {
    align-items: center;
    gap: 10px; /* space between prices */
}

.naisthika-price {
    color: #ff327c;
    font-weight: 700;
    font-size: 15px;
}

.naisthika-old-price {
    text-decoration: line-through;
    color: #8d8d8d;
    font-size: 12px;
}


.naisthika-addcart-btn {
    background: #EC5228;
    border: none;
    padding: 4px 15px;
    border-radius: 20px;
    color: #fff;
    font-size: 9px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    /* left to right fill */
    .naisthika-addcart-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: #DF6D2D;
        transition: width 0.2s ease;
        z-index: -1;
    }

    .naisthika-addcart-btn:hover::before {
        width: 100%;
    }

    .naisthika-addcart-btn:hover {
        transform: translateY(-2px);
    }

    .naisthika-addcart-btn i {
        background: #fff;
        color: #DF6D2D;
        padding: 6px;
        border-radius: 50%;
        font-size: 12px;
        z-index: 2;
    }


/* Carousel Container */
.naisthika-carousel-container {
    position: relative;
    overflow: hidden;
    
}

/* Products Row */
.naisthika-products-row {
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.naisthika-product-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 5px;
    box-sizing: border-box;
}

/* Carousel Controls */
.naisthika-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    opacity: 0.9;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    color: #333;
    font-size: 18px;
}

    .naisthika-carousel-control:hover {
        opacity: 1;
        box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        background: #f8f9fa;
    }

.naisthika-carousel-control-prev {
    left: -25px;
}

.naisthika-carousel-control-next {
    right: -25px;
}

    .naisthika-carousel-control-prev i,
    .naisthika-carousel-control-next i {
        color: #333;
        font-size: 20px;
    }
.naisthika-products-row {
    touch-action: pan-y;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .naisthika-deal-container {
        padding: 10px 15px;
    }

    .naisthika-product-image-container {
        height: 200px;
    }

    .naisthika-product-title {
        font-size: 16px;
        min-height: 40px;
    }

    .naisthika-product-col {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media (max-width: 991px) {
    .naisthika-product-col {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .naisthika-product-image-container {
        height: 180px;
    }

    .naisthika-deal-title {
        font-size: 18px;
    }

    .naisthika-carousel-control-prev {
        left: -15px;
    }

    .naisthika-carousel-control-next {
        right: -15px;
    }

    .naisthika-carousel-control {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767px) {
    .naisthika-deal-container {
        padding: 20px;
        margin: 20px auto;
    }

    .naisthika-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .naisthika-timer-box {
        align-self: center;
    }

    .naisthika-product-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .naisthika-product-image-container {
        height: 200px;
    }

    .naisthika-carousel-control {
        width: 35px;
        height: 35px;
    }

    .naisthika-carousel-control-prev {
        left: -10px;
    }

    .naisthika-carousel-control-next {
        right: -10px;
    }
}

@media (max-width: 480px) {
    .naisthika-product-image-container {
        height: 180px;
    }

    .naisthika-product-title {
        font-size: 16px;
        min-height: auto;
    }

    .naisthika-category {
        min-height: auto;
    }

    .naisthika-carousel-control {
        width: 30px;
        height: 30px;
    }

    .naisthika-carousel-control-prev i,
    .naisthika-carousel-control-next i {
        font-size: 16px;
    }
}
/* ------------------------------
   HEALTH PRODUCTS SECTION
------------------------------ */

.naisthika-health-section {
    padding: 60px 0;
}

.naisthika-health-container {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Header */
.naisthika-health-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.naisthika-health-tabs button {
    padding: 8px 18px;
    border-radius: 20px;
    background: #eef1f8;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

    .naisthika-health-tabs button.active {
        background: #3a70f5;
        color: #fff;
    }

/* Slider Navigation Buttons */
.health-nav-btn {
    position: absolute;
    top: 40%;
    z-index: 10;
    background: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 50%;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    cursor: pointer;
}

    .health-nav-btn.left-btn {
        left: -18px;
    }

    .health-nav-btn.right-btn {
        right: -18px;
    }

/* Product Carousel */
.naisthika-health-carousel {
    transition: 0.4s ease;
}

/* Product Card */
.naisthika-health-product-card {
    background: #fff;
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

    .naisthika-health-product-card:hover {
        transform: translateY(-6px);
    }

/* Image Block */
.naisthika-health-img-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 15px;
}

.naisthika-health-img {
    width: 100%;
    height: auto;
}

.naisthika-health-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff5757;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* Product Text */
.naisthika-health-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.naisthika-health-category {
    font-size: 14px;
    color: #7d8aa2;
}

/* Prices */
.naisthika-health-prices {
    margin: 10px 0;
}

.naisthika-health-newprice {
    font-size: 18px;
    font-weight: 700;
    margin-right: 10px;
}

.naisthika-health-oldprice {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
}

/* Add to Cart Button */
.naisthika-health-cart-btn {
    width: 100%;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    background: #3a70f5;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

    .naisthika-health-cart-btn:hover {
        background: #2a54c7;
    }


/* Testimonials Section */
.naisthika-testimonials-section {
    background: #ffffff;
    border-radius: 24px;
    max-width:1400px;
}

/* Section Title */
.naisthika-testimonial-title {
    font-size: 32px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 20px;
}

/* Testimonial Card */
.testimonial-card {
    background: #ffffff;
    width: 100%;
    border-radius: 22px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 45px rgba(0, 0, 0, 0.10);
    }

/* Testimonial Header */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

/* Name */
.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* ⭐ Red Stars */
.testimonial-stars {
    color: #FDCC0D;
    font-size: 17px;
    font-weight: bold;
}

/* Review Text */
.testimonial-text {
    margin-top: 15px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Popular Categories Section */
.naisthika-popular-categories {
    width: 92%;
    margin: 60px auto;
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 24px;
}

/* Title */
.popular-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: left;
}

/* Categories Row */
.categories-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* Category Box */
.category-box {
    width: 180px;
    text-align: center;
}

/* Image container */
.category-img {
    width: 180px;
    height: 180px;
    background: #f2f7ff;
    border-radius: 22px;
    overflow: hidden; /* IMPORTANT for rounded corners */
    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    padding: 0; /* remove padding so image fills */
}

    .category-img:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.10);
    }

    /* Image should fill the box */
    .category-img img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Fill container */
        border-radius: 22px;
    }

/* Category Name */
.category-name {
    font-size: 16px;
    margin-top: 12px;
    font-weight: 600;
    color: #333;
}

.naisthika-activity-section {
    
    margin: 50px auto;
    max-width:1400px;
}

.activity-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background: #ffffff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.activity-item {
    width: 23%;
    text-align: center;
}

    .activity-item img {
        width: 55px;
        margin-bottom: 10px;
    }

    .activity-item p {
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }

        .activity-item p span {
            font-size: 20px;
            font-weight: 700;
            color: #000;
        }

@media (max-width: 768px) {
    .activity-box {
        flex-direction: column;
        text-align: center;
    }

    .activity-item {
        width: 100%;
    }
}

.tp-bullet{
    border-radius:50%;
}
.suggestion-box {
    display: none;
    position: absolute;
    background: #ffffff;
    width: 100%;
    margin-top: 5px;
    border-radius: 10px;
    padding: 10px 0;
    border: 1px solid #e2e2e2;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    z-index: 999;
    font-family: 'Naisthika', sans-serif;
    margin-top:43px;
}

    .suggestion-box div {
        padding: 10px 15px;
        cursor: pointer;
        transition: 0.2s;
    }

        .suggestion-box div:hover {
            background: #f5f5f5;
        }



/* ============================
   FIX GRID LAYOUT (4 per row)
============================ */
.naisthika-grid {
    display: flex;
    flex-wrap: wrap !important;
    gap: 25px;
}

/* 4 column on desktop */
    .naisthika-grid  .naisthika-product-col {
        flex: 0 0 calc(25% - 25px);
        max-width: calc(25% - 25px);
    }

/* Tablet – 3 column */
@media (max-width: 1200px) {
    .naisthika-grid  .naisthika-product-col {
        flex: 0 0 calc(33.33% - 25px);
        max-width: calc(33.33% - 25px);
    }
}

/* Mobile landscape – 2 column */
@media (max-width: 768px) {
    .naisthika-grid  .naisthika-product-col {
        flex: 0 0 calc(50% - 25px);
        max-width: calc(50% - 25px);
    }
}

/* Mobile portrait – 1 column */
@media (max-width: 480px) {
    .naisthika-grid .naisthika-product-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ================================
   REMOVE OLD CAROUSEL RESTRICTIONS
================================ */
.naisthika-grid .naisthika-products-row,
.naisthika-grid  .naisthika-carousel-container {
    white-space: normal !important;
    overflow: visible !important;
}


/* ============================
   AMAZON CARD BASE
============================ */
.amazon-card {
    background: #fff;
    border-radius: 0px;
    padding: 25px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    display: flex;
    gap: 25px;
    flex-wrap: nowrap;
    align-items: flex-start;
}

/* ============================
   IMAGE CONTAINER
============================ */
.amazon-image-box {
    position: relative;
    width: 425px;
}

.amazon-main-img {
    width: 425px;
    height: 425px;
    border-radius: 10px;
    object-fit: contain;
    background: #f8f8f8;
}

.amazon-thumb-list {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.amazon-thumb {
    width: 55px;
    height: 55px;
    border: 1px solid #ccc;
    padding: 4px;
    border-radius: 6px;
    cursor: pointer;
    object-fit: contain;
    background: #fff;
}

    .amazon-thumb:hover {
        border-color: #ff9900;
    }

/* ============================
   RIGHT DETAILS
============================ */
.amazon-details {
    flex: 1;
}

    .amazon-details h3 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 10px;
    }

.amazon-price-line {
    margin-top: 5px;
}

    .amazon-price-line .main-price {
        font-size: 28px;
        font-weight: 700;
        color: #B12704;
    }

    .amazon-price-line .old {
        text-decoration: line-through;
        color: #777;
        margin-left: 6px;
    }

    .amazon-price-line .off {
        color: #007600;
        font-weight: bold;
        margin-left: 10px;
    }

.free-delivery {
    color: #0076ff;
    font-weight: 600;
    margin-top: 6px;
}

/* Delivery Box */
.amazon-delivery-box {
    padding: 15px;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-top: 15px;
}

    .amazon-delivery-box p {
        font-size: 14px;
        margin: 4px 0;
    }

    .amazon-delivery-box i {
        margin-right: 5px;
        color: #0076ff;
    }

    .amazon-delivery-box .green {
        color: #007600;
        font-weight: 700;
    }

/* ============================
   QUANTITY DROPDOWN
============================ */
.qty-box {
    margin-top: 15px;
    margin-bottom: 20px;
}

    .qty-box label {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 5px;
        display: block;
    }

    .qty-box select {
        width: 80px;
        padding: 8px 12px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 15px;
        cursor: pointer;
        background: #fff;
    }

/* ============================
   ACTION BUTTON ROW
============================= */
.amazon-action-row {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 5px;
}

/* COMMON BUTTON STYLE */
.amazon-add-btn,
.amazon-rate-btn {
    position: relative;
    overflow: hidden;
    width: 45px;
    height: 45px;
    border-radius: 50em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    font-size: 17px;
    transition: width 0.35s ease;
    color: #fff; /* icon always white */
}

    .amazon-add-btn span,
    .amazon-rate-btn span {
        opacity: 0;
        width: 0;
        margin-left: 0;
        white-space: nowrap;
        overflow: hidden;
        transition: opacity 0.3s ease, width 0.35s ease, margin-left 0.35s ease;
    }

    .amazon-add-btn::before,
    .amazon-rate-btn::before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.35s ease;
    }

/* ADD TO CART - GREEN */
.amazon-add-btn {
    background: #1e9e44;
    border: 2px solid #1e9e44;
}

    .amazon-add-btn::before {
        background: #1e9e44;
    }

    .amazon-add-btn:hover {
        width: 160px;
    }

        .amazon-add-btn:hover span {
            opacity: 1;
            width: auto;
            margin-left: 6px;
        }

        .amazon-add-btn:hover::before {
            width: 100%;
        }

/* RATE - ORANGE */
.amazon-rate-btn {
    background: #f08804;
    border: 2px solid #f08804;
}

    .amazon-rate-btn::before {
        background: #f08804;
    }

    .amazon-rate-btn:hover {
        width: 160px;
    }

        .amazon-rate-btn:hover span {
            opacity: 1;
            width: auto;
            margin-left: 6px;
        }

        .amazon-rate-btn:hover::before {
            width: 100%;
        }
/* ============================
   RESPONSIVE
============================ */
@media (max-width: 768px) {
    .amazon-card {
        flex-direction: column;
        padding: 15px;
    }

    .amazon-image-box {
        width: 100%;
    }

    .amazon-main-img {
        height: 240px;
    }
}
/* ============================
   PRODUCT ABOUT
============================ */
.product-about-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    margin-top: 35px;
}

    .product-about-box h2 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .product-about-box .about-short {
        font-size: 15px;
        color: #444;
        margin-bottom: 15px;
    }

.about-points {
    padding-left: 20px;
}

    .about-points li {
        font-size: 15px;
        color: #333;
        margin-bottom: 6px;
        line-height: 1.6;
    }


/* ============================
   RATINGS & REVIEWS
============================ */
.reviews-section {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-top: 35px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.review-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}
.left{
    width:30%;
}

/* Rating Summary */
.rating-number {
    font-size: 48px;
    color: #08a800;
    font-weight: 700;
}

.rating-small {
    font-size: 15px;
    margin-bottom: 20px;
}

.rating-bars .bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.bar-row span {
    width: 40px;
    font-size: 14px;
}

.bar {
    flex: 1;
    height: 8px;
    border-radius: 5px;
}

    .bar.green {
        background: #07b20f;
    }

    .bar.grey {
        background: #ddd;
    }

    .bar.red {
        background: #d10d0d;
    }

/* Review Box */
.single-review {
    border-top: 1px solid #e5e5e5;
    padding-top: 18px;
    margin-top: 18px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-badge {
    font-size: 13px;
    padding: 3px 8px;
    border-radius: 4px;
    color: #fff;
}

    .rating-badge.green {
        background: #07b20f;
    }

    .rating-badge.red {
        background: #d10d0d;
    }

.verified {
    background: #e8f5e9;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 13px;
    color: #08a800;
}

.review-date {
    margin-left: auto;
    font-size: 13px;
    color: #777;
}

.review-text {
    font-size: 15px;
    margin: 12px 0;
    color: #333;
}

.review-actions {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
    width:50%;
}


/* ============================
   RESPONSIVE
============================ */

@media (max-width: 768px) {

    .rating-number {
        font-size: 36px;
    }
    .left {
        width: 100%;
    }
    .product-about-box,
    .reviews-section {
        padding: 20px;
    }

    .review-header {
        flex-wrap: wrap;
    }

    .review-date {
        width: 100%;
        margin-top: 5px;
    }
}
.product-description-box {
    background: #fff;
    padding: 22px 25px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    margin-top: 25px;
}

.desc-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.desc-list {
    padding-left: 20px;
    margin: 0;
}

    .desc-list li {
        margin-bottom: 10px;
        font-size: 15px;
        color: #444;
        line-height: 1.5;
        position: relative;
    }
/* ============================
   MODAL BACKDROP
============================ */
.review-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

/* ============================
   MODAL BOX
============================ */
.review-modal-content {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 25px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: modalFade 0.25s ease;
}

@keyframes modalFade {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================
   CLOSE BUTTON
============================ */
.review-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 26px;
    color: #555;
    cursor: pointer;
}

/* ============================
   TITLE
============================ */
.review-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
}
/* ============================
   NAISTHIKA MODAL BASE
============================ */
.naisthika-review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.naisthika-review-modal-content {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    width: 420px;
    max-width: 95%;
    position: relative;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* CLOSE BUTTON */
.naisthika-review-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 24px;
    cursor: pointer;
}

/* STAR RATING */
.naisthika-star-rating {
    font-size: 28px;
    color: #ccc;
    cursor: pointer;
    margin-bottom: 20px;
}

    .naisthika-star-rating i {
        margin-right: 6px;
        transition: 0.2s;
    }

        .naisthika-star-rating i.active {
            color: #ff9900;
        }

/* TEXTAREA */
.naisthika-review-input {
    width: 100%;
    height: 120px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 15px;
    resize: none;
    outline: none;
    margin-bottom: 20px;
}

/* SUBMIT BUTTON */
.naisthika-submit-review-btn {
    width: 100%;
    padding: 14px;
    background-color: #ff9900;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

    .naisthika-submit-review-btn:hover {
        background-color: #e78b00;
    }
.auth-modal-content {
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

.btn-auth {
    background: #009688;
    color: white;
    border-radius: 8px;
    padding: 10px;
    font-size: 17px;
    font-weight: 600;
}

    .btn-auth:hover {
        background: #007a6f;
    }

.resend-otp {
    color: #009688;
    cursor: pointer;
    font-weight: 600;
}


/* ============================
   PROFILE ICON CONTAINER
============================ */
.Naisthikha_profile_container {
    position: relative;
    display: inline-block;
}

/* ============================
   PROFILE ICON CIRCLE
============================ */
.Naisthikha_profile_icon {
    width: 42px;
    height: 42px;
    background: #0072ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    border: 2px solid #e0e8ff;
    font-weight: bold;
    transition: 0.3s ease;
}

    .Naisthikha_profile_icon:hover {
        background: #0059cc;
        transform: scale(1.05);
    }

/* ============================
      DROPDOWN MENU
============================ */
.Naisthikha_profile_menu {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    background: #ffffff;
    border-radius: 12px;
    width: 180px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
    overflow: hidden;
    z-index: 999;
}

.Naisthikha_profile_item {
    display: block;
    padding: 12px 18px;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f1f1f1;
    transition: 0.25s ease;
}

    .Naisthikha_profile_item:hover {
        background: #f4f7ff;
        color: #0072ff;
    }

    .Naisthikha_profile_item.logout {
        color: #d9534f;
        font-weight: 600;
    }

        .Naisthikha_profile_item.logout:hover {
            background: #ffe6e6;
            color: #b52b27;
        }

/* ============================
   SIGN IN BUTTON STYLE
============================ */
.Naisthikha_auth_btn span {
    font-weight: 600;
    font-size: 15px;
    color: #0072ff;
    transition: 0.3s;
}

.Naisthikha_auth_btn:hover span {
    color: #0059cc;
    text-decoration: underline;
}

/* =====================================================
   🔥 RESPONSIVE BREAKPOINTS  
===================================================== */

/* -------- Tablet (max-width: 992px) -------- */
@media (max-width: 992px) {
    .Naisthikha_profile_icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .Naisthikha_profile_menu {
        width: 160px;
        top: 45px;
    }

    .Naisthikha_profile_item {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* -------- Mobile Landscape (max-width: 768px) -------- */
@media (max-width: 768px) {naisthika-deal-container
    .Naisthikha_profile_icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .Naisthikha_profile_menu {
        width: 150px;
        top: 42px;
    }

    .Naisthikha_profile_item {
        padding: 9px 14px;
    }
}

/* -------- Mobile Portrait (max-width: 576px) -------- */
@media (max-width: 576px) {
    .Naisthikha_profile_icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .Naisthikha_profile_menu {
        width: 140px;
        top: 40px;
        right: -10px; /* moves dropdown slightly right for mobile */
    }

    .Naisthikha_profile_item {
        padding: 9px 12px;
        font-size: 13px;
    }

    .Naisthikha_auth_btn span {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    #naisthikaNextBtn_HealthConcern,
    #naisthikaPrevBtn_HealthConcern,
    #naisthikaNextBtn,
    #naisthikaPrevBtn,
    #naisthikaNextBtn_personalCare,
    #naisthikaPrevBtn_personalCare,
    #naisthikaNextBtn_categories,
    #naisthikaPrevBtn_categories,
    #naisthikaNextBtn_Health,
    #naisthikaPrevBtn_Health,
    #naisthikaNextBtn_brands,
    #naisthikaPrevBtn_brands,
    #naisthikaNextBtn_trendingProducts,
    #naisthikaPrevBtn_trendingProducts {
        display: none !important;
    }
}
