/*
Theme Name: Noori Masale
Theme URI: https://noorimasale.com/Noori-masale/
Author: Your Name
Author URI: https://noorimasale.com/Noori-masale/
Description: Your theme description
Version: 1.0
License: GPL v2 or later
Text Domain: https://noorimasale.com/Noori-masale/n
*/

/* ===== HEADER ===== */
.site-header {
    background: #fffbf5;
    border-bottom: 1px solid #f0e1c6;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.logo img {
    display: block;
    width: 90px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

/* ===== NAVIGATION ===== */
.main-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 6px 18px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    position: relative;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: #3d3226;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 6px 2px;
    transition: color 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.main-nav a:hover {
    color: #b45f2a;
}

/* Dropdown arrow */
.main-nav li.menu-item-has-children > a::after {
    content: " ▾";
    font-size: 0.6rem;
    margin-left: 3px;
    transition: transform 0.2s;
}

.main-nav li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Submenu */
.main-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 190px;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.07);
    padding: 0.4rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 1001;
    border: 1px solid #f1dcc9;
    display: flex !important;
    flex-direction: column;
    margin: 0;
}

.main-nav li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    padding: 0;
    margin: 0;
    width: 100%;
}

.sub-menu a {
    padding: 0.6rem 1.5rem !important;
    display: block;
    color: #4a3b28;
    border-bottom: 1px solid #faf1e4;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
    white-space: nowrap;
    font-weight: 400;
}

.sub-menu a:hover {
    background: #fef7ed;
    color: #b45f2a;
    padding-left: 1.8rem !important;
}

.sub-menu li:last-child a {
    border-bottom: none;
}

/* Cart icon */
.cart-icon-wrapper {
    display: inline-flex;
    align-items: center;
}

.cart-icon {
    position: relative;
    font-size: 1.3rem;
    text-decoration: none;
    color: #3d3226;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cart-count {
    background: #b45f2a;
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    padding: 1px 6px;
    min-width: 20px;
    text-align: center;
    line-height: 1.4;
    font-weight: 600;
    margin-left: 2px;
}

.nav-icon i {
    margin-right: 4px;
}

/* ===== HAMBURGER TOGGLE ===== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #4a3b28;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    order: 3;
    line-height: 1;
    transition: color 0.2s;
    z-index: 1002;
}

.menu-toggle:hover {
    color: #b45f2a;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablets & small screens (≤ 850px) */
@media screen and (max-width: 850px) {
.shop-sidebar {
    display: none !important;
}
    .header-inner {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        display: block !important;
    }

    .main-nav {
        width: 100%;
        order: 4;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        background: #fffbf5;
        margin-top: 6px;
        border-radius: 0 0 12px 12px;
        visibility: hidden;
        opacity: 0;
    }

    .main-nav.mobile-active {
        max-height: 800px;
        border-top: 1px solid #f0e1c6;
        padding-bottom: 8px;
        overflow-y: auto;
        visibility: visible;
        opacity: 1;
    }

    .main-nav > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0 !important;
        padding: 8px 0;
        width: 100%;
    }

    .main-nav > ul > li {
        width: 100%;
        padding: 0 12px;
        border-bottom: 1px solid #f5ede2;
    }

    .main-nav > ul > li:last-child {
        border-bottom: none;
    }

    .main-nav > ul > li > a {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 10px 0;
        font-size: 1rem;
        white-space: normal;
    }

    /* Submenu in mobile */
    .main-nav .sub-menu {
        position: static !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none !important;
        background: #fefaf5;
        border: none;
        padding-left: 12px;
        margin-top: 0;
        border-radius: 0;
        min-width: unset;
        width: 100%;
    }

    .main-nav li.menu-item-has-children.submenu-open > .sub-menu {
        display: flex !important;
    }

    .main-nav li.menu-item-has-children > a::after {
        content: " ▾";
        font-size: 0.8rem;
    }

    .sub-menu a {
        padding: 10px 12px !important;
        white-space: normal;
        border-bottom: 1px solid #f1e4d4;
    }

    .sub-menu a:hover {
        padding-left: 18px !important;
    }

    .cart-icon-wrapper {
        margin-left: 0;
    }

    .logo img {
        width: 75px !important;
        height: auto !important;
    }

    .main-nav > ul > li:has(.cart-icon-wrapper) {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .main-nav > ul > li:has(.cart-icon-wrapper) a {
        width: auto;
        display: inline-flex;
    }

    .main-nav > ul > li:has(.nav-icon) a {
        justify-content: flex-start;
    }
}

