
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: ui-sans-serif;
        }
        ul{
	    margin-bottom: 0px !important;
        font-family: ui-sans-serif;
        font-weight: 600;
        }

        .padd2{
            padding-bottom: 70px;
            padding-top: 40px;
            font-family: ui-sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            text-align: center;
        }
        .padd1{
            padding-left: 40px;
            padding-right: 40px;
            padding-bottom: 40px;
            font-family: ui-sans-serif;
            font-weight: 600;
        }

        body {
            font-family: ui-sans-serif;
            overflow-x: hidden;
        }

        /* Top Promotional Banner */
        .promo-banner {
            background: #b0cb1f;
            color: rgb(0, 0, 0);
            padding: 8px 20px;
            display: flex;
            align-items: center;
            font-size: 13px;
            font-weight: 500;
            justify-content: flex-end;
        }

        .promo-banner .close-btn {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #333;
        }

        /* Main Header */
        .main-header {
            background: linear-gradient(135deg, #00a651 0%, #008844 100%);
            padding: 15px 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
            z-index: 1000;
            overflow: visible;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            overflow: visible;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 12px;
            overflow: visible;
            position: relative;
        }

        /* Logo */
        .logo1 {
            width: 20%;
        }
        .logo1 img {
    width: 100%;
    max-height: 60px;
    object-fit: contain;
}

        /* Navigation */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-menu li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: opacity 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-menu li a:hover {
            opacity: 0.8;
        }

        .nav-menu .dropdown-arrow {
            font-size: 10px;
        }

        /* Dropdown Menu */
        .nav-menu li {
            position: relative;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border-radius: 5px;
            margin-top: 10px;
            z-index: 100;
            padding: 10px 0;
        }

        .dropdown-menu li {
            list-style: none;
        }

        .dropdown-menu li a {
            color: #333 !important;
            padding: 12px 20px;
            display: block;
            font-size: 14px;
            transition: background 0.3s;
        }

        .dropdown-menu li a:hover {
            background: #f5f5f5;
            opacity: 1;
        }

        .nav-menu li:hover .dropdown-menu {
            display: block;
        }

        .sale-item {
            color: #ffe600 !important;
            font-weight: 600;
        }

        /* Right Icons */
        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .lang-selector {
            color: white;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.3);
            padding: 6px 12px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .icon-btn {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            position: relative;
        }

        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #ffe600;
            color: #333;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: bold;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 999;
        }

        .mobile-menu-overlay.active {
            display: block;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -300px;
            width: 280px;
            height: 100%;
            background: white;
            box-shadow: 2px 0 10px rgba(0,0,0,0.3);
            transition: left 0.3s ease;
            z-index: 1000;
            overflow-y: auto;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-header {
            background: linear-gradient(135deg, #00a651 0%, #008844 100%);
            padding: 20px;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-menu-close {
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
        }

        .mobile-nav-menu {
            list-style: none;
            padding: 0;
        }

        .mobile-nav-menu li {
            border-bottom: 1px solid #eee;
        }

        .mobile-nav-menu li a {
            display: block;
            padding: 15px 20px;
            color: #333;
            text-decoration: none;
            font-weight: 500;
        }

        .mobile-nav-menu li.sale-item a {
            color: #00a651;
            font-weight: 600;
        }

        /* Mobile Dropdown */
        .mobile-nav-menu .has-dropdown > a {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-nav-menu .has-dropdown > a .arrow {
            transition: transform 0.3s;
        }

        .mobile-nav-menu .has-dropdown.active > a .arrow {
            transform: rotate(180deg);
        }

        .mobile-nav-menu .mobile-submenu {
            display: none;
            background: #f9f9f9;
            padding-left: 20px;
        }

        .mobile-nav-menu .mobile-submenu.active {
            display: block;
        }

        .mobile-nav-menu .mobile-submenu li {
            border-bottom: 1px solid #e5e5e5;
        }

        .mobile-nav-menu .mobile-submenu li:last-child {
            border-bottom: none;
        }

        .mobile-nav-menu .mobile-submenu a {
            padding: 12px 20px;
            font-size: 14px;
            color: #666;
        }

        button.shop1 {
            padding: 10px;
            border: 1px solid;
            border-radius: 7px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            .logo1 img {
    width: 233%;
    margin-left: -30px;
}

            .menu-toggle {
                display: block;
            }

            .header-right {
                gap: 15px;
            }

            .lang-selector {
                display: none;
            }

            .promo-banner {
                font-size: 11px;
                padding: 6px 15px;
            }

            .logo-text {
                font-size: 18px;
            }

            .logo-circle {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .promo-banner span:first-child {
                font-size: 10px;
            }
            .logo1 img {
    width: 233%;
    margin-left: -30px;
}

            .header-right {
                gap: 10px;
            }

            .icon-btn {
                font-size: 18px;
            }
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .product-grid1 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .product-card {
            border-radius: 8px;
    /* padding: 30px; */
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* min-height: 200px; */
    position: relative;
    transition: transform 0.2s ease;
    cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-3px);
        }

        .product-card.purple {
            background: #e5d4f0;
        }

        .product-card.green {
            background: #c8f0de;
        }

        .product-card.cream {
            background: #fcefd4;
        }

        .card-content {
            display: flex;
            flex-direction: column;
            gap: 5px;
            z-index: 1;
        }

        .product-title {
            font-size: 20px;
            font-weight: 600;
            color: #1a1a1a;
            line-height: 1.3;
            padding-left: 10px;
        }

        .buy-button {
            display: inline-flex;
            align-items: center;
            color: #1a1a1a;
            text-decoration: none;
            font-size: 20px;
            font-weight: 500;
            gap: 5px;
            padding-left: 10px;
        }

        .product-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    width: 150px;      /* container width control */
    height: 150px;     /* container height control */
}

.product-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;   
        margin-bottom: 90px;
}


        @media (max-width: 1024px) {
            .product-grid1 {
                grid-template-columns: repeat(2, 1fr);
                gap: 45px;
            }
        }

        @media (max-width: 768px) {
            .product-grid1 {
                grid-template-columns: 1fr;
                gap: 45px;
            }

            .product-card {
                padding: 25px;
                min-height: 180px;
            }
            .product-title {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            

            .product-card {
                padding: 20px;
                min-height: 150px;
            }

            .card-content {
                gap: 30px;
            }
            .product-images {
                gap: 10px;
            }
        }

        .product-card1 {
            background: #f5f1e8;
            border-radius: 0;
            overflow: hidden;
            transition: transform 0.3s ease;
            position: relative;
        }

        .product-card1:hover {
            transform: translateY(-5px);
        }

        .product-image1 {
            position: relative;
            width: 100%;
            height: 280px;
            overflow: hidden;
            background: #f5f1e8;
        }

        .product-image1 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s ease, opacity 0.3s ease;
        }
        .product-card1:hover .product-image1 img {
            transform: scale(1.05);
        }

        .badge {
            position: absolute;
            top: 10px;
            right: 10px;
            padding: 5px 12px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .badge.sold-out {
            background: white;
            color: #333;
        }

        .badge.sale {
            background: #2c2c2c;
            color: white;
        }

        .product-info {
            padding: 20px;
            text-align: center;
        }
.discount-percent {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    margin-top: 4px;
}

        .product-title1 {
            font-size: 17px;
    text-transform: math-auto;
            letter-spacing: 1px;
            color: #666;
            margin-bottom: 5px;
            font-weight: 500;
            line-height: 1.5;
            min-height: 45px;
        }

        .product-subtitle1 {
            font-size: 10px;
            color: #999;
            margin-bottom: 12px;
        }

        .price-wrapper {
            margin-bottom: 10px;
        }

        .original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 12px;
            margin-right: 5px;
        }

        .current-price {
            color: #00a651;
            font-size: 14px;
            font-weight: 600;
        }

        .rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            margin-bottom: 0px;
            font-size: 12px;
        }

        .stars {
            color: #00a651;
            letter-spacing: 2px;
        }

        .review-count {
            color: #00a651;
            font-size: 11px;
        }

        .product-button1 {
			margin-top:10px;
            width: 100%;
            padding: 14px;
            border: none;
            background: #00a651;
            color: white;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .product-button1:hover {
            background: #03ca63;
        }

        .product-button1:disabled {
            background: #00a651;
            cursor: not-allowed;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .product-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 900px) {
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .product-image1 {
                height: 250px;
            }
        }

        @media (max-width: 600px) {
            .product-grid {
                grid-template-columns: 1fr;
            }

            .product-image1 {
                height: 350px;
            }

            .product-title1 {
                font-size: 12px;
                min-height: auto;
            }
        }

        @media (max-width: 400px) {
            

            .product-image1 {
                height: 300px;
            }

            .product-info {
                padding: 15px;
            }
        }

        .trust-bar {
    text-align: center;
    padding: 25px 15px;
    background: #fff;
}

.trust-title {
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 25px;
    text-align: justify;
}

.trust-container {
    background: #6fd0cc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 25px;
    border-radius: 8px;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    min-width: 220px;
    text-align: left;
}

.trust-item img {
    width: 47px;
    height: 47px;
}

.trust-item h4 {
    font-size: 22px;
    margin: 0;
    font-weight: 600;
}

.trust-item span {
    font-size: 15px;
    opacity: 0.9;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
    .trust-container {
        justify-content: center;
        padding: 15px;
    }
    .trust-title {
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 25px;
    text-align:center;
}

    .trust-item {
        width: 50%;
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .trust-item {
        width: 100%;
        justify-content: flex-start;
    }
    .trust-title {
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 25px;
    text-align:center;
}
}

.testimonial-section {
    padding: 40px 20px;
    background: #fff;
}

.testimonial-section h2 {
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease;
}

.video-card {
    flex: 0 0 25%;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    padding: 10px;
}

.video-card video {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}


/* Tablet */
@media (max-width: 1024px) {
    .video-card {
        flex: 0 0 50%;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .video-card {
        flex: 0 0 100%;
    }
}

.reviews-faq {
    padding: 40px 20px;
    background: #f7f7f7;
}

.section-title{
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
}
.faq-title {
    text-align: start;
    margin-bottom: 25px;
    margin-top:20px ;
    font-weight: 600;
}

/* Reviews */
.review-slider {
    overflow: hidden;
}

.review-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease;
}

.review-card {
    flex: 0 0 50%;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
}

.review-card h4 {
    color: #3a7f2e;
}

.stars {
    color: #ff9800;
    margin: 10px 0;
}

.review-card span {
    font-weight: 600;
}

/* FAQ */

.faq-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 14px;
    background: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    font-weight: 500;
}

.faq-answer {
    display: none;
    padding: 14px;
    background: #fafafa;
    font-size: 14px;
}

.extra-faq {
    display: none;
}

.view-more {
    display: block;
    margin: auto;
    background: none;
    border: none;
    color: #000;
    font-weight: 600;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
    .review-card {
        flex: 0 0 100%;
    }
}

.site-footer {
    background: #fff;
    padding: 50px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr;
    gap: 40px;
}

.footer-col h5 {
    color: #7aa43a;
    margin-bottom: 15px;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-col p,
.footer-col li a {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    text-decoration: none;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.brand img {
    max-width: 240px;
    margin-bottom: 10px;
}

.brand h4 {
    font-size: 14px;
    margin-bottom: 10px;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    margin-right: 10px;
    font-size: 30px;
    border-radius: 30px;
    color: #00a651;
}

.newsletter-form {
    display: flex;
    margin-top: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
}

.newsletter-form button {
    background: #00a651;
    color: #fff;
    padding: 10px 16px;
    border: none;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #777;
    margin-top: 40px;
}

/* Mobile */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        margin-top: 8px;
    }
}


.category-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    height: 100%;
}

/* IMAGE */
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1);
}

