 * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
html,
body {
    overflow-x: hidden;
}

        .announcement-bar {
            background: #333; color: white; text-align: center;
            padding: 8px; font-size: 12px; letter-spacing: 1px;
        }

        /* HEADER LAYOUT */
        .site-header { background: #fff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; }
        
.header-main {

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 4%;

    gap:25px;
}
/*logo fixed */

 .logo img,
.custom-logo{

    width:auto !important;

    height:auto !important;

    max-height:75px;

    max-width:100%;

    object-fit:contain;

    display:block;
}
/* logo fixed close */

        /* PILL SEARCH BAR */
        .search-container {
            flex-grow: 1;
            max-width: 600px;
            position: relative;
        }
        .search-container input,
.search-field{

    width:100%;

    height:46px;

    padding:0 50px 0 20px;

    border-radius:30px;

    border:1px solid #ddd;

    outline:none;

    font-size:14px;
}

.search-container i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    cursor: pointer;
}
.search-container button{

    position:absolute;

    right:15px;

    top:50%;

    transform:translateY(-50%);

    border:none;

    background:transparent;

    cursor:pointer;

    font-size:0;
}

.search-container button::before{

    content:"\f002";

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    font-size:16px;

    color:#888;
}
        
/*search bar close */
		/*video alignment */