/* Small phones (≤ 480px) */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .logo img {
        width: 65px !important;
    }

    .main-nav a {
        font-size: 0.9rem;
    }

    .menu-toggle {
        font-size: 1.5rem;
    }
}

/* Large screens (≥ 1200px) - optional spacing fix */
@media screen and (min-width: 1200px) {
    .main-nav > ul {
        gap: 10px 24px;
    }
}




.page-header[filter-color="orange"] {
    background: rgba(44, 44, 44, 0.2);
    background: -webkit-linear-gradient(90deg, rgba(44, 44, 44, 0.2), rgb(224 23 3 / 0%))!important;
    background: -o-linear-gradient(90deg, rgba(44, 44, 44, 0.2), rgba(224, 23, 3, 0.6))!important;
    background: -moz-linear-gradient(90deg, rgba(44, 44, 44, 0.2), rgba(224, 23, 3, 0.6))!important;
    background: linear-gradient(0deg, rgba(44, 44, 44, 0.2), rgb(224 23 3 / 0%)) !important;
}
.index-page .page-header {
    height: 70vh;
}
span.screen-reader-text {
    display: none !important;
}
ins {
    text-decoration: none;
}

div#sidebar {
    display: none;
}
.woocommerce-notices-wrapper {
    display: none;
}