/* ---- Shop by Category (framed cards) ---- */
.shop-category-section {
    background: #fafbf5;
}

.shop-category-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.category-card-frame {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #dfe8c8;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(44, 62, 30, 0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(44, 62, 30, 0.14);
    border-color: #b0cb1f;
    text-decoration: none;
    color: inherit;
}

.category-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    padding: 24px;
    background: linear-gradient(180deg, #f7faf0 0%, #ffffff 100%);
    border-bottom: 1px solid #eef2e0;
}

.category-card-media--small {
    min-height: 160px;
    padding: 16px;
}

.category-card-frame--featured .category-card-media {
    min-height: 340px;
}

.category-card-media img {
    width: 100%;
    max-height: 240px;
    object-fit: contain;
    transform: none;
    transition: transform 0.35s ease;
}

.category-card-media--small img {
    max-height: 130px;
}

.category-card-frame--featured .category-card-media img {
    max-height: 280px;
}

.category-card-frame:hover .category-card-media img {
    transform: scale(1.04);
}

.category-card-body {
    padding: 18px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.category-card-body--small {
    padding: 14px 16px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.category-card-body h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #2f3b1f;
    line-height: 1.3;
}

.category-card-body--small h3 {
    font-size: 1rem;
}

.category-shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: #b0cb1f;
    color: #1f2a10;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.category-card-frame:hover .category-shop-btn {
    background: #9ab318;
}