.video-card video{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center center;
    background: #000;
}
/*video alignment close */
        

        .header-actions { display: flex; align-items: center; gap: 15px; }

        .action-icon { font-size: 20px; color: #333; text-decoration: none; position: relative; }
        
        .cart-badge {
            position: absolute; top: -5px; right: -8px; background: #000;
            color: #fff; font-size: 10px; width: 16px; height: 16px;
            border-radius: 50%; display: flex; justify-content: center; align-items: center;
        }

        .btn-get-app {
            border: 1px solid #10b981; color: #10b981; background: transparent;
            padding: 7px 15px; border-radius: 20px; font-weight: 600; cursor: pointer;
        }

        .nav-toggle {
            display: none;
            border: none;
            background: transparent;
            cursor: pointer;
            width: 42px;
            height: 42px;
            padding: 0;
            flex-shrink: 0;
            margin-left: 8px;
            color: #111;
            font-size: 24px;
            align-items: center;
            justify-content: center;
        }

        .nav-toggle:focus {
            outline: 2px solid #10b981;
            outline-offset: 4px;
        }

        .site-header.nav-open .nav-toggle i {
            transform: rotate(0deg);
        }

        /* SECONDARY NAV */
.nav-bar{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:25px;

    padding-bottom:10px;

    list-style:none;

    margin:0;
    position:relative;
}
.nav-bar li{

    list-style:none;
    position:relative;
}

        .nav-bar a { text-decoration: none; color: #333; font-size: 14px; font-weight: 500; padding:8px 12px; border-radius:8px; display:inline-block; transition: all 180ms ease; }

/* Hover / Focus styles for top-level items */
.nav-bar a:hover, .nav-bar a:focus {
    background: #f0fbf6;
    color: #0a5b2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10,80,40,0.06);
}

/* Down arrow styling for menu items */
.nav-bar a .fa-chevron-down {
    margin-left: 6px;
    font-size: 12px;
    transition: transform 180ms ease;
}

.nav-bar a:hover .fa-chevron-down {
    transform: translateY(1px);
}

/* Global container wrapper */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Dropdown / Submenu */
.nav-bar li ul,
.nav-bar li .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(10,40,20,0.08);
    padding: 8px 6px;
    display: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 180ms ease, transform 180ms ease;
    z-index: 999;
}

.nav-bar li:hover > ul,
.nav-bar li:focus-within > ul {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.nav-bar li ul li { display: block; }
.nav-bar li ul li a {
    display: block;
    padding: 9px 14px;
    color: #2b3b2f;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 6px;
}
.nav-bar li ul li a:hover {
    background: #f5f9f5;
    color: #0a5b2e;
}

/* Support for nested submenus (flyouts) */
.nav-bar li ul li { position: relative; }
.nav-bar li ul li ul {
    left: 100%;
    top: 0;
}

/* Keep mobile behavior (hidden on small screens) */

        /* HERO */
        .hero {
            width: 100%;
            position: relative;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
            overflow: hidden;
        }

        .hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            object-position: center center;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }

        .hero-content {
            pointer-events: auto;
            position: relative;
            z-index: 2;
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 20px;
        }

        .hero h1 { font-size: 3.5rem; margin: 15px 0; }
        .shop-btn {
            background: #fff; color: #000; padding: 12px 30px;
            border-radius: 25px; text-decoration: none; font-weight: bold;
        }

        .hero h1 { font-size: 3.5rem; margin: 15px 0; }
        .shop-btn {
            background: #fff; color: #000; padding: 12px 30px;
            border-radius: 25px; text-decoration: none; font-weight: bold;
        }

        /* MOBILE FIXES */
        @media (max-width: 768px) {
            .nav-bar { display: none; }
            .nav-toggle { display: inline-flex; }
            .btn-get-app { display: none; }
            .header-main { padding: 10px 15px; }
            .search-container { order: 3; width: 100%; max-width: none; flex-basis: 100%; }
            .header-main { flex-wrap: wrap; }
            .nav-toggle { order: 2; }

            .site-header.nav-open .nav-bar {
                display: flex;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                gap: 8px;
                padding: 14px 15px 18px;
                background: #fff;
                max-height: calc(100vh - 72px);
                overflow-y: auto;
                overflow-x: hidden;
                -webkit-overflow-scrolling: touch;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
                border-top: 1px solid #eee;
                z-index: 999;
            }

            .site-header.nav-open .nav-bar a {
                display: block;
                width: 100%;
                padding: 12px 14px;
                border-radius: 12px;
                background: #f9faf9;
                color: #0f172a;
            }

            .site-header.nav-open .nav-bar li {
                width: 100%;
            }

            .site-header.nav-open .nav-bar li ul,
            .site-header.nav-open .nav-bar li .sub-menu {
                position: static;
                transform: none;
                opacity: 1;
                display: none;
                box-shadow: none;
                background: transparent;
                padding: 0;
                margin: 0;
            }

            .site-header.nav-open .nav-bar li:hover > ul,
            .site-header.nav-open .nav-bar li:focus-within > ul {
                display: block;
            }

            .hero {
                min-height: auto;
                padding: 0;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .shop-btn {
                padding: 12px 20px;
            }

            .site-header.nav-open .nav-bar li ul li a {
                padding-left: 26px;
                background: #eef2ff;
            }
        }
		/* Category Section Styles */
.category-section {
    padding: 50px 4%;
    text-align: center;
    background: #fff;
}

        /* Category banner and products layout */
        .category-banner {
            position: relative;
            width: 100%;
            overflow: hidden;
            background: #f6f7f9;
            max-height: 320px;
            background-position: center top !important;
            background-size: 100% auto !important;
            background-repeat: no-repeat !important;
        }

        .category-banner img {
            width: 100% !important;
            height: auto !important;
            max-height: 320px !important;
            display: block;
            object-fit: contain !important;
            object-position: center top !important;
            margin: 0 auto;
        }

        .category-overlay { position: absolute; left: 4%; top: 30%; color: #fff; }
        .category-overlay h1 { font-size: 2.5rem; color: #0f172a; background: rgba(255,255,255,0.9); padding: 10px 16px; border-radius: 8px; }

        .category-products .shop-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 30px;
            padding: 40px 4%;
        }

        .shop-sidebar { background: transparent; }

        .shop-content { background: transparent; }

        @media (max-width: 900px) {
            .category-overlay { top: 20%; }
            .category-products .shop-container { grid-template-columns: 1fr; padding: 20px; }
            .shop-sidebar { order: 2; }
            .shop-content { order: 1; }
        }

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.category-slider {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
}

.category-slider .category-grid {
    flex: 1;
    min-width: 0;
    width: auto;
}

/* Slider mode: transform grid into a horizontal scrolling list */
.category-slider.slider-init .category-grid {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
}

.category-slider.slider-init .cat-card {
    /* Calculate width so exactly 4 cards are visible in the slider viewport
       subtract total gaps (3 * 15px) from 100% then divide by 4 */
    flex: 0 0 calc((100% - 45px) / 4);
    max-width: calc((100% - 45px) / 4);
}

/* Responsive: 2 cards below 992px, 1 card on small screens */
@media (max-width: 992px) {
    .category-slider.slider-init .cat-card {
        flex: 0 0 calc((100% - 15px) / 2);
        max-width: calc((100% - 15px) / 2);
    }
}

@media (max-width: 680px) {
    .category-slider.slider-init .cat-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.category-slider .category-grid::-webkit-scrollbar { display: none; }

.cat-card{

    background:#f1f8f6;

    padding:15px 18px;

    border-radius:10px;

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

    transition:0.3s;

    min-height:70px;
}

.cat-card:hover { transform: translateY(-3px); box-shadow: 0 4px 10px rgba(0,0,0,0.05); }

.cat-card img{

    width:42px;

    height:42px;

    object-fit:contain;

    flex-shrink:0;
}

.cat-card span{

    flex:1;

    font-weight:600;

    font-size:15px;

    color:#222;

    text-align:left;
}
.cat-card i{

    color:#111;

    font-size:14px;

    flex-shrink:0;
}

.slider-arrow {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bestseller Section Styles */
.bestseller-section { padding: 20px 4%; }

.bestseller-badge {
    background: #008a3d; /* Green badge color */
    color: white;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    font-size: 14px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* PRODUCT GRID */

.product-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;
}

/* Map WooCommerce default loop markup to theme product-card styles */
ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.products li.product {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    text-align: left;
    transition: 0.3s;
    width: 100%;
    display: flex;
    flex-direction: column;
}

ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.product-card-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-card .product-img {
    padding: 0;
    background: #f7f7f7;
    border-bottom: 1px solid #f1f5f9;
}

.product-card .woocommerce-LoopProduct-link {
    display: block;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.product-card .woocommerce-LoopProduct-link img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.product-card .product-info {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product-card .woocommerce-loop-product__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.product-card .price {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
}

.product-card .button,
.product-card a.add_to_cart_button,
.product-card .added_to_cart {
    width: 100%;
    margin: 0;
    padding: 12px 16px;
    border-radius: 999px;
    background: #0a8a43;
    color: #fff !important;
    border: 2px solid #0a8a43;
    text-align: center;
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease;
}

.product-card .button:hover,
.product-card a.add_to_cart_button:hover,
.product-card .added_to_cart:hover {
    background: #0d6e35;
    border-color: #0d6e35;
    color: #fff !important;
}

/* Product inner elements */
ul.products li.product .woocommerce-LoopProduct-link .attachment-woocommerce_thumbnail,
ul.products li.product img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

ul.products li.product .price,
ul.products li.product .woocommerce-loop-product__title {
    color: #111;
}

@media(max-width:768px){
    ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* PRODUCT CARD */

.product-card{

    background:#fff;

    border:1px solid #eee;

    border-radius:12px;

    overflow:hidden;

    text-align:center;

    transition:0.3s;
}

/* Ensure product cards are vertically stacked and centered in grids */
.product-card { display: flex; flex-direction: column; align-items: center; justify-content: space-between; }

.product-card:hover{

    transform:translateY(-5px);

    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* PRODUCT IMAGE */

.product-img{

    width:100%;

    height:auto;

    background:#f7f7f7;

    overflow:hidden;

    margin-bottom:0;

    display:block;

}

.product-img img{

    width:100%;

    height:auto;

    display:block;

    object-fit:contain;

    max-width:100%;

    max-height:100%;
}
.product-card:hover .product-img img{

    transform:scale(1.05);
}

/* PRODUCT INFO */

.product-info{

    text-align:center;

    padding:15px;
}

/* Single product: constrain gallery width and keep summary readable */
.single-product .product {
    display: flex;
    gap: 0px;
    align-items: flex-start;
}

.single-product .product .woocommerce-product-gallery {
    flex: 0 0 48%;
    max-width: 520px;
}

.single-product .product .summary {
    flex: 1 1 48%;
}

@media (max-width: 900px) {
    .single-product .product { display: block; }
    .single-product .product .woocommerce-product-gallery,
    .single-product .product .summary { flex: none; width: 100%; max-width: 100%; }
}

/* TITLE */

.product-info h3{

    font-size:15px;

    font-weight:600;

    line-height:1.5;

    margin-bottom:10px;

    min-height:45px;
}

.product-info h3 a{

    text-decoration:none;

    color:#222;
}

/* PRICE */

.product-info .price{
    font-size:22px;
    font-weight:700;
    color:#111;
    margin-bottom:18px;
    line-height:1.2;
}

.ha-price-wrapper .product-price,
.product-info .price {
    font-size:18px !important;
    font-weight:700 !important;;
    color:#111;
    margin-bottom:18px;
    display:block;
    line-height:1.1;
}

.ha-price-wrapper .product-price del,
.product-info .price del {
    color:#6b7280;
    font-size:16px;
    margin-left:12px;
}

/* Ensure price and add-to-cart don't overlap: make them block-level with clear spacing */
.product-info .add-to-cart { display: block; padding: 14px; margin-top: 10px; clear: both; }

/* WooCommerce single product specific selectors */
.single-product .summary .price { display:block; margin-bottom: 14px; }
.single-product .summary .single_variation_wrap,
.single-product form.cart .single_variation_wrap {
    display: block !important;
}
.single-product .summary .single_variation .price,
.single-product .summary .woocommerce-variation-price {
    display: none !important;
}

/* Hide variation price block globally to avoid duplicate prices */
.woocommerce-variation-price {
    display: none !important;
}

.single-product .summary .single_add_to_cart_button,
.ha-action-area .single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000 !important;
    color: #fff !important;
    padding: 12px 30px !important;
    border-radius: 16px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    min-height: 48px !important;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 14px 40px rgba(0,0,0,0.12);
    border: none !important;
}

.single-product .summary .single_add_to_cart_button:hover,
.ha-action-area .single_add_to_cart_button:hover {
    background: #111 !important;
}

/* Blog detail layout matching product page spacing */
.single-post-page {
    max-width: 1080px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    overflow-x: hidden;
}

.single-post-page .container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.single-post-page .ha-top-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 40px;
}

.single-post-page .custom-gallery {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    max-height: 520px;
}

.single-post-page .custom-gallery .main-image-wrapper {
    width: 100%;
    display: block;
    max-height: 520px;
    overflow: hidden;
}

.single-post-page .custom-gallery .main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    max-height: 520px;
}

.single-post-page .summary {
    padding: 0;
}

.single-post-page .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #55606a;
    font-size: 13px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.single-post-page .product-title {
    font-size: 2.7rem;
    line-height: 1.05;
    margin: 0 0 24px;
    color: #111827;
}

.single-post-page .post-excerpt {
    font-size: 1rem;
    color: #475569;
    line-height: 1.85;
    margin-bottom: 30px;
}

.single-post-page .post-actions .back-to-blog {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    background: #f0fdf4;
    color: #065f46;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #d1fae5;
}

.single-post-page .blog-detail-article {
    padding: 0;
    box-shadow: none;
    background: transparent;
}

.blog-detail-content {
    color: #334155;
    line-height: 1.9;
    font-size: 1rem;
}

.blog-detail-content img,
.blog-detail-content iframe,
.blog-detail-content video,
.blog-detail-content table {
    max-width: 100%;
    width: 100%;
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    margin: 2rem 0 1rem;
    color: #111827;
}

.blog-detail-content p,
.blog-detail-content ul,
.blog-detail-content ol,
.blog-detail-content blockquote {
    margin-bottom: 1.5rem;
}

.blog-detail-content ul,
.blog-detail-content ol {
    padding-left: 1.5rem;
}

.blog-detail-tags {
    margin-top: 32px;
    color: #475569;
    font-size: 0.95rem;
}

.blog-detail-tags a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
}

.blog-detail-tags a:hover {
    text-decoration: underline;
}

.blog-detail-navigation {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.nav-previous a,
.nav-next a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    padding: 14px 22px;
    border-radius: 14px;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-previous a:hover,
.nav-next a:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
}

.blog-detail-comments {
    margin-top: 48px;
}

@media (max-width: 900px) {
    .single-post-page .ha-top-container {
        grid-template-columns: 1fr;
    }

    .single-post-page .product-title {
        font-size: 2.2rem;
    }

    .blog-detail-navigation {
        flex-direction: column;
    }

    .nav-previous a,
    .nav-next a {
        width: 100%;
    }
}

/* REMOVE WOOCOMMERCE DEFAULT PRICE HTML */

.product-info .price del{

    color:#999;

    font-size:14px;

    margin-right:5px;
}

/* BUTTON */

.add-to-cart{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:100%;

    height:45px;

    border-radius:30px;

    border:1px solid #111;

    background:#fff;

    color:#111;

    font-size:11px;

    font-weight:600;

    text-decoration:none;

    transition:0.3s;
}

.add-to-cart:hover{

    background:#111;

    color:#fff;
}

/* MOBILE */

@media(max-width:768px){

    .product-grid{

        grid-template-columns:repeat(2,1fr) !important;

        gap:15px;
    }


    .product-info h3{

        font-size:13px;
    }

    .product-info .price{

        font-size:16px;
    }

    .woocommerce ul.products,
    .woocommerce-page ul.products,
    ul.products {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px !important;
    }

    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product,
    ul.products li.product {
        width: auto !important;
        float: none !important;
        clear: none !important;
        margin-right: 0 !important;
    }
    .mini-launch-badge{

    position:absolute;

    top:12px;

    left:12px;

    background:#008f3f;

    color:#fff;

    padding:6px 12px;

    border-radius:20px;

    font-size:12px;

    font-weight:600;

    z-index:2;
}


    .product-card {
        padding-top: 0 !important;
    }

}

@media (max-width: 640px) {
    .related-products .related.products ul.products,
    .related-products .products ul.products {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        overflow-x: visible !important;
        padding-bottom: 0 !important;
    }

    .related-products .related.products ul.products li.product,
    .related-products .products ul.products li.product {
        min-width: auto !important;
        max-width: 100% !important;
        width: 100% !important;
        flex: 0 0 auto !important;
    }

    .related-products .related.products ul.products,
    .related-products .products ul.products {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* Stronger category/archive layout rules */
.category-products { background: #fff; padding: 20px 0 60px; }
.category-products .shop-container { max-width:1200px; margin:0 auto; grid-template-columns: 280px 1fr; gap: 40px; }
.shop-sidebar { padding-top: 6px; }
.shop-sidebar .widget { margin-bottom: 20px; }
.shop-sidebar .widget { background: #fff; border: 1px solid #edf2f7; border-radius: 16px; padding: 20px; box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04); }
.shop-sidebar .widget:last-child { margin-bottom: 0; }
.shop-sidebar .widget-title { margin-bottom: 18px; font-size: 0.95rem; font-weight: 700; color: #0f172a; text-transform: uppercase; letter-spacing: 0.04em; }

/* Make WooCommerce loop use responsive grid */
.category-products .shop-content ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(260px, 1fr)) !important;
    gap: 24px !important;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ========================================================================== */
/* MY ACCOUNT: Improved layout and styles                                         */
/* ========================================================================== */
.woocommerce-account .woocommerce-MyAccount-content {
    max-width: 1100px;
    margin: 24px auto;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
    flex: 0 0 260px;
    background: #f8fafc;
    border: 1px solid #e6eef2;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15,23,42,0.04);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin-bottom: 8px;
}
.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation a.is-active {
    background: #0f172a;
    color: #fff;
}
.woocommerce-account .woocommerce-MyAccount-content > div {
    flex: 1 1 auto;
    background: #ffffff;
    border: 1px solid #e6eef2;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(15,23,42,0.04);
}
.woocommerce-account .woocommerce-MyAccount-content h2 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #0f172a;
}
@media (max-width: 900px) {
    .woocommerce-account .woocommerce-MyAccount-content {
        flex-direction: column;
        padding: 0 12px;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation {
        flex: none;
        order: 2;
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .category-products .shop-content ul.products {
        grid-template-columns: repeat(3, minmax(240px, 1fr)) !important;
    }
}

@media (max-width: 992px) {
    .category-products .shop-content ul.products {
        grid-template-columns: repeat(2, minmax(220px, 1fr)) !important;
    }
}

@media (max-width: 520px) {
    .category-products .shop-content ul.products {
        grid-template-columns: 1fr !important;
    }
}

.category-products .shop-content ul.products li.product {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 14px;
    text-align: left;
    transition: transform .18s ease, box-shadow .18s ease;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}

/* Related products horizontal slider support */
.related-products {
    padding: 40px 0;
}

.related-products > h2 {
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 700;
}

.related-products .related.products,
.related-products .related,
.related-products .products {
    margin: 0;
    padding: 0;
}

.related-products .related.products h2,
.related-products .related h2,
.related-products .products h2 {
    display: none !important;
}

.related-products .related.products ul.products,
.related-products .products ul.products {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.related-products .related.products ul.products li.product,
.related-products .products ul.products li.product {
    min-width: 300px;
    max-width: 320px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 12px;
    min-height: 360px;
    max-height: none !important;
    overflow: visible !important;
}

@media (max-width: 900px) {
    .related-products .related.products ul.products li.product,
    .related-products .products ul.products li.product {
        min-width: 260px;
        max-width: 260px;
    }
}

@media (max-width: 640px) {
    .related-products .related.products ul.products,
    .related-products .products ul.products {
        gap: 12px;
        padding: 0 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .related-products .related.products ul.products li.product,
    .related-products .products ul.products li.product {
        min-width: calc(50% - 10px);
        max-width: calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
        scroll-snap-align: start;
        box-sizing: border-box;
    }
}

.related-products ul.products li.product .product-info {
    min-height: auto;
}

.related-products ul.products li.product img {
    height: auto;
    object-fit: contain;
}

.related-products ul.products li.product .woocommerce-loop-product__title {
    font-size: 15px;
    margin: 4px 0 6px;
    line-height: 1.25;
}

.related-products ul.products li.product .price {
    font-size: 16px;
    margin-bottom: 8px;
    color: #111 !important;
}

.related-products ul.products li.product .product-img {
    padding: 12px 12px 8px;
}

/* Toast message */
#ajax-add-to-cart-toast{
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 24px;
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    z-index: 99999;
    display: none;
    font-weight:700;
}

.related-products ul.products li.product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.related-products ul.products li.product .button,
.related-products ul.products li.product a.button,
.related-products ul.products li.product a.add_to_cart_button,
.related-products ul.products li.product .added_to_cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 10px 18px;
    border-radius: 999px;
    background: #0a8a43;
    /*color: #fff !important;*/
    text-decoration: none;
    font-weight: 700;
    margin-top: auto;
    transition: background 0.25s ease, color 0.25s ease;
}

.related-products ul.products li.product a.add_to_cart_button:hover,
.related-products ul.products li.product .button:hover,
.related-products ul.products li.product .added_to_cart:hover {
    background: #0d6e35;
}

.related-products ul.products::-webkit-scrollbar {
    height: 8px;
}
.related-products ul.products::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 4px;
}

.related-products ul.products::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.18);
    border-radius: 4px;
}

/* Strong override: ensure related product titles and links are visible */
.related-products .woocommerce-loop-product__title,
.related-products .woocommerce-loop-product__title a,
.related-products ul.products li.product .product-info h3 {
    color: #111 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-indent: 0 !important;
    font-size: 15px !important;
    line-height: 1.3 !important;
    margin: 6px 0 6px !important;
}

/* Ensure product-info area shows and isn't collapsed */
.related-products ul.products li.product .product-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 6px !important;
}

/* If any ancestor rule hides headings by targeting generic h3, undo it here */
.related-products h3 { display: block !important; }

.category-products .shop-content ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.category-products .shop-content li.product .product-info,
.category-products .shop-content li.product .woocommerce-loop-product__title {
    flex: 1 1 auto;
}


/* Product Card */
.product-card-inner {
    overflow: visible !important;
}

.category-products .shop-content li.product .product-info h3,
.category-products .shop-content li.product .woocommerce-loop-product__title {
    font-size:16px; margin: 0 0 10px; color:#111; font-weight:600; line-height:1.4;
}

.category-products .shop-content li.product .price { font-size:18px; font-weight:700; color:#0f172a; margin-bottom:12px; }

.category-products .shop-content li.product .button,
.category-products .shop-content li.product a.add_to_cart_button,
.category-products .shop-content li.product .added_to_cart {
    display:inline-flex !important; align-items:center; justify-content:center; padding:10px 14px; border-radius:10px; text-decoration:none;
    background: transparent !important; color: #008f3f !important; border: 1px solid #008f3f !important; font-weight: 600 !important; width: 100% !important;
    transition: 0.3s ease !important;
}

.category-products .shop-content li.product .button:hover,
.category-products .shop-content li.product a.add_to_cart_button:hover,
.category-products .shop-content li.product .added_to_cart:hover {
    background: #008f3f !important; color: #fff !important;
}

/* Toolbar alignment */
.category-products .shop-toolbar { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom:18px; }

/* Result count and ordering */
.woocommerce .woocommerce-result-count { font-size:14px; color:#555; }
.woocommerce .woocommerce-ordering { margin-left:auto; }

/* Pagination */
.woocommerce-pagination { display:flex; justify-content:center; margin-top:28px; }
.woocommerce-pagination .page-numbers { display:inline-flex; align-items:center; justify-content:center; min-width:40px; height:40px; border-radius:6px; border:1px solid #e6e6e6; margin:0 6px; }

/* No products */
.category-products .no-products { text-align:center; padding:40px; color:#666; }

@media (max-width:900px){
    .category-products .shop-container { grid-template-columns: 1fr; padding: 20px; }
    .shop-sidebar { order: 2; }
    .shop-content { order: 1; }
    .category-overlay h1 { font-size: 1.6rem; }
}
.watch-shop-section {
    background: #fff;
    text-align: center;
}

.video-grid-container {
    display: flex;
    align-items: center;
    position: relative;
    gap: 15px;
    margin: 30px 0;
}

.video-grid-container .slider-arrow {
    position: relative;
    flex-shrink: 0;
    z-index: 10;
    transition: all 200ms ease;
}

.video-grid-container .slider-arrow:hover {
    background: #f0fdf4;
    color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.video-grid-container .slider-arrow.left {
    order: -1;
}

.video-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    width: 100%;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 0;
    
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.video-grid::-webkit-scrollbar {
    display: none;
}

.video-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 280px;
    height: 350px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    scroll-snap-align: start;
    transition: transform 200ms ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: #000;
}

.video-overlay {
    position: absolute;
    bottom: 15px;
    left: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.expert-info {
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    font-size: 18px;
    text-align: left;
    padding-left: 5px;
}

.product-overlay-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.product-overlay-card img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.overlay-details p {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #333;
}

.overlay-details .price {
    font-size: 13px;
    font-weight: 700;
    color: #000;
}

.overlay-details del {
    color: #888;
    font-weight: 400;
    margin-left: 5px;
}

/* NEW LAUNCH BUTTON */
.container-center {
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
}

.btn-new-launch {
    background: #008a3d;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-new-launch:hover {
    background: #006b2f;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .video-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 280px;
    }
}

@media (max-width: 600px) {
    .video-card {
        flex: 0 0 calc(95vw - 15px);
        min-width: 280px;
        height: 280px;
    }
}
/* Section Container */
.new-launch-section {
    padding: 40px 4%;
    background-color: #fff;
}

.launch-header {
    margin-bottom: 30px;
}

.launch-badge {
    background-color: #008a3d;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
}

/* Grid System */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 items on desktop */
    gap: 20px;
    margin-bottom: 40px;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

.shop-toolbar .product-count { color: #555; font-size: 14px; }
.shop-toolbar .sorting { text-align: right; }

/* Individual Product Card */
.product-card {
    background: #fff;
    text-align: center;
}

.image-container{

    position:relative;

    width:100%;

    aspect-ratio:1/1;

    overflow:hidden;

    border-radius:8px;

    background:#f7f7f7;

    margin-bottom:18px;
}

.image-container img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:0.4s;
}
.product-card:hover .image-container img{

    transform:scale(1.05);
}
.product-name{

    font-size:18px;

    line-height:1.5;

    margin-bottom:12px;

    min-height:55px;
}

.product-name a{

    text-decoration:none;

    color:#111;
}
.pricing{

    margin:15px 0;
}

.old-price{

    color:#999;

    text-decoration:line-through;

    margin-right:8px;

    font-size:16px;
}

.current-price{

    font-size:28px;

    font-weight:700;

    color:#111;
}
.btn-add-cart{

    width:100%;

    height:50px;

    border-radius:40px;

    border:1px solid #008f3f;

    background:#fff;

    color:#008f3f;

    font-size:17px;

    font-weight:600;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    transition:0.3s;
}

.btn-add-cart:hover{

    background:#008f3f;

    color:#fff;
}

..product-card a.add_to_cart_button,
.product-card .btn-add-cart {
    width: 100% !important;
    max-width: 100% !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    padding: 14px 18px !important;
    min-height: 50px !important;
}

.product-card a.add_to_cart_button {
    border-radius: 40px !important;
    border: 1px solid #008f3f !important;
    background: transparent !important;
    color: #008f3f !important;
    text-decoration: none !important;
}

.product-card a.add_to_cart_button:hover {
    background: #008f3f !important;
    color: #fff !important;
}

.mini-launch-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #008f3f;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

/* New Launch: image-first product cards */
.new-launch-section .product-card {
    background: transparent;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-launch-section .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.new-launch-section .image-container {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 24px;
    background: #f7faf8;
    margin-bottom: 0;
    padding: 12px;
    box-sizing: border-box;
}

.new-launch-section .image-container a,
.new-launch-section .image-container img {
    width: 100%;
    height: 100%;
    display: block;
    box-sizing: border-box;
}

.new-launch-section .image-container a {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.new-launch-section .image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.4s ease;
}

.new-launch-section .product-card:hover .image-container img {
    transform: scale(1.03);
}

.new-launch-section .product-details {
    padding: 18px;
    text-align: left;
}

.new-launch-section .product-name {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
    min-height: 52px;
}

.new-launch-section .product-name a {
    color: #111;
    text-decoration: none;
}

.new-launch-section .pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 12px 0 16px;
}

.new-launch-section .old-price {
    font-size: 14px;
}

.new-launch-section .current-price {
    font-size: 20px;
}

.new-launch-section .btn-add-cart,
.new-launch-section .product-card a.add_to_cart_button {
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
    border-radius: 999px;
    font-size: 15px;
    margin-top: auto;
}

@media (max-width: 992px) {
    .new-launch-section .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .new-launch-section .product-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .new-launch-section .product-details {
        padding: 16px;
    }
}

.rating {
    color: #fbbc04; /* Star yellow */
    font-size: 12px;
    margin-bottom: 10px;
}

.rating .count {
    color: #888;
    margin-left: 5px;
}

.pricing {
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
    margin-right: 8px;
}

.current-price {
    font-weight: bold;
    color: #000;
    font-size: 16px;
}

/* Buttons */
.btn-add-cart {
    width: 100%;
    background: #fff;
    border: 1.5px solid #008a3d;
    color: #008a3d;
    padding: 10px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-add-cart:hover {
    background: #008a3d;
    color: #fff;
}

.view-all-container {
    text-align: center;
}

.btn-view-all {
    background: #000;
    color: #fff;
    padding: 12px 40px;
    border-radius: 25px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-decoration:none;
}

/* Stock Status Badge */
.stock-status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.stock-status-badge.in-stock {
    background: #00bcd4;
    color: #fff;
}

.stock-status-badge.out-of-stock {
    background: #f44336;
    color: #fff;
}

/* Single Product Add to Cart Section */
.product-add-to-cart-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.quantity-input-group {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.qty-input {
    width: 70px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: 0.2s;
}

.qty-input:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

.product-add-to-cart-wrapper .btn-add-cart {
    /* allow the button to take remaining space beside the qty input */
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    max-width: none;
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.25s ease;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

.product-add-to-cart-wrapper .btn-add-cart:hover {
    background: #111;
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .product-add-to-cart-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .qty-input {
        width: 100%;
    }

    .product-add-to-cart-wrapper .btn-add-cart {
        /* restore full-width button on mobile */
        flex: none;
        width: 100%;
        max-width: 100%;
    }
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 items on mobile as requested */
        gap: 15px;
    }

    .launch-badge {
        font-size: 12px;
        padding: 8px 20px;
    }

    .product-name {
        font-size: 12px;
    }
}
/* Split Info Section */
.split-info-section {
    padding: 30px 4%;
}

.info-container {
    /* Two equal columns so both cards share the same width */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch; /* make children match heights */
    max-width: 1180px;
    margin: 0 auto;
}

/* CONSULTATION */

.card-consultation{

    background:#008f3f;

    color:#fff;

    padding:24px;

    border-radius:20px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    min-height: auto;
}

.card-consultation h2{

    font-size:32px;

    margin-bottom:15px;
}

.card-consultation p{

    font-size:16px;

    margin-bottom:20px;
}

/* BUTTON */

.btn-white{

    width:max-content;

    padding:14px 28px;

    border-radius:40px;

    background:#fff;

    color:#008f3f;

    text-decoration:none;

    font-weight:600;

    transition:0.3s;
}

.btn-white:hover{

    background:#111;

    color:#fff;
}

/* TESTIMONIAL */

.card-testimonial{
    background:#ffffff;
    padding:28px 22px;
    border-radius:30px;
    position:relative;
    overflow:hidden;
    /* allow the testimonial to grow to the available space in the grid */
    max-width: none;
    width: 100%;
    box-shadow: 0 20px 40px rgba(12, 32, 18, 0.08);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: auto;
}

.testimonial-slide{
    display:none;
    opacity:0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.testimonial-slide.active{
    display:block;
    opacity:1;
    transform: translateY(0);
}

.testimonial-content{
    max-width: 760px;
    margin: 0 auto;
}

.testimonial-content p{
    font-size:18px;
    line-height:1.8;
    color:#1e2c23;
    margin-bottom:24px;
    position: relative;
    padding-left: 36px;
}

.testimonial-content p:before {
    content: '“';
    position: absolute;
    left: 0;
    top: -6px;
    font-size: 3.5rem;
    color: rgba(0, 143, 63, 0.12);
    line-height: 1;
}

.author{
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #0e5b32;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* DOTS */

.dots{
    display:flex;
    justify-content:center;
    gap:14px;
    margin-top:30px;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#d4d4d4;
    cursor:pointer;
    transition: all 0.25s ease;
}

.dot.active{
    background:#008f3f;
    width:18px;
    border-radius: 10px;
}

/* Testimonial Carousel */
.testimonial-carousel-section {
    padding: 70px 4%;
    background-color: #f8faf5;
    text-align: center;
}

.testimonial-carousel-section .section-title {
    max-width: 760px;
    margin: 0 auto 40px;
    font-size: 2.4rem;
    line-height: 1.08;
    color: #122b1f;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 10px 10px;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.33% - 16px);
    min-width: 320px;
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 28px;
    text-align: left;
    position: relative;
    padding: 32px;
    min-height: 320px;
    box-shadow: 0 22px 52px rgba(13, 33, 20, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 66px rgba(12, 35, 21, 0.12);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
}

.card-top h3 {
    font-size: 18px;
    color: #0d321f;
    margin: 0;
    width: 100%;
}

.product-circle {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(9, 30, 18, 0.08);
    flex-shrink: 0;
}

.product-circle img {
    max-height: 56px;
    width: auto;
}

.stars {
    color: #fbbc04;
    margin-bottom: 18px;
    font-size: 14px;
}

.card-content p {
    font-size: 15px;
    color: #4f5d52;
    line-height: 1.8;
    margin-bottom: 24px;
}

.customer-name {
    display: block;
    margin-top: 12px;
    font-weight: 700;
    color: #0a2518;
}

.nav-btn {
    background: #ffffff;
    border: 1px solid #d5d5d5;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.nav-btn.prev {
    position: absolute;
    left: -16px;
}

.nav-btn.next {
    position: absolute;
    right: -16px;
}

.nav-btn i {
    font-size: 16px;
    color: #1d3829;
}

.carousel-dots {
    margin-top: 26px;
}

.dot {
    height: 10px;
    width: 10px;
    background: #d9d9d9;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
}

.dot.active {
    background: #1f3d28;
    width: 20px;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .testimonial-card {
        flex: 0 0 85%;
        min-width: 85%;
    }
    .nav-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .card-testimonial {
        padding: 30px 20px;
    }
    .testimonial-content p {
        font-size: 18px;
    }
    .testimonial-carousel-section {
        padding: 50px 4%;
    }
    .testimonial-slider {
        gap: 16px;
        padding: 16px 10px 8px;
    }
}

/* MOBILE */

@media (max-width:768px) {

    .info-container{

        grid-template-columns:1fr;
    }

    .card-consultation,
    .card-testimonial{

        padding:24px;
        min-height: auto;
    }

    .card-consultation h2{

        font-size:28px;
    }

    .testimonial-content p{

        font-size:18px;
    }
}

/* Combos Section */
.combos-section { padding: 40px 4%; }

.combo-header { margin-bottom: 25px; }

.combo-badge {
    background: #008a3d;
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.combo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.combos-section .image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #f7faf8;
    padding: 12px;
    box-sizing: border-box;
}

.combos-section .image-container a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.combos-section .image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    object-position: center center;
}


/* RESPONSIVE FIXES */
@media (max-width: 768px) {
    .combo-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 items on mobile */
    }
    
    .card-consultation, .card-testimonial {
        min-width: 100%; /* Full width on mobile */
        padding: 30px 20px;
        height: auto;
        min-height: 200px;
    }
}
/* Reuse consistent product card styles */
.combo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 20px;
}

.product-card .product-name {
    font-size: 13px;
    min-height: 40px; /* Ensures alignment if names are different lengths */
    margin: 10px 0;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.rating {
    color: #fbbc04;
    font-size: 11px;
    margin-bottom: 8px;
}

.rating .count {
    color: #888;
    margin-left: 4px;
}

.pricing {
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
    margin-right: 5px;
}

.current-price {
    font-weight: bold;
    color: #000;
    font-size: 15px;
}

/* Ensure mobile view stays as 2 items */
@media (max-width: 768px) {
    .combo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* About Section */
.about-sheopals {
    padding: 60px 8%;
    background-color: #fff;
    text-align: center;
}

.about-intro h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto 50px;
}

/* Benefit Card Styling */
.benefit-card {
    background-color: #f7f9f7; /* Very light grey/green from image */
    border-radius: 40px;
    padding: 60px;
    display: flex;
    align-items: center;
    text-align: left;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.card-content {
    flex: 1;
    z-index: 2;
}

.card-number {
    display: block;
    font-size: 48px;
    color: #008a3d;
    font-weight: bold;
    margin-bottom: 15px;
}

.card-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.card-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    max-width: 650px;
}

.card-image{
    flex: 0 0 420px;
    max-width:420px;
}

.card-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:20px;
    display:block;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 991px) {
    .about-sheopals {
        padding: 40px 5%;
    }

    .benefit-card {
        flex-direction: column;
        padding: 40px 30px;
        border-radius: 30px;
    }

    .card-number {
        font-size: 36px;
        text-align: center;
    }

    .card-content h3 {
        text-align: center;
        font-size: 20px;
    }

    .card-content p {
        text-align: center;
        font-size: 14px;
    }

    .card-image {
        margin-top: 30px;
        flex: 0 0 auto;
        width: 200px;
    }
}
/* News Spotlight Styles */
.news-spotlight {
    padding: 60px 4%;
    text-align: center;
    background-color: #f7faf5;
}

.news-spotlight .section-intro {
    max-width: 900px;
    margin: 0 auto 36px;
}

.news-spotlight .section-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #143f1e;
}

.news-spotlight .section-description {
    margin: 0 auto;
    font-size: 1rem;
    color: #5a6c5b;
    max-width: 720px;
}

.news-spotlight .news-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    align-items: stretch;
    justify-items: center;
    margin-top: 24px;
}

.news-spotlight .logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 28px 18px;
    background: #ffffff;
    border: 1px solid #e3e6e2;
    box-shadow: 0 8px 28px rgba(26, 45, 31, 0.06);
    border-radius: 18px;
    min-height: 180px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    width: 100%;
    max-width: 280px;
}

.news-spotlight .logo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 35, 20, 0.1);
}

.news-spotlight .logo-item .logo-img {
    width: auto;
    max-height: 70px;
    max-width: 100%;
    margin-bottom: 18px;
    filter: grayscale(0.6);
    transition: filter 0.25s ease;
}

.news-spotlight .logo-item:hover .logo-img {
    filter: grayscale(0);
}

.news-spotlight .logo-link {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.95rem;
    color: #ffffff;
    background-color: #008a3d;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.news-spotlight .logo-link:hover {
    background-color: #006631;
    transform: translateY(-1px);
}

.homepage-featured-products-header {
    max-width: 960px;
    margin: 0 auto 32px;
    text-align: center;
}

.homepage-featured-products-header .section-heading {
    margin-bottom: 16px;
    font-size: 2rem;
}

.homepage-featured-products-header .section-description {
    margin: 0 auto;
    max-width: 720px;
    font-size: 1rem;
    color: #53685b;
    line-height: 1.7;
}

/* Beard Grid Styles */
.beard-care-grid {
    padding: 20px 4%;
}

.grid-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Desktop: Large banner + 2 items */
    gap: 20px;
}

.product-feature-card.large {
    grid-row: span 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.product-feature-card.large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.product-item {
    text-align: center;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
    min-height: 100%;
}

.img-wrap img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.details h3 {
    font-size: 18px;
    margin: 0;
    min-height: 24px;
    line-height: 1.3;
    overflow: hidden;
    text-decoration: none;
}

.details h3 a {
    text-decoration: none;
}

.product-item .details .price {
    display: block;
    margin: 10px 0 0;
    line-height: 1.4;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.btn-outline {
    width: 100%;
    border: 1.5px solid #008a3d;
    color: #008a3d;
    background: transparent;
    padding: 10px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}


/* ========================================================================== */
/* UNIFIED BUTTON COMPONENT STYLES */
/* ========================================================================== */

.button-link,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 200ms ease;
    cursor: pointer;
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 1rem;
    border: none;
}

/* Primary Button */
.btn-primary,
.button-link.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover,
.button-link.btn-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Secondary Button */
.btn-secondary,
.button-link.btn-secondary {
    background: #f0fdf4;
    color: #065f46;
    border: 1.5px solid #10b981;
}

.btn-secondary:hover,
.button-link.btn-secondary:hover {
    background: #10b981;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Outline Button */
.btn-outline,
.button-link.btn-outline {
    background: transparent;
    color: #065f46;
    border: 2px solid #10b981;
    padding: 12px 26px;
}

.btn-outline:hover,
.button-link.btn-outline:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
}

/* White Button */
.btn-white,
.button-link.btn-white {
    background: #ffffff;
    color: #111827;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-white:hover,
.button-link.btn-white:hover {
    background: #f9fafb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

/* Size Variants */
.btn-sm,
.button-link.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg,
.button-link.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* Full Width Button */
.btn-block,
.button-link.btn-block {
    width: 100%;
}

/* Disabled State */
.btn:disabled,
.button-link:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover,
.button-link:disabled:hover {
    transform: none !important;
}

/* MOBILE VIEW - RESPONSIVE */
@media (max-width: 1024px) {
    .grid-container {
        grid-template-columns: 1fr; /* Stacks everything on mobile */
    }

    .news-logos {
        justify-content: center;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .logo-item {
        max-width: 100%;
    }
}
.best-doctors-section {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    padding: 80px 0;
    background-color: #f6fbf4;
    color: #132a1d;
    overflow-x: hidden;
}

@media (max-width: 992px) {
    .best-doctors-section {
        left: 0;
        right: auto;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 60px 16px;
    }

    body,
    html {
        overflow-x: hidden;
    }
}

.section-heading {
    font-size: 2.8rem;
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-align: center;
}

.doctors-container {
    display: block;
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.doctor-slider {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    width: 100%;
}

.doctor-profile-card {
    background: #ffffff;
    padding: 30px 24px 24px;
    border-radius: 28px;
    border: 1px solid rgba(15, 61, 26, 0.08);
    box-shadow: 0 24px 60px rgba(14, 50, 25, 0.08);
    overflow: hidden;
    width: 100%;
    max-width: 420px;
    margin: 0;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.doctor-profile-card img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 22px;
}

.card-name-tag {
    display: block;
    background: #0b541f;
    color: #ffffff;
    font-weight: 700;
    padding: 16px 18px;
    border-radius: 18px;
    font-size: 0.95rem;
    text-align: center;
    letter-spacing: 0.01em;
}

.doctor-review {
    background: #ffffff;
    padding: 32px;
    border-radius: 28px;
    border: 1px solid rgba(15, 61, 26, 0.08);
    box-shadow: 0 24px 60px rgba(14, 50, 25, 0.06);
    text-align: left;
}

.doctor-review .stars {
    color: #fbbc04;
    margin-bottom: 18px;
    font-size: 16px;
}

.testimonial-text {
    font-size: 1rem;
    color: #344337;
    line-height: 1.85;
    margin-bottom: 22px;
}

.dr-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #112613;
    margin-bottom: 4px;
}

.dr-qual {
    font-size: 0.95rem;
    color: #66706b;
}

.slider-arrow {
    background: #ffffff;
    border: 1px solid rgba(15, 61, 26, 0.12);
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(14, 50, 25, 0.1);
    cursor: pointer;
    color: #16381d;
}

.slider-arrow:hover {
    transform: translateY(-1px);
    border-color: rgba(15, 61, 26, 0.22);
}

.doctor-slider-wrapper {
    width: 100%;
}

.doctor-slider-wrapper .slider-item {
    display: none;
}

.doctor-slider-wrapper .slider-item.active {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
}

.doctor-slider-wrapper .slider-item {
    width: 100%;
}

.doctor-review {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 991px) {
    .doctors-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .doctors-group-img {
        display: none;
    }

    .doctor-slider {
        align-items: stretch;
    }

    .doctor-profile-card,
    .doctor-review {
        max-width: 100%;
        width: 100%;
    }

    .doctor-review {
        text-align: left;
        padding: 24px;
    }
}

@media (max-width: 680px) {
    .best-doctors-section {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .doctors-container {
        padding: 0 16px;
    }

    .section-heading {
        font-size: 2.2rem;
    }

    .doctor-profile-card,
    .doctor-review {
        padding: 18px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }
}
/* Blog Section Container */
.blog-section {
    padding: 60px 4%;
    background-color: #fff;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: bold;
    color: #1a1a1a;
}

.blog-slider {
    position: relative;
    overflow: hidden;
}

.blog-slider .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.blog-slider .slider-arrow.left {
    left: -15px;
}

.blog-slider .slider-arrow.right {
    right: -15px;
}

/* Grid System */
.blog-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 1fr);
    gap: 25px;
    width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 0;
}

.blog-grid.category-grid {
    scroll-padding: 20px;
}

.blog-grid::-webkit-scrollbar {
    display: none;
}

.blog-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Blog Card Styling */
.blog-card {
    background-color: #f1f8f6;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

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

.blog-card {
    scroll-snap-align: start;
}

.blog-img {
    overflow: hidden;
    max-height: 240px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-info {
    padding: 20px;
    text-align: center;
}

.blog-info h3 {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    /* Limit to 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Detail Page */
.blog-detail-page {
    background: #f7faf7;
    padding: 60px 0 80px;
}

.blog-detail-page .container {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}

.blog-detail-article {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
}

.blog-detail-header {
    margin-bottom: 30px;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #65748b;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.blog-detail-title {
    font-size: 2.8rem;
    line-height: 1.05;
    margin: 0;
    color: #0f172a;
}

.blog-detail-image {
    margin: 30px 0;
    border-radius: 18px;
    overflow: hidden;
}

.blog-detail-image img {
    display: block;
    width: 100%;
    height: auto;
}

.blog-detail-content {
    color: #334155;
    line-height: 1.85;
    font-size: 1rem;
}

.blog-detail-content p,
.blog-detail-content ul,
.blog-detail-content ol,
.blog-detail-content blockquote {
    margin-bottom: 1.5rem;
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    margin: 2.2rem 0 1rem;
    color: #102a43;
}

.blog-detail-content ul,
.blog-detail-content ol {
    padding-left: 1.5rem;
}

.blog-detail-footer {
    margin-top: 45px;
    display: grid;
    gap: 18px;
}

.blog-detail-tags {
    color: #475569;
    font-size: 0.95rem;
}

.blog-detail-tags a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
}

.blog-detail-tags a:hover {
    text-decoration: underline;
}

.blog-detail-navigation {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.nav-previous a,
.nav-next a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    padding: 14px 22px;
    border-radius: 14px;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-previous a:hover,
.nav-next a:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
}

.blog-detail-back {
    margin-top: 40px;
    text-align: center;
}

.back-to-blog {
    display: inline-block;
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
}

.back-to-blog:hover {
    text-decoration: underline;
}

.blog-detail-comments {
    margin-top: 50px;
}

@media (max-width: 900px) {
    .blog-detail-article {
        padding: 28px;
    }

    .blog-detail-title {
        font-size: 2.2rem;
    }

    .blog-detail-navigation {
        flex-direction: column;
    }

    .nav-previous,
    .nav-next {
        width: 100%;
    }
}

.blog-date {
    font-size: 12px;
    color: #888;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.blog-info h3 a{

    text-decoration:none;

    color:#111;
}

/* ========================================================================== */
/* IMPROVED CART PAGE LAYOUT - MODERN DESIGN */
/* ========================================================================== */

.woocommerce-cart-wrapper {
    background: #f9fafb;
    padding: 40px 0;
    min-height: 80vh;
}

.cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cart Header Section */
.cart-header {
    margin-bottom: 40px;
    text-align: center;
}

.cart-page-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.cart-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

/* Main Content Grid */
.cart-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

/* ========================================================================== */
/* CART ITEMS SECTION */
/* ========================================================================== */

.cart-items-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Individual Cart Item Card */
.cart-item-card {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto auto;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
    align-items: start;
    transition: background-color 0.2s ease;
}

.cart-item-card:last-child {
    border-bottom: none;
}

.cart-item-card:hover {
    background-color: #f8fafc;
}

/* Product Image */
.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f5f9;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-image a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Product Details */
.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-name {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
}

.cart-item-name a {
    text-decoration: none;
    color: #0f172a;
    transition: color 0.2s ease;
}

.cart-item-name a:hover {
    color: #007a3d;
}

.cart-item-meta {
    font-size: 12px;
    color: #64748b;
}

.cart-item-meta dl {
    margin: 0;
    padding: 0;
}

.cart-item-meta dt,
.cart-item-meta dd {
    display: inline;
    margin: 0;
}

.cart-item-meta dt::after {
    content: ": ";
}

.cart-item-meta dd::after {
    content: " | ";
}

.cart-item-meta dd:last-child::after {
    content: "";
}

.cart-item-price {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 4px;
}

/* Backorder Notification */
.backorder_notification {
    background: #fef08a;
    color: #854d0e;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 4px !important;
}

/* Quantity Control */
.cart-item-quantity {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.quantity {
    display: inline-flex !important;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    overflow: hidden;
    background: white;
}

.quantity input.qty {
    width: 50px !important;
    height: 40px !important;
    border: none !important;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    padding: 0 !important;
}

.quantity button {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    border: none !important;
    background: #f1f5f9;
    color: #64748b;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.quantity button:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* Subtotal */
.cart-item-subtotal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    white-space: nowrap;
}

.cart-item-subtotal-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.cart-item-subtotal-value {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

/* Remove Button */
.cart-item-remove {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove a.remove-item {
    width: 40px;
    height: 40px;
    border: 1px solid #fecaca;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    text-decoration: none;
    transition: all 0.2s ease;
    background: #fef2f2;
    font-size: 16px;
}

.cart-item-remove a.remove-item:hover {
    background: #fecaca;
    color: #991b1b;
    border-color: #fecaca;
}

/* Cart Actions */
.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-top: 1px solid #f1f5f9;
    gap: 20px;
    flex-wrap: wrap;
}

.cart-actions-left {
    flex: 1;
    min-width: 250px;
}

.cart-actions-right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Coupon Section */
.coupon-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.coupon-label {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    display: block;
}

.coupon-input-group {
    display: flex;
    gap: 8px;
}

.coupon-input {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.coupon-input:focus {
    outline: none;
    border-color: #007a3d;
    box-shadow: 0 0 0 3px rgba(0, 122, 61, 0.1);
}

.coupon-button {
    padding: 12px 24px;
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.coupon-button:hover {
    background: #e2e8f0;
    border-color: #94a3b8;
}

.update-cart-btn {
    padding: 12px 24px;
    background: #007a3d;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.update-cart-btn:hover {
    background: #006233;
}

/* ========================================================================== */
/* EMPTY CART STATE */
/* ========================================================================== */

.cart-empty-state {
    padding: 60px 40px;
    text-align: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.empty-cart-icon {
    font-size: 64px;
    color: #cbd5e1;
    margin-bottom: 24px;
}

.cart-empty-state h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.cart-empty-state p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 24px;
}

.cart-empty-state .button {
    padding: 12px 32px;
    background: #007a3d;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease;
}

.cart-empty-state .button:hover {
    background: #006233;
}

/* ========================================================================== */
/* CART SUMMARY SIDEBAR */
/* ========================================================================== */

.cart-summary-section {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.cart-collaterals {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cart Totals Box */
.woocommerce-cart-form .cart_totals {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: none;
}

.woocommerce-cart-form .cart_totals h2 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    margin-top: 0;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 16px;
}

.woocommerce-cart-form .cart_totals table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-cart-form .cart_totals table tr {
    border: none;
}

.woocommerce-cart-form .cart_totals table th,
.woocommerce-cart-form .cart_totals table td {
    padding: 12px 0;
    border: none;
    text-align: right;
    font-size: 14px;
}

.woocommerce-cart-form .cart_totals table th {
    text-align: left;
    color: #64748b;
    font-weight: 500;
}

.woocommerce-cart-form .cart_totals table td {
    color: #0f172a;
    font-weight: 600;
}

.woocommerce-cart-form .cart_totals .woocommerce-shipping-totals {
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.woocommerce-cart-form .cart_totals .woocommerce-shipping-totals th {
    font-weight: 600;
    color: #0f172a;
}

.woocommerce-cart-form .cart_totals tr.order-total {
    border-top: 2px solid #f1f5f9;
    padding-top: 16px;
}

.woocommerce-cart-form .cart_totals tr.order-total th {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.woocommerce-cart-form .cart_totals tr.order-total td {
    font-size: 18px;
    font-weight: 700;
    color: #007a3d;
}

/* Proceed to Checkout Button */
.woocommerce-cart-form .cart_totals .woocommerce-proceed-to-checkout a.checkout-button,
.woocommerce-cart-form .cart_totals a.checkout-button,
.woocommerce .button.checkout {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: #007a3d;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 20px;
    letter-spacing: 0.5px;
}

.woocommerce-cart-form .cart_totals .woocommerce-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart-form .cart_totals a.checkout-button:hover,
.woocommerce .button.checkout:hover {
    background: #006233;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 61, 0.2);
}

/* Cross Sells Section in Cart Summary */
.cross-sells {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cross-sells h2 {
    font-size: 16px;
    font-weight: 700;
    color: #007a3d;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0;
    letter-spacing: 0.5px;
}

.cross-sells .products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.cross-sells .product {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cross-sells .product:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cross-sells .product-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.cross-sells .product-content {
    padding: 12px;
    text-align: center;
}

.cross-sells .product-title {
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cross-sells .product-price {
    font-size: 13px;
    font-weight: 700;
    color: #007a3d;
}

/* ========================================================================== */
/* RESPONSIVE DESIGN - TABLET */
/* ========================================================================== */

@media (max-width: 768px) {
    .cart-page-title {
        font-size: 28px;
    }

    .cart-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cart-item-card {
        grid-template-columns: 80px 1fr auto;
        gap: 15px;
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
    }

    .cart-item-quantity,
    .cart-item-subtotal,
    .cart-item-remove {
        grid-column: 2 / 4;
    }

    .cart-item-subtotal {
        flex-direction: row;
        justify-content: space-between;
    }

    .cart-item-remove {
        justify-content: flex-start;
    }

    .cart-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cart-actions-left,
    .cart-actions-right {
        width: 100%;
    }

    .cart-actions-right {
        justify-content: stretch;
    }

    .update-cart-btn {
        width: 100%;
        justify-content: center;
    }

    .cart-summary-section {
        position: static;
        top: auto;
    }
}

/* ========================================================================== */
/* RESPONSIVE DESIGN - MOBILE */
/* ========================================================================== */

@media (max-width: 480px) {
    .cart-container {
        padding: 0 12px;
    }

    .cart-header {
        margin-bottom: 20px;
    }

    .cart-page-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .cart-subtitle {
        font-size: 14px;
    }

    .cart-item-card {
        grid-template-columns: 70px 1fr;
        gap: 12px;
        padding: 16px 12px;
    }

    .cart-item-image {
        width: 70px;
        height: 70px;
    }

    .cart-item-name {
        font-size: 14px;
    }

    .cart-item-quantity,
    .cart-item-subtotal,
    .cart-item-remove {
        grid-column: 1 / 3;
    }

    .cart-item-quantity {
        justify-content: space-between;
    }

    .cart-item-subtotal {
        flex-direction: row;
        justify-content: space-between;
        padding-top: 12px;
        border-top: 1px solid #f1f5f9;
    }

    .cart-item-remove {
        justify-content: center;
        padding-top: 12px;
        border-top: 1px solid #f1f5f9;
    }

    .cart-actions {
        padding: 16px 12px;
        gap: 12px;
    }

    .coupon-input-group {
        flex-direction: column;
    }

    .coupon-input,
    .coupon-button {
        width: 100%;
    }

    .coupon-button {
        text-align: center;
    }

    .update-cart-btn {
        width: 100%;
    }

    .woocommerce-cart-form .cart_totals {
        padding: 16px;
    }

    .woocommerce-cart-form .cart_totals h2 {
        font-size: 16px;
    }

    .cart-empty-state {
        padding: 40px 20px;
    }

    .empty-cart-icon {
        font-size: 48px;
    }

    .cart-empty-state h2 {
        font-size: 20px;
    }
}


.blog-category{

    margin-bottom:10px;

    font-size:12px;

    color:#008a3d;

    font-weight:600;

    text-transform:uppercase;
}

.blog-date{

    font-size:13px;

    color:#777;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 per row on tablets */
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr; /* 1 per row on mobile */
        gap: 20px;
    }
    
    .blog-img {
        max-height: 200px;
    }
    
    .blog-info h3 {
        font-size: 14px;
    }
}
/* Shopping Platforms */
.shopping-platforms {
    padding: 50px 4%;
    text-align: center;
}


.logo-marquee{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
}

.platform-logo img{
    max-height:60px;
    width:auto;
    transition:.3s;
}

.platform-logo:hover img{
    transform:scale(1.05);
}

/* Testimonial Carousel */
.testimonial-carousel-section {
    padding: 60px 4%;
    background-color: #fff;
    text-align: center;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 40px 10px;
}

/* Hide Scrollbar */
.testimonial-slider::-webkit-scrollbar { display: none; }

.testimonial-card {
    flex: 0 0 calc(33.33% - 14px);
    scroll-snap-align: start;
    background: #f8faf9;
    border-radius: 20px;
    text-align: left;
    position: relative;
    padding: 30px;
    min-height: 280px;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.card-top h3 {
    font-size: 18px;
    color: #1a1a1a;
    width: 60%;
}

.product-circle {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: -50px; /* Overlaps top of card */
}

.product-circle img {
    height: 60px;
    object-fit: contain;
}

.stars { color: #fbbc04; margin-bottom: 15px; font-size: 14px; }

.card-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.customer-name {
    font-weight: bold;
    color: #000;
}

/* Navigation & Dots */
.nav-btn {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
}

.carousel-dots { margin-top: 30px; }
.dot {
    height: 8px; width: 8px;
    background: #ddd;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
}
.dot.active { background: #555; width: 20px; border-radius: 10px; }

/* MOBILE RESPONSIVENESS */
@media (max-width: 991px) {
    .testimonial-card { flex: 0 0 80%; } /* Shows partial next slide */
    .nav-btn { display: none; }
    .logo-marquee img { height: 25px; }
}
.site-footer {
    background-color: #000;
    color: #fff;
    padding: 60px 5% 30px;
    font-size: 14px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: start;
}

.footer-col {
    min-width: 0;
}

.footer-logo {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.brand-info h3 {
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 500;
    color: #fff;
}

.brand-info p,
.footer-col p {
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.footer-col p a,
.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-col p a:hover,
.footer-col ul li a:hover {
    color: #fff;
}

/* Socials & Apps */
.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-links a {
    color: #fff;
    font-size: 18px;
    transition: opacity 0.3s;
}

.app-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.app-buttons img {
    height: 40px;
    cursor: pointer;
}

/* List Columns */
.col-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.col-title i {
    margin-right: 8px;
    font-size: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-bottom {
    padding-top: 15px;
    margin-top: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: left;
}

.footer-bottom p {
    color: #aaa;
    margin: 0;
    font-size: 13px;
}

/* MOBILE VIEW */
@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-logo {
        text-align: left;
    }

    .footer-col {
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .footer-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .partner-logos {
        gap: 20px;
    }
}
/*doctors slider new css */
.doctor-slider-wrapper .slider-item{

    display:none;
}

.doctor-slider-wrapper .slider-item.active{

    display:flex;
}
/*doctors slider new css close */
/*cart page css */
/* ==========================================================================
   SHEOPAL'S STYLE SIDE SLIDE CART OVERRIDES
   ========================================================================== */

/* 1. Header Box Adjustments */
.xoo-wsc-container, #side-cart-wrapper {
    max-width: 420px !important;
    max-height: 100vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    background: #ffffff !important;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin;
}

.xoo-wsc-container::-webkit-scrollbar,
#side-cart-wrapper::-webkit-scrollbar {
    width: 10px;
}

.xoo-wsc-container::-webkit-scrollbar-track,
#side-cart-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.xoo-wsc-container::-webkit-scrollbar-thumb,
#side-cart-wrapper::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.18);
    border-radius: 999px;
}

.xoo-wsc-container::-webkit-scrollbar-thumb:hover,
#side-cart-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(15, 23, 42, 0.28);
}

.xoo-wsc-header {
    border-bottom: 1px solid #f1f5f9 !important;
    padding: 20px !important;
}

.xoo-wsc-text {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
}

/* 2. Product Row Layout */
.xoo-wsc-product {
    padding: 20px !important;
    border-bottom: 1px solid #f8fafc !important;
    display: flex !important;
    gap: 15px !important;
}

.xoo-wsc-img-col img {
    border-radius: 6px !important;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.xoo-wsc-pname a {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #334155 !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
}

.xoo-wsc-pprice {
    font-weight: 600 !important;
    color: #0f172a !important;
    font-size: 15px !important;
    margin-top: 5px;
}

/* 3. Sleek Quantity Box Setup */
.xoo-wsc-qty-box {
    border: 1px solid #cbd5e1 !important;
    border-radius: 4px !important;
    overflow: hidden;
    display: inline-flex !important;
    align-items: center;
    margin-top: 10px;
}

.xoo-wsc-chg-qty {
    background: #f8fafc !important;
    color: #64748b !important;
    font-size: 16px !important;
    width: 32px !important;
    height: 32px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none !important;
}

.xoo-wsc-qty-box input.xoo-wsc-qty {
    width: 35px !important;
    height: 32px !important;
    border: none !important;
    text-align: center !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
}

/* 4. Cross-Sell Title Section */
.cart-cross-sells-wrapper {
    padding: 20px;
    background: #ffffff;
    border-top: 6px solid #f1f5f9;
}

.cart-cross-sells-wrapper h3.cross-heading {
    font-size: 16px;
    font-weight: 700;
    color: #007a3d; /* Theme signature green text emphasis */
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Horizontal cross-sell scroll column view */
.cart-cross-sells-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cross-sell-item-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.cross-sell-item-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.cross-sell-info {
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.cross-sell-info h4 {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    color: #475569;
    margin: 0 0 8px 0;
    min-height: 32px;
}

/* 5. Footer Summary Area & Check out Button */
.xoo-wsc-footer {
    padding: 20px !important;
    background: #ffffff !important;
    border-top: 1px solid #f1f5f9 !important;
}

.xoo-wsc-ft-amt-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px !important;
    font-weight: 600 !important;
}

/* Comments area styling */
.comments-area {
    margin-top: 50px;
}

.comments-title {
    font-size: 2rem;
    margin-bottom: 28px;
    color: #111827;
    font-weight: 700;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 24px;
}

.comment-list .comment {
    padding: 24px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.comment-list .comment .comment-body {
    margin-top: 18px;
}

.comment-list .comment .comment-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.comment-list .comment .comment-author .fn {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.comment-list .comment .comment-meta {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 4px;
}

.comment-list .comment .comment-metadata a,
.comment-list .comment .comment-reply-link {
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
}

.comment-list .comment .comment-reply-link:hover,
.comment-list .comment .comment-metadata a:hover {
    text-decoration: underline;
}

.comment-list .children {
    margin-top: 16px;
    padding-left: 32px;
}

.comment-form {
    margin-top: 40px;
    padding: 30px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.comment-form p {
    margin-bottom: 18px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0f172a;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #d1d5db;
    background: #f8fafc;
    font-size: 1rem;
    color: #0f172a;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
    outline: none;
}

.comment-form textarea {
    min-height: 180px;
    resize: vertical;
}

.comment-form .form-submit {
    margin-top: 16px;
}

.comment-form .submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    background: #10b981;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: transform 180ms ease, background-color 180ms ease;
}

.comment-form .submit:hover {
    background: #0f766e;
    transform: translateY(-1px);
}

.logged-in-as {
    margin-bottom: 20px;
    color: #475569;
    font-size: 0.95rem;
}

.comment-notes {
    margin-bottom: 20px;
    color: #475569;
    font-size: 0.95rem;
}

.no-comments {
    color: #475569;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .comment-list .comment {
        padding: 20px;
    }

    .comment-form {
        padding: 24px;
    }
}

    color: #0f172a !important;
    margin-bottom: 15px;
}

.xoo-wsc-btn-checkout {
    background: #000000 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 700 !important;
    padding: 16px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    text-align: center;
    display: block;
    width: 100%;
    transition: background 0.2s ease;
}

.xoo-wsc-btn-checkout:hover {
    background: #1e293b !important;
}

/* ========================================================================== */
/* CHECKOUT PAGE LAYOUT & FORM STYLING */
/* ========================================================================== */

.woocommerce-checkout {
    background: #f8fafc;
    padding: 0px 0 0px;
}

body.woocommerce-checkout .site-header,
body.woocommerce-checkout .site-footer {
    padding-left: 0;
    padding-right: 0;
}

.woocommerce-checkout .woocommerce-checkout {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

.woocommerce-checkout .woocommerce-checkout .col2-set {
    max-width: 1180px;
    margin: 0 auto;
    gap: 32px;
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout .woocommerce-checkout-review-order,
.woocommerce-checkout #payment {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    padding: 32px;
    margin-bottom: 28px;
}

.woocommerce-checkout .woocommerce-checkout .col2-set {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 30px;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
    display: grid;
    gap: 24px;
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3,
.woocommerce-checkout .woocommerce-checkout-review-order .title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row,
.woocommerce-checkout .woocommerce-additional-fields .form-row,
.woocommerce-checkout .woocommerce-shipping-fields .form-row,
.woocommerce-checkout .woocommerce-billing-fields .form-row {
    gap: 18px;
}

.woocommerce-checkout .woocommerce-billing-fields input.input-text,
.woocommerce-checkout .woocommerce-billing-fields select,
.woocommerce-checkout .woocommerce-billing-fields textarea,
.woocommerce-checkout .woocommerce-shipping-fields input.input-text,
.woocommerce-checkout .woocommerce-shipping-fields select,
.woocommerce-checkout .woocommerce-shipping-fields textarea,
.woocommerce-checkout .woocommerce-additional-fields input.input-text,
.woocommerce-checkout .woocommerce-additional-fields textarea,
.woocommerce-checkout .woocommerce-shipping-fields select,
.woocommerce-checkout .woocommerce-checkout-review-order table input,
.woocommerce-checkout .woocommerce-checkout-review-order table textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 14px 16px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce-checkout .woocommerce-billing-fields input.input-text:focus,
.woocommerce-checkout .woocommerce-billing-fields select:focus,
.woocommerce-checkout .woocommerce-billing-fields textarea:focus,
.woocommerce-checkout .woocommerce-shipping-fields input.input-text:focus,
.woocommerce-checkout .woocommerce-shipping-fields select:focus,
.woocommerce-checkout .woocommerce-shipping-fields textarea:focus,
.woocommerce-checkout .woocommerce-additional-fields input.input-text:focus,
.woocommerce-checkout .woocommerce-additional-fields textarea:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
    outline: none;
}

.woocommerce-checkout .woocommerce-notice,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-error {
    border-left: 4px solid #22c55e;
    background: #ecfdf5;
    color: #0f172a;
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 24px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th {
    color: #64748b;
    font-weight: 600;
    text-align: left;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total th {
    font-size: 17px;
    color: #0f172a;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total td {
    font-size: 20px;
    font-weight: 800;
    color: #007a3d;
}

.woocommerce-checkout .woocommerce-checkout-review-order .form-row {
    margin-bottom: 24px;
}

.woocommerce-checkout #payment {
    padding: 28px;
}

.woocommerce-checkout .payment_methods li {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #f8fafc;
    padding: 18px 20px;
    margin-bottom: 14px;
}

.woocommerce-checkout .payment_methods li .input-radio {
    margin-top: 2px;
}

.woocommerce-checkout .button#place_order,
.woocommerce-checkout .button.alt {
    width: 100%;
    padding: 16px 24px;
    border-radius: 14px;
    background: #007a3d;
    color: #ffffff;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.woocommerce-checkout .button#place_order:hover,
.woocommerce-checkout .button.alt:hover {
    background: #005c2d;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.woocommerce-checkout .woocommerce-shipping-fields .form-row-first,
.woocommerce-checkout .woocommerce-shipping-fields .form-row-last,
.woocommerce-checkout .woocommerce-billing-fields .form-row-first,
.woocommerce-checkout .woocommerce-billing-fields .form-row-last {
    width: 100%;
}

@media (max-width: 1024px) {
    .woocommerce-checkout .woocommerce-checkout .col2-set {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .woocommerce-checkout .woocommerce-billing-fields,
    .woocommerce-checkout .woocommerce-shipping-fields,
    .woocommerce-checkout .woocommerce-additional-fields,
    .woocommerce-checkout .woocommerce-checkout-review-order,
    .woocommerce-checkout #payment {
        padding: 24px;
    }

    .woocommerce-checkout {
        padding: 30px 0 40px;
    }
}
/* =========================================
   CART & CHECKOUT PAGE SIDE PADDING
========================================= */

/* Cart Page */
body.woocommerce-cart .container,
body.woocommerce-cart .page-content,
body.woocommerce-cart .wp-block-woocommerce-cart.alignwide {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* Checkout Page */
body.woocommerce-checkout .container,
body.woocommerce-checkout .page-content,
body.woocommerce-checkout .woocommerce-checkout {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* Tablet */
@media (max-width: 768px) {

    body.woocommerce-cart .container,
    body.woocommerce-cart .page-content,
    body.woocommerce-cart .wp-block-woocommerce-cart.alignwide,

    body.woocommerce-checkout .container,
    body.woocommerce-checkout .page-content,
    body.woocommerce-checkout .woocommerce-checkout {

        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
/* Make WooCommerce Block Buttons Active / Properly Styled */
.wc-block-components-button:not(.is-link) {
    background: #000 !important;
    color: #fff !important;
    border: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    min-height: 52px;
    border-radius: 8px;
}

/* Button Text */
.wc-block-components-button:not(.is-link) .wc-block-components-button__text {
    display: block !important;
    color: #fff !important;
    font-weight: 600;
    text-wrap: balance;
    white-space: normal;
}

/* Hover */
.wc-block-components-button:not(.is-link):hover {
    background: #222 !important;
}

/* Disabled Button Fix */
.wc-block-components-button--disabled,
.wc-block-components-button:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
    display: block !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
    max-width: max-content !important;

    color: #222 !important;
    text-decoration: none !important;
    letter-spacing: 0.2px;
    transition: all 0.25s ease-in-out;
    padding: 2px 0;
}

/* Hover effect for better UI feel */
.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name:hover,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name:hover {
    color: #0a7cff !important;
    transform: translateX(3px);
}

/* Contact Page Styles */
.contact-page {
    padding: 80px 0;
    background: #f8faf5;
}

.contact-page .contact-page-header {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.contact-page .contact-page-header h1 {
    font-size: 3rem;
    color: #0f172a;
    margin-bottom: 18px;
}

.contact-page .contact-page-header p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
}

.contact-page-body {
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 760px;
    background: #ffffff;
    border: 1px solid #e6efeb;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    padding: 40px;
}

.contact-form-notice {
    padding: 28px;
    border-radius: 16px;
    background: #fef9f4;
    color: #444;
    border: 1px solid #fde3b7;
}

.wpcf7-form {
    display: grid;
    gap: 20px;
}

.wpcf7-form-control-wrap {
    width: 100%;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    border: 1px solid #d7e8de;
    border-radius: 16px;
    padding: 16px 18px;
    font-size: 1rem;
    color: #1d2939;
    background: #f8faf8;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.wpcf7-form textarea {
    min-height: 160px;
    resize: vertical;
}

.wpcf7-submit {
    width: fit-content;
    padding: 14px 32px;
    border-radius: 999px;
    border: none;
    background: #10b981;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.wpcf7-submit:hover {
    background: #0f855d;
    transform: translateY(-1px);
}

.wpcf7-response-output {
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #ecfdf5;
    color: #0f5132;
    border: 1px solid #d1fae5;
}

@media (max-width: 900px) {
    .contact-page {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 28px;
    }
}

.archive-page {
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 767px){

    .archive-page,
    .page-content {
        padding-top: 50px;
        padding-bottom: 50px;
    }

}
/* ===== OUR STORY ===== */

.our-story-banner{
    background:#f5f5f5;
    padding:100px 20px;
    text-align:center;
}

.our-story-banner h1{
    font-size:48px;
    margin-bottom:15px;
}

.our-story-content{
    padding:80px 20px;
}

.container{
    max-width:1200px;
    margin:auto;
}

.story-row{
    display:grid;
    grid-template-columns: minmax(0, 55%) minmax(0, 45%);
    gap:50px;
    align-items:center;
    margin-bottom:80px;
    width: 100%;
}

.story-row > * {
    min-width: 0;
}

.story-image,
.story-text {
    width: 100%;
}

.story-text {
    overflow-wrap: break-word;
}

.story-image img{
    width:100%;
    max-width:100%;
    display:block;
    border-radius:20px;
}

.story-text h2,
.story-mission h2,
.story-values h2{
    font-size:36px;
    margin-bottom:20px;
}

.story-text p,
.story-mission p{
    line-height:1.8;
    margin-bottom:15px;
}

.story-mission{
    text-align:center;
    margin-bottom:80px;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.value-box{
    background:#fff;
    border:1px solid #eee;
    padding:20px;
    border-radius:15px;
    text-align:center;
}

.value-box h3{
    margin-bottom:12px;
}

/* Responsive */

@media(max-width:768px){

    .story-row{
        grid-template-columns:1fr;
    }

    .story-image,
    .story-text {
        min-width: 0;
    }

    .story-image img {
        width: 100%;
        height: auto;
    }

    .values-grid{
        grid-template-columns:1fr 1fr;
    }

    .our-story-banner h1{
        font-size:34px;
    }
}

@media(max-width:480px){

    .values-grid{
        grid-template-columns:1fr;
    }
}

/* MOBILE HOME LAYOUT FIXES */
@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }

    .blog-grid {
        grid-template-columns: 1fr !important;
        grid-auto-columns: 1fr !important;
        grid-auto-flow: row !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .blog-slider .slider-arrow {
        display: none;
    }

    .category-slider,
    .video-grid-container,
    .blog-slider {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .new-launch-section {
        padding: 40px 2% !important;
    }

    .category-slider,
    .category-slider .category-grid,
    .category-slider.slider-init .category-grid,
    .video-grid,
    .blog-slider,
    .blog-grid {
        min-width: 0;
    }

    .category-slider {
        overflow-x: visible;
    }

    .category-slider .category-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 15px !important;
        padding-bottom: 10px !important;
    }

    .category-slider .category-grid::-webkit-scrollbar {
        display: none;
    }

    .category-slider .cat-card {
        flex: 0 0 calc(90% - 15px) !important;
        max-width: calc(90% - 15px) !important;
        min-width: calc(90% - 15px) !important;
    }

    .category-slider .category-grid,
    .video-card,
    .blog-card,
    .product-card {
        min-width: 0;
        width: 100%;
    }

    .video-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 10px !important;
        padding: 5px !important;
    }

    .video-card {
        flex: 0 0 calc(97vw - 20px) !important;
        max-width: calc(97vw - 20px) !important;
        min-width: calc(97vw - 20px) !important;
        height: 280px !important;
    }

    .blog-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 20px !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        min-width: 0 !important;
    }

    .blog-card {
        min-width: 0;
        width: auto;
    }

    .blog-section .blog-grid,
    .blog-section .blog-grid.category-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 20px !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .blog-section .blog-grid > .blog-card {
        flex: 0 0 calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
        min-width: calc(50% - 10px) !important;
        scroll-snap-align: start !important;
        width: auto !important;
    }

    .doctors-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .best-doctors-section {
        max-width: 100%;
        width: 100%;
        left: 0;
        right: auto;
        margin-left: 0;
        margin-right: 0;
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 640px) {
     .category-grid,
    .blog-grid {
        grid-template-columns: 1fr !important;
    }

    .video-card {
        height: auto;
    }
}
.woocommerce ul.products::before {
    content: " ";
    display: none !important;
}