h1.entry-title {
    display: none;
}
.thumbnail {
    margin: 10px !important;
    text-align: center !important;
}

 /* ========== HERO SLIDER SECTION ========== */
        .hero-slider-section {
            margin: 1.5rem 0 2rem 0;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
        }

        .slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 0px;
        }

        .slider-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            flex: 0 0 100%;
            position: relative;
            min-height: 580px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 100%);
            z-index: 1;
        }

        .slide-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 750px;
            padding: 2rem;
            backdrop-filter: brightness(0.95);
            border-radius: 2rem;
        }

        .slide-content h2 {
            font-size: 3rem;
            font-weight: 800;
            font-family: 'Playfair Display', serif;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }

        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 1.8rem;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
        }

        .slider-btn {
            background: #017846;
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: 0.2s;
            text-decoration: none;
            display: inline-block;
        }

        .slider-btn:hover {
            background: #017846;
            transform: scale(1.02);
        }

        /* slider navigation */
        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 12px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.6);
            border-radius: 50%;
            cursor: pointer;
            transition: 0.2s;
        }

        .dot.active {
            background: #f97316;
            width: 28px;
            border-radius: 10px;
        }

        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            font-size: 1.8rem;
            padding: 0.4rem 1rem;
            border: none;
            cursor: pointer;
            z-index: 10;
            border-radius: 50px;
            transition: 0.2s;
        }
        .prev { left: 15px; }
        .next { right: 15px; }
        .prev:hover, .next:hover { background: #f97316; }

        @media (max-width: 700px) {
            .slide { min-height: 380px; }
            .slide-content h2 { font-size: 1.8rem; }
            .slide-content p { font-size: 1rem; }
            .prev, .next { font-size: 1.2rem; padding: 0.2rem 0.8rem; }
        }


.onsale {
        position: absolute;
        /*top: 10px;*/
        /*left: 10px;*/
        background: #d4a746!important;
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: bold;
        /*z-index: 10;*/
    }

/* ========== NOORI MASALE - ABOUT US SECTION ========== */

.products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }

        .product-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            background: #f0f0f0;
        }

        .product-info {
            padding: 20px;
        }

        .product-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }

        .product-title a {
            color: #333;
            text-decoration: none;
        }

        .product-title a:hover {
            color: #7c3aed;
        }

        .product-price {
            font-size: 24px;
            font-weight: bold;
            color: #7c3aed;
            margin: 10px 0;
        }

        .product-price del {
            font-size: 16px;
            color: #999;
            margin-right: 10px;
        }

        .product-price ins {
            text-decoration: none;
        }

        .product-description {
            font-size: 14px;
            color: #666;
            margin: 10px 0;
            line-height: 1.5;
        }

        .button {
            display: inline-block;
            background: #7c3aed;
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: background 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .button:hover {
            background: #5b21b6;
        }

        .loading {
            text-align: center;
            padding: 50px;
            font-size: 18px;
            color: #666;
        }

        .error {
            text-align: center;
            padding: 50px;
            color: #dc2626;
            background: #fee2e2;
            border-radius: 8px;
            margin: 20px;
        }

        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }
        }

        /* Warm, rich color palette inspired by spices */
        .noori-about {
            font-family: 'Segoe UI', system-ui, -apple-system, 'Poppins', 'Merriweather', serif;
            max-width: 100%;
            margin: 0 auto;
            background: linear-gradient(135deg, #fff9f0 0%, #fef3e2 100%);
            border-radius: 0px;
            overflow: hidden;
        }

        .about-container {
            padding: 4rem 2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: center;
            justify-content: center;
        }

        /* LEFT: Image & Heritage badge */
        .about-image-side {
            flex: 1;
            min-width: 280px;
            position: relative;
        }

        .spice-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            background: #fff4e6;
            padding: 1rem;
            border-radius: 40px;
            box-shadow: 0 25px 40px -15px rgba(139, 69, 19, 0.2);
        }

        .main-img {
            width: 100%;
            border-radius: 28px;
            object-fit: cover;
            aspect-ratio: 1 / 0.9;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .main-img:hover {
            transform: scale(1.01);
        }

        .floating-badge {
            position: absolute;
            bottom: -15px;
            left: -15px;
            background: #c2410c;
            color: #ffedd5;
            padding: 0.6rem 1.3rem;
            border-radius: 60px;
            font-weight: bold;
            font-size: 0.9rem;
            box-shadow: 0 8px 18px rgba(160, 60, 20, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: monospace;
            letter-spacing: 1px;
        }

        /* RIGHT: Content */
        .about-content-side {
            flex: 1.2;
            min-width: 300px;
        }

        .heritage-tag {
            display: inline-block;
            background: #017846;
            color: #fff7ed;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            text-transform: uppercase;
            border: 1px solid #ffd8b5;
        }

        .noori-title {
            font-size: 3rem;
            font-weight: 800;
            font-family: 'Times New Roman', 'Merriweather', serif;
            color: #017846;
            margin-bottom: 0.5rem;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .noori-sub {
            font-size: 1.1rem;
            color: #017846;
            margin-bottom: 1.5rem;
            border-left: 4px solid #017846;
            padding-left: 1rem;
            font-weight: 500;
        }

        .description {
            color: #3f2e1e;
            line-height: 1.65;
            margin-bottom: 1.5rem;
            font-size: 1.02rem;
        }

        .feature-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            margin: 2rem 0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.03);
            border: 1px solid #ffdec2;
        }

        .feature-item i {
            font-size: 1.3rem;
            color: #c2410c;
        }

        .feature-item span {
            font-weight: 600;
            color: #5a2e0e;
            font-size: 0.9rem;
        }

        .quote-block {
            background: #fff2e4;
            padding: 1.3rem 1.8rem;
            border-radius: 40px 16px 40px 16px;
            margin: 1.8rem 0;
            font-style: italic;
            border-left: 5px solid #017846;
            color: #017846;
            font-weight: 500;
        }

        .signature-line {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 1rem;
        }

        .signature {
            font-family: 'Brush Script MT', cursive;
            font-size: 1.8rem;
            color: #017846;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-container {
                flex-direction: column;
                padding: 2rem 1.2rem;
            }
            .noori-title {
                font-size: 2.4rem;
            }
            .floating-badge {
                bottom: -5px;
                left: -5px;
                padding: 0.4rem 1rem;
                font-size: 0.7rem;
            }
        }

        /* optional spice pattern divider */
        .spice-divider {
            height: 6px;
            background: linear-gradient(90deg, #ea580c, #facc15, #b91c1c, #ea580c);
            width: 100%;
        }
        

 /* ========== DYNAMIC PRODUCTS GRID ========== */
        .my-products-page h1 {
    font-family: 'Times New Roman', 'Merriweather', serif;
    color: #017846 !important;
    text-align: center;
        margin-bottom: 30px;
        font-size: 32px;
		margin-top: 30px;
}
    

    
    /* WooCommerce Grid Override for 4 Columns */
    .woocommerce ul.products {
    text-align: center;
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 25px !important;
    margin: 0 !important;
    padding: 20px !important;
}
    
    /* Product Card Styling */
    .woocommerce ul.products li.product {
		list-style:none;
        margin: 0 !important;
        padding: 10px !important;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background: white;
    }
    
    .woocommerce ul.products li.product:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    /* Product Image */
    .woocommerce ul.products li.product img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 4px;
        margin-bottom: 15px;
    }
    
    /* Product Title */
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 16px;
        font-weight: 600;
        margin: 10px 0;
        padding: 0;
        color: #333;
    }
    
    /* Price Styling */
    .woocommerce ul.products li.product .price {
    color: #333333;
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}
    
    /* Add to Cart Button */
    .woocommerce ul.products li.product .button {
    margin-left: 10px;
    background: #025c36;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s ease;
}
    
    .woocommerce ul.products li.product .button:hover {
        background: #d4a746;
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
        .woocommerce ul.products {
            grid-template-columns: repeat(3, 1fr) !important;
        }
    }
    
    @media (max-width: 768px) {
        .woocommerce ul.products {
            grid-template-columns: repeat(2, 1fr) !important;
        }
    }
    
    @media (max-width: 480px) {
        .woocommerce ul.products {
            grid-template-columns: 1fr !important;
        }
    }
		a {
			text-decoration:none;
		}
        /* ========== WHY CHOOSE US - NOORI MASALE ========== */
        /* Warm, inviting spice-inspired palette */
        .why-noori {
            font-family: 'Segoe UI', system-ui, -apple-system, 'Poppins', 'Merriweather', serif;
            background: linear-gradient(115deg, #fffaf3 0%, #fef5ea 100%);
            max-width: 100%;
            margin: 0 auto;
            padding: 4rem 2rem;
            border-radius: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }

        /* section header styling */
        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .spice-badge {
            display: inline-block;
            background: #037745;
            color: #fff7ed;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.35rem 1.2rem;
            border-radius: 40px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            box-shadow: 0 2px 6px rgba(249,115,22,0.2);
        }

        .section-header h2 {
            font-size: 2.6rem;
            font-weight: 800;
            font-family: 'Times New Roman', 'Merriweather', serif;
            color: #037745;
            margin-bottom: 0.75rem;
            letter-spacing: -0.3px;
        }

        .section-header .subhead {
            font-size: 1.1rem;
            color: #a1623b;
            max-width: 650px;
            margin: 0 auto;
            border-top: 2px solid #ffe0bd;
            display: inline-block;
            padding-top: 0.5rem;
        }

        /* grid layout for reasons */
        .reasons-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
            margin: 2.5rem 0 2rem;
        }

        /* individual reason card */
        .reason-card {
            background: #ffffffdd;
            backdrop-filter: blur(2px);
            background: linear-gradient(145deg, #ffffff, #fffaf5);
            flex: 1;
            min-width: 250px;
            max-width: 320px;
            padding: 2rem 1.5rem;
            border-radius: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 12px 25px -8px rgba(100, 45, 20, 0.08);
            border: 1px solid #ffedd5;
        }

        .reason-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 35px -12px rgba(194, 65, 12, 0.2);
            border-color: #fed7aa;
        }

        /* icon container */
        .icon-circle {
            background: #fff1e6;
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 60px;
            font-size: 2.5rem;
            box-shadow: 0 8px 14px rgba(0,0,0,0.05);
            transition: all 0.2s;
        }

        .reason-card:hover .icon-circle {
            background: #f97316;
            color: white;
            transform: scale(1.02);
        }

        .reason-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #037745;
            margin-bottom: 1rem;
            font-family: 'Times New Roman', serif;
        }

        .reason-card p {
            color: #5c3e28;
            line-height: 1.55;
            font-size: 0.95rem;
            margin-bottom: 1.2rem;
        }

        .highlight-tag {
    background: #037745;
    display: inline-block;
    padding: 0.25rem 0.9rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fffefd;
    letter-spacing: 0.5px;
}

        /* special card for legacy / trust */
        .legacy-card {
            background: linear-gradient(135deg, #fff3e8, #ffe9db);
            border: 1px solid #ffcd94;
        }

        /* bottom banner (optional - quality stamp) */
        .trust-banner {
            background: #7c2d12;
            margin-top: 3rem;
            border-radius: 3rem;
            padding: 1.5rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            background-image: radial-gradient(circle at 10% 30%, rgba(255,215,170,0.1) 2%, transparent 2.5%);
            background-size: 28px 28px;
        }

        .trust-text {
            color: #fff0e0;
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .trust-text i {
            font-size: 2rem;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
        }

        .seal {
            background: #facc15;
            color: #5c2e0b;
            padding: 0.5rem 1.5rem;
            border-radius: 60px;
            font-weight: bold;
            font-family: monospace;
            letter-spacing: 1px;
        }
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background: #fefaf5;
            color: #2c221b;
            line-height: 1.5;
        }

        /* ========== GLOBAL UTILITIES ========== */
        .container {
            max-width: 100%;
            margin: 0 auto;
        }

        /* ========== HEADER (NAVBAR) ========== */
        .site-header {
            background: #ffffff;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.02);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid #f0e4d5;
        }

        .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px 0px 30px;
    gap: 1rem;
}

        .logo-area {
            display: flex;
            align-items: baseline;
            gap: 6px;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            font-family: 'Playfair Display', serif;
            color: #7c2d12;
            letter-spacing: -0.5px;
        }

        .logo span {
            color: #f97316;
            font-size: 1.9rem;
        }

        .tagline {
            font-size: 0.7rem;
            font-weight: 500;
            color: #b45309;
            background: #fff2e4;
            padding: 0.2rem 0.6rem;
            border-radius: 30px;
            letter-spacing: 0.3px;
        }

        /* Navigation */
        .main-nav ul {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            list-style: none;
        }

        .main-nav a {
            text-decoration: none;
            font-weight: 500;
            color: #4a2c14;
            transition: 0.2s;
            font-size: 1rem;
        }