@media (max-width: 991px) {
    .category-card-media,
    .category-card-frame--featured .category-card-media {
        min-height: 220px;
    }

    .category-card-media img,
    .category-card-frame--featured .category-card-media img {
        max-height: 180px;
    }
}

@media (max-width: 575px) {
    .category-card-body {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overlay h2 {
    font-size: 26px;
    line-height: 1.3;
}

.overlay p {
    font-size: 14px;
    margin-top: 10px;
}

/* SMALL CARDS */
.overlay.small {
    justify-content: flex-end;
}

.overlay.small h3 {
    font-size: 15px;
    line-height: 1.3;
}

/* BIG CARD HEIGHT */
.category-card.big {
    min-height: 420px;
}

/* SMALL CARD HEIGHT */
.col-md-6 .category-card {
    min-height: 200px;
}

/* MOBILE */
@media (max-width: 767px) {
    .category-card.big {
        min-height: 280px;
    }
}

    .ayur-wrapper {
    display: flex;
    align-items: center;
    
}
.ayur-wrapper1 {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 80px;
    text-align: left;
}

/* DEFAULT → image LEFT */
.ayur-images {
    order: 1;
}
.ayur-content {
    order: 2;
}

/* IMAGE RIGHT */
.image-right .ayur-images {
    order: 2;
}
.image-right .ayur-content {
    order: 1;
}

/* MOBILE FIX */
@media (max-width: 991px) {
    .ayur-wrapper {
        flex-direction: column;
    }

    .ayur-images,
    .ayur-content {
        order: unset;
    }
    .ayur-wrapper1 {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 80px;
    text-align: left;
    flex-direction: column;
}
}
    .ayur-section {
    background: #fff7f1;
    padding: 80px 20px;
    font-family: Arial, sans-serif;
}

.ayur-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 80px;
    justify-content: space-between;
    text-align: left;
}

/* IMAGES */
.ayur-images {
    position: relative;
    
}

.ayur-images img {
    width: 100%;
    border-radius: 6px;
}

.img-front {
    position: relative;
    z-index: 2;
}

.img-back {
    position: absolute;
    top: -60px;
    right: -300px;
    width: 320px;
    z-index: 1;
}



/* CONTENT */
.ayur-content {
    max-width: 480px;
    font-size: 16px;
    line-height: 1.9;
    color: #000;
}

/* BOTTOM TITLE */
.ayur-title {
    text-align: center;
    margin-top: 80px;
    font-size: 28px;
    color: #b07a2a;
    font-weight: normal;
}
@media (max-width:768px){
	  .about-txt{
            text-align: left;
    padding-top: 20px !important ;
    }
	  .ayur-section {
    background: #fff7f1;
    padding: 30px 10px;
    font-family: Arial, sans-serif;
}
		}
/* RESPONSIVE */
@media (max-width: 991px) {
    .ayur-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
	  .about-txt{
            text-align: left;
    padding-top: 20px;
    }

    .ayur-images {
        width: 100%;
        max-width: 360px;
    }

    .img-back {
        position: static;
        width: 100%;
        margin-top: 20px;
    }

    .ayur-title {
        font-size: 22px;
    }
}

    .about-section {
        background: #fff7f1;
        padding: 60px 20px;
        text-align: center;
    }
    .about-txt{
            text-align: left;
    padding-top: 209px;
    }

    .tabs {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 25px;
        margin-bottom: 40px;
        flex-wrap: wrap;
            justify-content: space-evenly;
    }

    .tab {
        text-decoration: none;
        color: #000;
        font-size: 18px;
        position: relative;
        padding-bottom: 6px;
    }

    .tab.active::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        background: #000;
        left: 0;
        bottom: 0;
    }

    .dot {
        font-size: 18px;
    }

    .tab-content {
        display: none;
        /* max-width: 900px; */
        margin: auto;
    }

    .tab-content.active {
        display: block;
    }

    .highlight {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .tab-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    /* Breadcrumb */
        .breadcrumb {
            background: transparent;
            padding: 20px 0;
            display: flex;
            justify-content: center;
        }

        .breadcrumb a {
            color: white !important;
            text-decoration: none;
        }

      .breadcrumb-item.active {
    color: white !important ;
}
        

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        .product-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 1024px) {
            .product-layout {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Image Gallery */
        .gallery-section {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        @media (min-width: 768px) {
            .gallery-section {
                flex-direction: row;
            }
        }

        .thumbnails {
            display: flex;
            gap: 0.5rem;
            overflow-x: auto;
            width: 100px;
            order: 2;
        }

        @media (min-width: 768px) {
            .thumbnails {
                flex-direction: column;
                order: 1;
                overflow: visible;
                
            }
        }

        .thumbnail {
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            padding: 4px;
            flex-shrink: 0;
        }

        .thumbnail:hover {
            opacity: 0.8;
        }

        .thumbnail.active {
            border-color: #059669;
            opacity: 1;
        }

        .thumbnail img {
            width: 64px;
            height: 64px;
            object-fit: cover;
            border-radius: 4px;
        }

        @media (min-width: 768px) {
            .thumbnail img {
                width: 80px;
                height: 80px;
            }
        }

        .main-image-container {
            position: relative;
            flex: 1;
            order: 1;
            background: #f3f4f6;
            border-radius: 8px;
        }

        @media (min-width: 768px) {
            .main-image-container {
                order: 2;
            }
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border-radius: 50%;
            padding: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            border: none;
            z-index: 10;
        }

        .nav-btn:hover {
            background: #f3f4f6;
        }

        .nav-btn.prev {
            left: 8px;
        }

        .nav-btn.next {
            right: 8px;
        }

        .main-image {
            width: 100%;
            height: auto;
            max-height: 500px;
            object-fit: contain;
            cursor: pointer;
        }

        .zoom-btn {
            position: absolute;
            top: 16px;
            right: 16px;
            background: white;
            border-radius: 8px;
            padding: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            border: none;
        }

        .zoom-btn:hover {
            background: #f3f4f6;
        }

        /* Product Details */
        .product-details {
            display: flex;
            flex-direction: column;
        }

        .product-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .product-title {
            font-size: 1.875rem;
            font-weight: bold;
            margin: 0;
        }
		   @media (max-width: 768px){
		   .thumbnails {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    order: 2;
            width: 100%;
    justify-content: center !important ;
    /* flex-wrap: wrap; */
    flex-direction: row;
}}

        @media (min-width: 768px) {
            .product-title {
                font-size: 2.25rem;
            }

        }

        .wishlist-btn {
            padding: 8px;
            background: transparent;
            border: none;
            cursor: pointer;
        }

        .wishlist-btn:hover {
            background: #f3f4f6;
            border-radius: 4px;
        }

        .price-section {
            margin-bottom: 1rem;
        }

        .price {
            font-size: 1.5rem;
            font-weight: normal;
        }

        .price-label {
            font-size: 0.875rem;
            color: #6b7280;
            margin-left: 0.5rem;
        }

        .rating {
            display: flex;
            align-items: center;
			    justify-content: flex-start;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .stars {
            display: flex;
            color: #fbbf24;
			justify-content: center;
        }

        .review-count {
            font-size: 0.875rem;
            color: #6b7280;
        }

        .size-selector {
            margin-bottom: 1.5rem;
        }

        .label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .size-buttons {
            display: flex;
            gap: 0.75rem;
        }

        .size-btn {
            padding: 0.5rem 1.5rem;
            border: 2px solid #d1d5db;
            border-radius: 4px;
            background: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .size-btn:hover {
            border-color: #059669;
        }

        .size-btn.active {
            background: #059669;
            color: white;
            border-color: #059669;
        }

        .quantity-selector {
            margin-bottom: 1.5rem;
        }

        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .qty-btn {
            width: 40px;
            height: 40px;
            border: 2px solid #d1d5db;
            border-radius: 4px;
            background: white;
            cursor: pointer;
            font-size: 1.25rem;
        }

        .qty-btn:hover {
            background: #f3f4f6;
        }

        .qty-input {
            width: 64px;
            height: 40px;
            text-align: center;
            border: 2px solid #d1d5db;
            border-radius: 4px;
            font-size: 1rem;
        }

        .action-buttons {
           margin-top:10px;
            margin-bottom: 2rem;
        }

        @media (min-width: 640px) {
            .action-buttons {
                flex-direction: row;
            }
        }

        .btn {
            flex: 1;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            text-align: center;
        }

        .btn-outline {
            border: 2px solid #111827;
            background: white;
            color: #111827;
        }

        .btn-outline:hover {
            background: #111827;
            color: white;
        }

        .btn-primary {
            border: none;
            background: #059669;
            color: white;
        }

        .btn-primary:hover {
            background: #047857;
        }

        /* Features */
        .features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid #e5e7eb;
        }

        @media (min-width: 1024px) {
            .features {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 0.5rem;
            color: #059669;
        }

        .feature-text {
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* Zoom Modal */
        .zoom-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .zoom-modal.active {
            display: flex;
        }

        .zoom-close {
            position: absolute;
            top: 16px;
            right: 16px;
            color: white;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 10;
        }

        .zoom-close:hover {
            color: #d1d5db;
        }

        .zoom-content {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            padding: 1rem;
        }

        .zoom-nav {
            position: absolute;
            color: white;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            padding: 12px;
            border: none;
            cursor: pointer;
        }

        .zoom-nav:hover {
            color: #d1d5db;
        }

        .zoom-nav.prev {
            left: 16px;
        }

        .zoom-nav.next {
            right: 16px;
        }

        .zoom-image {
            max-width: 90vw;
            max-height: 90vh;
            cursor: zoom-in;
            transition: transform 0.3s;
        }

        .zoom-image.zoomed {
            cursor: zoom-out;
            transform: scale(1.5);
        }

        .zoom-hint {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 0.875rem;
        }

        svg {
            width: 24px;
            height: 24px;
        }

.flash-sale {
    max-width: 650px;
    margin: 20px auto;
    padding: 10px;
}

.flash-sale h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #000;
}

.offer {
    background: #2f9c9a;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.offer .icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.offer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 480px) {
    .offer p {
        font-size: 13px;
    }
}

.bundle-wrap{
    background:#fff;
    padding:16px;
    border-radius:14px;
    border:1px solid #e2d6c8;
}

.bundle-title{
    font-size:16px;
    margin-bottom:12px;
}

.bundle-card{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:10px;
    border:1px solid #d9c7b2;
    border-radius:8px;
    margin-bottom:8px;
    cursor:pointer;
}

.bundle-card input{
    margin-top:6px;
}

.bundle-card img{
    width:52px;
    height:52px;
    border-radius:6px;
    object-fit:cover;
}

.bundle-info p{
    font-size:13px;
    margin:0 0 4px;
}

.bundle-price{
    font-size:13px;
    color:#8b3a2b;
}

.bundle-price del{
    color:#999;
    font-size:12px;
}

.bundle-cta{
    width:100%;
    background:#1e1e1e;
    color:#fff;
    padding:12px;
    border:none;
    border-radius:8px;
    font-size:14px;
    margin-top:10px;
}

/* FEATURES */
.feature-strip{
    display:flex;
    justify-content:space-between;
    font-size:12px;
    margin:14px 0;
    color:#8b5e3c;
}

/* BULLETS */
.highlight-points{
    list-style:none;
    padding-left:0;
    font-size:13px;
}

.highlight-points li{
    padding-left:16px;
    position:relative;
    margin-bottom:6px;
}

.highlight-points li::before{
    content:"•";
    position:absolute;
    left:0;
    color:#8b5e3c;
}

/* ACCORDION */
.info-accordion details{
    border-top:1px solid #e2d6c8;
    padding:10px 0;
}

.info-accordion summary{
    font-size:14px;
    cursor:pointer;
    color:#8b5e3c;
}

/* MAIN LAYOUT */
.product-layout{
    display:flex;
    gap:40px;
    align-items:flex-start;
}

/* LEFT FIXED */
.gallery-section{
    width:45%;
    position:sticky;
    top:20px;
    height:calc(100vh - 40px);
}

/* RIGHT SCROLL */
.product-details{
    width:55%;
    height:calc(100vh - 40px);
    overflow-y:auto;
    scroll-behavior:smooth;
    padding-right:10px;
}

/* HIDE SCROLLBAR (optional) */
.product-details::-webkit-scrollbar{
    width:0;
}
.product-details{
    scrollbar-width:none;
}

/* MOBILE RESET */
@media(max-width:768px){
    .product-layout{
        flex-direction:column;
    }

    .gallery-section,
    .product-details{
        width:100%;
        position:static;
        height:auto;
        overflow:visible;
    }
}



/* CARD */
.video-card-11{
  width:333px;
  background:#fff;
  border-radius:18px;
  
  box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* VIDEO */
.video-box-11{
  position:relative;
  height:337px;
}

.video-box-11 video{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* VIEW COUNT */
.top-badge-11{
  position:absolute;
  top:12px;
  left:12px;
  background:rgba(0,0,0,.6);
  color:#fff;
  font-size:13px;
  padding:4px 8px;
  border-radius:8px;
}

/* TEXT ON VIDEO */
.video-text-11{
  position:absolute;
  bottom:80px;
  left:15px;
  right:60px;
  color:#fff;
  font-size:18px;
  font-weight:600;
  text-shadow:0 2px 6px rgba(0,0,0,.6);
}

/* ICONS */
.icons-11{
  position:absolute;
  bottom:80px;
  right:15px;
  display:flex;
  flex-direction:column;
  gap:14px;
  color:#fff;
  font-size:22px;
}

/* PRODUCT INFO */
.product-info-11{
  padding:15px;
}

.product-left-11{
  display:flex;
  gap:10px;
}

.product-left-11 img{
  width:46px;
  height:46px;
  border-radius:8px;
  object-fit:cover;
}

.title-11{
  font-size:14px;
}

.price-11{
  font-size:14px;
  font-weight:bold;
  margin-top:2px;
}

/* BUTTON */
.buy-btn-11{
  margin-top:15px;
  width:100%;
  padding:12px;
  background:#6b3f1d;
  color:#fff;
  border:none;
  border-radius:8px;
  font-size:14px;
  cursor:pointer;
}

/* ===== RESPONSIVE ===== */
@media(min-width:768px){
  .video-card-11{
    width:100%;
    max-width:260px;
  }
}

@media(min-width:480px){
  .video-box-11{
    height:330px;
  }
  .video-text-11{
    font-size:16px;
  }
}
/* Wrapper */
.gift-wrap-11{
  padding:0px;
}

/* Card */
.gift-card-22{
  display:flex;
  align-items:center;
  gap:16px;
  background:#faf9f7;
  border-radius:10px;
  padding:14px 18px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  border:1px solid #eee;
}

/* Image */
.gift-img-11{
  width:64px;
  height:64px;
  background:linear-gradient(135deg,#e8c8a0,#d9b384);
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.gift-img-11 img{
  width:40px;
  height:40px;
}

/* Text */
.gift-text-22 h4{
  font-size:15px;
  font-weight:600;
  margin-bottom:4px;
  letter-spacing:.5px;
}

.gift-text-22 p{
  font-size:13px;
  color:#666;
}

/* Responsive */
@media(min-width:768px){
  .gift-card-22{
    padding:12px 14px;
  }
  .gift-img-11{
    width:56px;
    height:56px;
  }
}


.user-dropdown{
    position:relative;
    display:inline-block;
    z-index: 1100;
}

.user-dropdown .dropdown-menu{
    position:absolute;
    right:0;
    left:auto;
    top:calc(100% + 8px);
    width:200px;
    min-width:180px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    display:none;
    overflow:visible;
    z-index:9999;
    padding:8px 0;
}

.user-dropdown .dropdown-menu.show { display: block; }

.user-dropdown .dropdown-menu a,
.user-dropdown .dropdown-menu .dropdown-link-btn {
    display:flex;
    align-items:center;
    gap:8px;
    padding:12px 16px;
    color:#333;
    text-decoration:none;
    font-size:14px;
    width:100%;
    border:none;
    background:none;
    text-align:left;
    cursor:pointer;
}

.user-dropdown .dropdown-menu a:hover,
.user-dropdown .dropdown-menu .dropdown-link-btn:hover {
    background:#00a651;
    color:#fff;
}

@@media (max-width: 576px) {
    .user-dropdown .dropdown-menu {
        position: fixed;
        right: 12px;
        left: 12px;
        top: auto;
        bottom: auto;
        width: auto;
        max-width: calc(100vw - 24px);
    }
    .header-right { gap: 8px; }
}

/* === Responsive & fixes (ASP.NET) === */
.search-box {
    position: fixed; top: 0; left: 0; width: 100%; background: #fff;
    padding: 15px; display: none; box-shadow: 0 5px 10px rgba(0,0,0,0.15); z-index: 9999;
}
.search-box.active { display: block; }
.search-box form { display: flex; max-width: 600px; margin: auto; }
.search-box input { flex: 1; padding: 12px; border: 1px solid #ccc; }
.search-box button { padding: 12px 20px; background: #b0cb1f; border: none; color: #fff; cursor: pointer; }
.view-all-wrap { text-align: center; margin-top: 30px; }
.view-all-btn { display: inline-block; padding: 12px 35px; background: #000; color: #fff; text-decoration: none; }
.rating { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; }
.stars { color: #f5a623; }
.shop-layout { display: flex; gap: 24px; flex-wrap: wrap; }
.shop-sidebar { flex: 0 0 240px; background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.shop-content { flex: 1; min-width: 280px; }
.filter-group h5 { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.filter-group a { display: block; padding: 6px 0; color: #333; text-decoration: none; }
.filter-group a.active { color: #00a651; font-weight: 600; }
.page-banner { background-size: cover; background-position: center; background-color: #e8f5e9; min-height: 120px; display: flex; align-items: center; justify-content: center; }
@media (max-width: 992px) {
    .nav-menu { display: none !important; }
    .menu-toggle { display: block !important; }
    .logo1 { width: 45% !important; }
    .padd1 { padding-left: 16px !important; padding-right: 16px !important; }
    .product-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .product-grid1 { grid-template-columns: 1fr !important; }
    .trust-container { flex-wrap: wrap; }
    .footer-container { flex-direction: column !important; }
    .shop-sidebar { flex: 1 1 100%; }
}
.product-detail-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 768px) {
    .product-detail-row { grid-template-columns: 1fr; }
    .checkout-row { flex-direction: column !important; }
    .cart-table .table { font-size: 14px; }
    .admin-content { padding-top: 56px !important; }
}