/*         .main-nav a:hover {
            color: #f97316;
        } */

    .nav-icon {
    background: #017846;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
}
.nav-icon a {
    color: white;
}
a.nav-icon {
    color: white;
}

        .nav-icon:hover {
            background: #d1ae6f;
            color: white;
        }

        /* mobile friendly */
        @media (max-width: 780px) {
            .header-inner {
                flex-direction: column;
                text-align: center;
            }
            .main-nav ul {
                justify-content: center;
                gap: 1.2rem;
            }
            .container {
                padding: 0 1.2rem;
            }
        }

        /* ========== FOOTER ========== */
        .site-footer {
    background: #a17741;
    color: #e7cfb5;
    margin-top: 4rem;
    padding: 3rem 30px 1.5rem;
}

        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2.5rem;
        }

        .footer-col {
            flex: 1;
            min-width: 180px;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            font-family: 'Playfair Display', serif;
            color: #facc15;
            margin-bottom: 0.8rem;
        }

        .footer-col h4 {
    font-family: 'Times New Roman', 'Merriweather', serif;
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
}

        .footer-col p, .footer-col a {
    color: #ffffff;
    text-decoration: none;
    line-height: 1.7;
    font-size: 0.9rem;
    display: block;
    transition: 0.2s;
}

        .footer-col a:hover {
            color: #facc15;
            transform: translateX(3px);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icons a {
            background: #3c2a1f;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #facc15;
            font-size: 1.2rem;
            transition: 0.2s;
        }

        .social-icons a:hover {
            background: #f97316;
            color: white;
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #3e2a1c;
            font-size: 0.8rem;
            color: white;
        }

        @media (max-width: 860px) {
            .footer-grid {
                flex-direction: column;
            }
            .noori-title {
                font-size: 2rem;
            }
            .section-header h2 {
                font-size: 2rem;
            }
        }


        @media (max-width: 768px) {
            .why-noori {
                padding: 2rem 1rem;
            }
            .section-header h2 {
                font-size: 2rem;
            }
            .reason-card {
                min-width: 260px;
            }
            .trust-text {
                font-size: 0.9rem;
            }
        }
        
nav.main-nav ul li a {
    font-size: 20px !important;
}
.product-title {
    font-size: 18px !important;
}
.woocommerce ul.products li.product .button {
    font-family: cursive !important;
    margin-top: 10px !important;
}

h1, h2, h3, h4, h5, h6, p, a, .price, .short-description, .product-price, .stock-status, .single_add_to_cart_button, .buy-now-btn {
    font-family: cursive !important;
}

.woocommerce ul.products li.product .price {
    font-family: cursive !important;
    color: #333333 !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    padding-bottom: 0px !important;
    margin: 30px 19px !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: cursive !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    margin: 10px 0 !important;
    padding: 0 !important;
    color: #333 !important;
}


/* ========================================
   WOOCOMMERCE MY ACCOUNT SHORTCODE STYLES
   ======================================== */

/* Container */
.woocommerce-account {
    padding: 40px 0 60px;
    background: #f8faf9;
}

/* Account Header */
.woocommerce-account .account-header {
    background: linear-gradient(135deg, #017846 0%, #01633a 100%);
    padding: 40px 0;
    margin-bottom: 30px;
}

.woocommerce-account .account-header h1 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 5px;
}

.woocommerce-account .account-header p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
}

/* Account Wrapper */
.woocommerce-account .account-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* ========================================
   ACCOUNT SIDEBAR
   ======================================== */

.woocommerce-account .account-sidebar {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.woocommerce-account .user-profile-card {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.woocommerce-account .user-avatar {
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #017846;
    padding: 3px;
}

.woocommerce-account .user-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
}

.woocommerce-account .user-name h3 {
    font-size: 18px;
    margin: 10px 0 5px;
    color: #1a1a1a;
}

.woocommerce-account .user-name p {
    color: #999;
    font-size: 14px;
    word-break: break-all;
}

/* Account Navigation */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    margin-bottom: 5px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 10px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a::before {
    font-size: 18px;
    width: 24px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background: #f0faf5;
    color: #017846;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: #017846;
    color: #fff;
}

/* Navigation Icons */
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a::before {
    content: "📊";
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a::before {
    content: "📦";
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a::before {
    content: "💾";
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a::before {
    content: "📍";
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a::before {
    content: "👤";
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a::before {
    content: "🚪";
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a {
    color: #e91e63;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    background: #ffebee;
}

/* ========================================
   ACCOUNT CONTENT
   ======================================== */

.woocommerce-account .account-content {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    min-height: 500px;
}

/* ========================================
   DASHBOARD
   ======================================== */

.woocommerce-account .dashboard-welcome {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8faf9;
    border-radius: 12px;
    margin-bottom: 30px;
}

.woocommerce-account .welcome-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.woocommerce-account .welcome-text h2 {
    margin: 0 0 5px;
    font-size: 24px;
    color: #1a1a1a;
}

.woocommerce-account .welcome-text p {
    margin: 0;
    color: #666;
}

/* Dashboard Stats */
.woocommerce-account .dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.woocommerce-account .stat-card {
    background: #f8faf9;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.woocommerce-account .stat-icon {
    font-size: 32px;
}

.woocommerce-account .stat-info {
    display: flex;
    flex-direction: column;
}

.woocommerce-account .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.woocommerce-account .stat-label {
    font-size: 13px;
    color: #999;
}

/* Recent Orders */
.woocommerce-account .dashboard-recent-orders {
    margin-bottom: 30px;
}

.woocommerce-account .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.woocommerce-account .section-header h3 {
    font-size: 20px;
    margin: 0;
}

.woocommerce-account .view-all {
    color: #017846;
    text-decoration: none;
    font-weight: 500;
}

.woocommerce-account .orders-table-wrap {
    overflow-x: auto;
}

.woocommerce-account .orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.woocommerce-account .orders-table th {
    text-align: left;
    padding: 12px 15px;
    background: #f8faf9;
    font-weight: 600;
    color: #555;
    border-bottom: 2px solid #e0e0e0;
}

.woocommerce-account .orders-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.woocommerce-account .order-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.woocommerce-account .status-pending { background: #fff3e0; color: #e65100; }
.woocommerce-account .status-processing { background: #e3f2fd; color: #0d47a1; }
.woocommerce-account .status-completed { background: #e8f5e9; color: #2e7d32; }
.woocommerce-account .status-on-hold { background: #fff8e1; color: #f57f17; }
.woocommerce-account .status-cancelled { background: #ffebee; color: #c62828; }
.woocommerce-account .status-refunded { background: #f3e5f5; color: #6a1b9a; }
.woocommerce-account .status-failed { background: #ffebee; color: #c62828; }

.woocommerce-account .btn-view-order {
    display: inline-block;
    padding: 5px 15px;
    background: #017846;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    transition: background 0.3s;
}

.woocommerce-account .btn-view-order:hover {
    background: #01633a;
}

.woocommerce-account .no-orders {
    text-align: center;
    padding: 40px;
}

.woocommerce-account .btn-shop {
    display: inline-block;
    padding: 10px 30px;
    background: #017846;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 10px;
}

/* Quick Links */
.woocommerce-account .dashboard-quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.woocommerce-account .quick-link-card {
    background: #f8faf9;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.woocommerce-account .quick-link-card:hover {
    transform: translateY(-5px);
}

.woocommerce-account .quick-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 10px;
}

.woocommerce-account .quick-link-card h4 {
    margin: 0 0 5px;
    font-size: 16px;
}

.woocommerce-account .quick-link-card p {
    margin: 0 0 15px;
    font-size: 13px;
    color: #999;
}

.woocommerce-account .btn-quick {
    display: inline-block;
    padding: 8px 20px;
    background: #fff;
    border: 2px solid #017846;
    color: #017846;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.woocommerce-account .btn-quick:hover {
    background: #017846;
    color: #fff;
}

.woocommerce-account .btn-quick.btn-logout {
    border-color: #e91e63;
    color: #e91e63;
}

.woocommerce-account .btn-quick.btn-logout:hover {
    background: #e91e63;
    color: #fff;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .woocommerce-account .account-wrapper {
        grid-template-columns: 1fr;
    }
    
    .woocommerce-account .account-sidebar {
        position: static;
    }
    
    .woocommerce-account .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .woocommerce-account .dashboard-quick-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
aside.shop-sidebar {
    display: none !important;
}
    .woocommerce-account .account-header {
        padding: 30px 0;
    }
    
    .woocommerce-account .account-header h1 {
        font-size: 24px;
    }
    
    .woocommerce-account .account-content {
        padding: 20px;
    }
    
    .woocommerce-account .dashboard-welcome {
        flex-direction: column;
        text-align: center;
    }
    
    .woocommerce-account .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .woocommerce-account .dashboard-quick-links {
        grid-template-columns: 1fr;
    }
    
    .woocommerce-account .woocommerce-MyAccount-navigation ul li a {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {

h1, h2, h3, h4, h5, h6, p, a, .price, .short-description, .product-price, .stock-status, .single_add_to_cart_button, .buy-now-btn {
    font-family: none !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: none !important;
}
    .woocommerce-account {
        padding: 20px 0;
    }
    
    .woocommerce-account .account-header h1 {
        font-size: 20px;
    }
    
    .woocommerce-account .account-content {
        padding: 15px;
    }
}