/* // THREESKIN CSS STYLE #c3aa90 */
        :root {
            --fq-green: #6a8e22;
            --fq-gold: #1F4A3D;
            --fq-bg: #C8A951;
            --fq-light-bg: #F6F2E8;
            --fq-text: #2B2B2B;
            --fq-text-light: #666;
            --fq-border: #e0e0e0;
            --primary-green:#6a8e22;
            --secondary-gold:#2B2B2B;
            --light-bg: #f9fdfa;
            --text-dark: #2c2c2c;
            --text-light: #666;
            --white: #ffffff;
            --border-radius: 12px;
            --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            --tm-green: #6a8e22;
            --tm-gold:#2b2b2b;
            --tm-bg: #fbfbfb;
            --tm-text: #6a8e22;
            --tm-text-light: #777;
            --tm-white: #ffffff;
        }

   
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
            object-fit: cover;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: 0.3s;
        }

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

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

        /* --- 1. FAQ SECTION --- */
        .fq-section {
            padding: 80px 0 50px;
        }

        .fq-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .fq-header p {
            font-size: 0.9rem;
            color: var(--fq-text-light);
            margin-bottom: 5px;
        }

        .fq-header h2 {
            font-size: 2.2rem;
            font-weight: 700;
        }

        .fq-header h2 span {
            color: var(--fq-gold);
        }

        .fq-layout {
            display: flex;
            justify-content: space-between;
            gap: 40px;
        }

        /* Left: Accordion */
        .fq-accordion {
            flex: 2;
        }

        .fq-item {
            margin-bottom: 15px;
            border-bottom: 1px solid var(--fq-border);
        }

        .fq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 15px 10px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--fq-text);
            transition: 0.3s;
            border-radius: 8px;
        }

        .fq-question:hover {
            color: var(--fq-gold);
        }

        .fq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 10px;
            font-size: 0.9rem;
            color: var(--fq-text-light);
            line-height: 1.6;
        }

        /* Active State Design (Green Box) */
        .fq-item.active {
            border-bottom: none;
			background: #2e5d50;
    border-radius: 8px;
        }

        .fq-item.active .fq-question {
            background-color: var(--fq-green);
            color: white;
			    border-bottom: 1px solid var(--fq-border);
        }

        .fq-item.active .fq-answer {
            background-color: var(--fq-green);
            color: rgba(255, 255, 255, 0.8);
            padding-bottom: 20px;
            max-height: 200px;
            /* Adjust based on content */
            border-bottom-left-radius: 8px;
            border-bottom-right-radius: 8px;
        }

        /* Right: Contact Card */
        .fq-contact-card {
            flex: 1;
            background-color: var(--fq-green);
            color: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            height: fit-content;
            position: relative;
        }

        .fq-contact-icon {
            font-size: 2rem;
            color: var(--fq-gold);
            margin-bottom: 15px;
        }

        .fq-contact-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .fq-contact-card p {
            font-size: 0.85rem;
            opacity: 0.8;
            margin-bottom: 25px;
            line-height: 1.5;
        }

        .fq-btn-white {
            background: white;
            color: var(--fq-green);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            font-size: 0.9rem;
            transition: 0.3s;
        }

        .fq-btn-white:hover {
            background: var(--fq-gold);
            color: white;
        }

        /* Features Row */
        .fq-features-row {
            display: flex;
            justify-content: space-around;
            padding: 60px 0 20px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .fq-feat-box {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .fq-feat-icon {
            width: 50px;
            height: 50px;
            background: #f4f0e6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--fq-gold);
            font-size: 1.2rem;
        }

        .fq-feat-text h4 {
            font-size: 1rem;
            margin-bottom: 2px;
        }

        .fq-feat-text p {
            font-size: 0.8rem;
            color: var(--fq-text-light);
        }

        /* --- 2. NEWSLETTER SECTION --- */
        .nl-section {
            background-color: var(--fq-light-bg);
            padding: 80px 20px;
            text-align: center;
        }

        .nl-header p {
            color: var(--fq-text-light);
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .nl-header h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .nl-header h2 span {
            color: var(--fq-gold);
        }

        .nl-sub {
            color: var(--fq-text-light);
            margin-bottom: 30px;
            font-size: 0.95rem;
        }

        .nl-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
            background: white;
            padding: 5px;
            border-radius: 50px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .nl-input {
            flex: 1;
            border: none;
            padding: 15px 25px;
            border-radius: 50px;
            outline: none;
            font-size: 0.95rem;
        }

        .nl-btn {
            background: var(--fq-green);
            color: white;
            border: none;
            padding: 12px 35px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9rem;
            transition: 0.3s;
        }

        .nl-btn:hover {
            background: var(--fq-gold);
        }

        /* --- 3. FOOTER SECTION --- */
        .ft-footer {
            padding: 80px 0 0;
            background: #fff2ea;
        }

        .ft-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 60px;
        }

        .ft-col {
            text-align: left;
        }

        .ft-col h4 {
            font-size: 1.1rem;
            margin-bottom: 25px;
            font-weight: 600;
            color: #6a8e22;
        }

        .ft-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #6a8e22;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ft-desc {
            font-size: 0.9rem;
            color: white;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .ft-links li {
            list-style: none;
            margin-bottom: 12px;
        }

        .ft-links a {
            color: white;
            font-size: 0.9rem;
            text-decoration: none;
            transition: 0.3s;
        }

        .ft-links a:hover {
            color: var(--tm-green);
            padding-left: 5px;
        }

        .ft-social {
            display: flex;
            gap: 15px;
        }

        .ft-social i {
            color: var(--fq-green);
            cursor: pointer;
            font-size: 1.1rem;
            transition: 0.3s;
        }

        .ft-social i:hover {
            color: var(--fq-gold);
        }

        /* Bottom Bar */
        .ft-bottom {
            border-top: 1px solid #eee;
            padding: 25px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #888;
            font-size: 0.85rem;
        }

        .ft-lang {
            display: flex;
            gap: 20px;
            cursor: pointer;
            font-weight: 500;
        }

        /* Responsive */
        @media (max-width: 900px) {
.container {
    padding: 0 10px;
    width: 100%;
}
            /* --- 1. Green Strip --- */
            .category-strip {
                overflow: scroll;
            }

            .promo-section {
                grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)) !important;
                gap: 20px !important;
				padding: 10px !important;
            }

            .promo-card {
                padding: 20px !important;
            }

            .fq-layout {
                flex-direction: column;
            }

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

            .nl-form {
                flex-direction: column;
                background: transparent;
                box-shadow: none;
                gap: 15px;
            }

            .nl-input {
                width: 100%;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            }

            .nl-btn {
                width: 100%;
            }
        }

        @media (max-width: 600px) {
            .ft-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .ft-logo,
            .ft-social {
                justify-content: center;
            }

            .ft-bottom {
                flex-direction: column;
                gap: 15px;
            }

            .fq-features-row {
                flex-direction: column;
              
            }
        }


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



        /* --- 1. TESTIMONIAL SECTION --- */
        .tm-testimonial-sec {
            padding: 80px 0;
            text-align: center;
            background-color: #fff;
        }

        .tm-sub-heading {
            font-size: 0.9rem;
            color: var(--tm-text-light);
            margin-bottom: 5px;
        }

        .tm-main-heading {
            font-size: 2.2rem;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            margin-bottom: 40px;
            color: var(--tm-text);
        }

        .tm-main-heading span {
            color: var(--tm-gold);
        }

        /* Avatars */
        .tm-avatars {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
        }

        .tm-avatar-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid transparent;
            opacity: 0.6;
            cursor: pointer;
            transition: 0.3s;
        }

        .tm-avatar-img.active {
            width: 70px;
            height: 70px;
            border-color: var(--tm-gold);
            opacity: 1;
            transform: scale(1.1);
        }

        /* Testimonial Content Box */
        .tm-content-wrapper {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 50px;
        }

        .tm-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--tm-gold);
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: 0.3s;
        }

        .tm-nav-btn:hover {
            background: var(--tm-green);
        }

        .tm-prev {
            left: 0;
        }

        .tm-next {
            right: 0;
        }

        .tm-review-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--tm-text);
        }

        .tm-review-text {
            font-size: 1rem;
            color: var(--tm-text-light);
            line-height: 1.7;
            margin-bottom: 20px;
            font-style: italic;
        }

        .tm-stars {
            color: #ffbc00;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .tm-client-name {
            font-weight: 700;
            font-size: 1.1rem;
        }

        .tm-client-role {
            font-size: 0.85rem;
            color: var(--tm-text-light);
        }


        /* --- 2. BLOGS SECTION --- */
        .tm-blog-sec {
            padding: 80px 0;
            background-color: var(--tm-bg);
        }

        .tm-sec-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 40px;
        }

        .tm-sec-header h2 {
            font-size: 2rem;
            font-family: 'Playfair Display', serif;
        }

        .tm-sec-header h2 span {
            color: var(--tm-gold);
        }

        .tm-view-btn {
            background: var(--tm-green);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .tm-view-btn:hover {
            background: var(--tm-gold);
        }

        .tm-blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .tm-blog-card {
            background: transparent;
        }

        .tm-blog-img-box {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 220px;
            margin-bottom: 20px;
        }

        .tm-blog-img-box img {
            width: 100%;
            height: 100%;
            transition: 0.4s;
        }

        .tm-blog-card:hover .tm-blog-img-box img {
            transform: scale(1.05);
        }

        .tm-blog-tag {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: var(--tm-green);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .tm-meta {
            font-size: 0.8rem;
            color: #888;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .tm-meta i {
            color: var(--tm-gold);
        }

        .tm-blog-title {
            font-size: 1.15rem;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 15px;
            color: var(--tm-text);
        }

        .tm-read-more {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--tm-gold);
            text-decoration: underline;
        }


        /* --- 3. INSTAGRAM SECTION --- */
        .tm-insta-sec {
            padding: 60px 0 0 0;
            /* No bottom padding because strip is there */
            text-align: center;
        }

        .tm-insta-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 40px;
            padding-bottom: 60px;
            overflow: hidden;
        }

        /* Layout logic mimicking mosaic */
        .tm-col {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .tm-img-sm {
            width: 160px;
            height: 160px;
            border-radius: 12px;
            overflow: hidden;
        }

        .tm-img-lg {
            width: 340px;
            height: 340px;
            border-radius: 12px;
            overflow: hidden;
        }

        .tm-insta-img {
            width: 100%;
            height: 100%;
            transition: 0.3s;
            cursor: pointer;
        }

        .tm-insta-img:hover {
            filter: brightness(0.8);
        }

        /* --- 4. BOTTOM STRIP --- */
        .tm-bottom-strip {
            background-color: var(--tm-green);
            padding: 15px 0;
            overflow: hidden;
        }

        .tm-strip-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-width: 100%;
            gap: 30px;
            padding: 0 20px;
        }

        .tm-strip-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            font-size: 0.9rem;
            font-weight: 500;
            white-space: nowrap;
        }

        .tm-strip-item i {
            color: var(--tm-gold);
            font-size: 0.8rem;
        }


        /* --- Responsive --- */
        @media (max-width: 900px) {
            .tm-insta-grid {
                flex-wrap: wrap;
            }

            .tm-img-lg {
                width: 100%;
                max-width: 300px;
                height: 300px;
            }

            .tm-col {
                flex-direction: row;
                justify-content: center;
            }
        }

        @media (max-width: 600px) {
            .tm-nav-btn {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }

            .tm-content-wrapper {
                padding: 0 20px;
            }

            .tm-nav-btn {
                position: static;
                margin: 20px 10px;
                display: inline-flex;
            }

            .tm-sec-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .tm-strip-inner {
                overflow-x: auto;
            }
        }

        /* Common Utilities */
        .badge {
            background: var(--primary-green);
            color: white;
            padding: 4px 10px;
            font-size: 0.75rem;
            border-radius: 6px;
            font-weight: 600;
        }

        .rating {
            color: #FFD700;
            font-size: 0.85rem;
            margin-bottom: 5px;
        }

        .price {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-dark);
        }

        .price del {
            color: #aaa;
            font-size: 0.9rem;
            margin-left: 5px;
            font-weight: 400;
        }

        .btn-text {
           color: white;
    font-weight: 300;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    background: var(--primary-green);
    padding: 10px;
    border-radius: 30px;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    width: 140px;
        }

        .btn-text:hover {
            color: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
            margin-top:40px;
        }

        .section-header h4 {
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 400;
        }

        .section-header h2 {
            font-size: 2rem;
            font-weight: 700;
        }

        .section-header h2 span {
            color: var(--secondary-gold);
        }

        /* --- 1. Green Strip --- */
        .category-strip {
            background-color: var(--primary-green);
            padding: 12px 0;
            margin-bottom: 20px;
        }

        .strip-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
            font-size: 0.85rem;
            font-weight: 500;
            overflow-x: auto;
            white-space: nowrap;
            gap: 20px;
            padding: 0 20px;
        }

        .strip-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .strip-item i {
            color: var(--secondary-gold);
            font-size: 0.7rem;
        }

        /* --- 2. Deals of the Day --- */
        .deals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .deal-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: var(--card-shadow);
        }

        .deal-img {
            width:100%;
            height: auto;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }

        .deal-img img {
            width: 100%;
            height: 100%;
        }

        .overlay-badge {
            position: absolute;
            top: 10px;
            left: 10px;
        }

        .deal-icons {
            position: absolute;
            top: 10px;
            right: 10px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .deal-icons i {
            background: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            cursor: pointer;
        }

        .deal-info h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .deal-info p {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 15px;
            line-height: 1.5;
        }

        /* --- 3. Weekly Banner --- */
        .weekly-banner {
            background-color: var(--primary-green);
            border-radius: var(--border-radius);
            padding: 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: white;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }

        .banner-text {
            max-width: 50%;
            z-index: 2;
        }

        .banner-text h4 {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 10px;
        }

        .banner-text h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .banner-text h2 span {
            color: var(--secondary-gold);
        }

        .banner-text p {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 25px;
        }

        .btn-white {
            background: white;
            color: var(--primary-green);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            display: inline-block;
        }

        .banner-img {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 45%;
            height: 110%;
            object-fit: cover;
            mask-image: linear-gradient(to left, black 60%, transparent 100%);
            -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
        }

        /* --- 4. New Arrivals (Left Banner + Right Grid) --- */
        .arrival-layout {
            display: flex;
            gap: 30px;
            margin-bottom: 80px;
        }

        /* Left Side Tall Card */
        .arrival-left {
            flex: 0 0 25%;
        }

        .tall-card {
            height: 100%;
            min-height: 500px;
            border-radius: var(--border-radius);
            position: relative;
            overflow: hidden;
        }

        .tall-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .tall-content {
            position: absolute;
            bottom: 30px;
            left: 0;
            width: 100%;
            text-align: center;
            color: white;
            padding: 0 20px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        .tall-content h3 {
            font-size: 2rem;
            margin-bottom: 5px;
        }

        .tall-content p {
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .btn-outline {
            border: 1px solid white;
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            display: inline-block;
        }

        /* Right Side Grid */
        .arrival-right {
            flex: 1;
        }

        .product-grid-small {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .prod-card-v {
            background: white;
            border-radius: 12px;
            padding: 12px;
            box-shadow: var(--card-shadow);
            transition: 0.3s;
        }

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

        .prod-img-box {
            height: 180px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            margin-bottom: 15px;
            background: #f4f4f4;
        }

        .prod-img-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 10px;
        }

        .cat-tag {
            font-size: 0.75rem;
            color: #888;
            margin-bottom: 3px;
            display: block;
        }

        .prod-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .deals-grid {
                grid-template-columns: 1fr;
            }

            .arrival-layout {
                flex-direction: column;
            }

            .tall-card {
                min-height: 300px;
                margin-bottom: 20px;
            }

            .product-grid-small {
                grid-template-columns: repeat(2, 1fr);
            }

            .banner-text h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 600px) {
            .strip-content {
                justify-content: flex-start;
            }

            .deal-card {
                flex-direction: column;
                text-align: center;
            }

            .deal-img {
                width: 100%;
            }

            .weekly-banner {
                flex-direction: column;
                text-align: center;
                padding: 30px;
            }

            .banner-text {
                max-width: 100%;
                margin-bottom: 20px;
            }

            .banner-img {
                position: relative;
                width: 100%;
                height: 200px;
                mask-image: none;
                -webkit-mask-image: none;
                border-radius: 10px;
            }

            .product-grid-small {
                grid-template-columns: 1fr;
            }
        }

.btn-secondary{
    background:#b9854e;
    color:#fff;
}

.btn-secondary:hover{
    opacity:0.9;
}


        /* --- Buttons --- */
        .btn {
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            display: inline-block;
            font-size: 0.9rem;
            border: none;
        }

.btn-primary{
    background:var(--primary-green);
    color:#fff;
}

        .btn-primary:hover {
            background-color: var(--secondary-gold);
            border-color: var(--secondary-gold);
        }

        /* --- 1. Top Bar --- */
        .top-bar {
            background-color: var(--primary-green);
            color: var(--white);
            padding: 12px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }

        .top-bar span {
            color: var(--secondary-gold);
            font-weight: 600;
            cursor: pointer;
            text-decoration: underline;
        }

        .social-icons i {
            margin-left: 12px;
            cursor: pointer;
            opacity: 0.9;
        }

        /* --- 2. Navigation --- */
        nav {
            background: var(--white);
            padding: 0px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary-green);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: #e1a900;
        }

        .nav-icons i {
            margin-left: 20px;
            font-size: 1.1rem;
            cursor: pointer;
            color: #FAF9F6;
        }

        .nav-icons i:hover {
            color:#e1a900;
        }

        /* --- 3. Hero Section --- */

.hero-text{
    max-width:50%;
}

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #eef5f1;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--primary-green);
            font-weight: 600;
            margin-bottom: 25px;
        }

.hero h1{
    font-family:'Playfair Display', serif;
    font-size:52px;
    color:var(--primary-green);
    margin-bottom:20px;
}

.hero h1 span {
            color: var(--secondary-gold);
        }
        

.btn-group a{
    padding:14px 28px;
    border-radius:6px;
    text-decoration:none;
    font-weight:500;
    margin-right:15px;
    display:inline-block;
}

.hero p{
    font-size:18px;
    color:#2B2B2B;
    margin-bottom:25px;
}
.features span{
    margin-right:20px;
}

.features{
    font-size:16px;
    margin-bottom:30px;
    color:#2B2B2B;
}


.hero-image img{
    width:100%;
    max-width:100%;
}
@media(max-width:992px){
	
.bg-remobr
 {
padding: 20px 15px;
}
	
	
    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero-text{
        max-width:100%;
    }

    .hero-image{
        margin-top:40px;
    }
}

        /* Green Strip */
        .category-strip {
            background-color: var(--primary-green);
            padding: 18px 5%;
            display: flex;
            justify-content: space-between;
            color: var(--white);
            font-size: 0.95rem;
            font-weight: 500;
            flex-wrap: wrap;
			margin-top:0px;
        }

        .strip-item i {
            color: var(--secondary-gold);
            font-size: 0.8rem;
            margin-left: 5px;
        }

        /* --- 4. Categories & Promo --- */
        .categories-section {
            padding:20px 5% 20px;
            text-align: center;
        }

        .section-subtitle {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 5px;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 2.2rem;
            margin-bottom:0px;
            font-weight: 700;
        }

        .section-title span {
            color: var(--secondary-gold);
        }

        .category-grid {
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
            margin-bottom: 80px;
        }

        .cat-item {
            cursor: pointer;
            transition: 0.3s;
        }

        .cat-item:hover {
            transform: translateY(-5px);
        }

        .cat-img-box {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 15px;
            border: 3px solid transparent;
            transition: 0.3s;
        }

        .cat-item:hover .cat-img-box {
            border-color: var(--secondary-gold);
        }

        .cat-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cat-name {
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* --- 5. About Section --- */
        .about-section {
            display: flex;
            gap: 60px;
            align-items: center;
        }

        .about-images {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .about-images img {
            border-radius: 15px;
            width: 100%;
            height: 240px;
            object-fit: cover;
        }

        .about-images img:first-child {
            grid-row: span 2;
            height: 495px;
        }

        .about-text {
            flex: 1;
        }

        .about-stats {
            background: #2b2b2b;
            color: white;
            padding: 30px;
            border-radius: 15px;
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }

        .stat-box h4 {
            color: white;
            font-size: 1.6rem;
            margin-bottom: 5px;
        }

        /* --- 6. BEST SELLERS SECTION (New from Image 2) --- */
        .best-sellers {
            padding: 20px 5% 80px;
        }

        .bs-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .filter-tabs {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 8px 20px;
            border: 1px solid #ddd;
            border-radius: 20px;
            background: transparent;
            font-size: 0.9rem;
            cursor: pointer;
            color: var(--text-light);
            transition: 0.3s;
        }

        .tab-btn.active,
        .tab-btn:hover {
            background: var(--primary-green);
            color: white;
            border-color: var(--primary-green);
        }

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

        .product-card {
            background: white;
            border-radius: 15px;
            padding: 15px;
            position: relative;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
            transition: 0.3s;
        }

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

        .prod-img-box {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 280px;
            margin-bottom: 15px;
        }

        .prod-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .off-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--primary-green);
            color: white;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .hover-icons {
            position: absolute;
            top: 10px;
            right: 10px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            opacity: 0;
            transition: 0.3s;
            transform: translateX(10px);
        }

        .product-card:hover .hover-icons {
            opacity: 1;
            transform: translateX(0);
        }

        .hover-icons i {
            background: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            color: var(--text-dark);
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .hover-icons i:hover {
            background: var(--secondary-gold);
            color: #1b5e20;
        }

        /* Countdown overlay on product */
        .prod-timer {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(26, 77, 46, 0.9);
            color: white;
            width: 90%;
            padding: 8px;
            border-radius: 8px;
            display: flex;
            justify-content: space-around;
            font-size: 0.7rem;
            text-align: center;
        }

        .prod-timer div span {
            display: block;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .prod-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--text-dark);
        }

        .rating {
            color: #FFD700;
            font-size: 0.8rem;
            margin-bottom: 10px;
        }


        /* --- 7. SUMMER DEALS SECTION (New from Image 2) --- */
        .summer-deals {
         padding: 40px 0%;
            margin-bottom: 60px;
        }

        .deals-wrapper {
            display: flex;
            gap: 20px;
            height: 500px;
        }

        .deal-side-img {
            flex: 1;
            border-radius: 20px;
            overflow: hidden;
        }

        .deal-side-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .deal-center {
            flex: 1.5;
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: var(--card-shadow);
            position: relative;
            overflow: hidden;
        }

        /* Leaf decoration */
        .leaf-decor {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 150px;
            opacity: 0.5;
        }

        .leaf-decor-top {
            position: absolute;
            top: -20px;
            left: -20px;
            width: 120px;
            transform: rotate(180deg);
            opacity: 0.5;
        }

        .deal-center h5 {
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .deal-center h2 {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .deal-center h2 span {
            color: var(--secondary-gold);
        }

        .deal-center p {
            font-size: 1.2rem;
            color: var(--primary-green);
            font-weight: 500;
            margin-bottom: 30px;
        }

        .big-timer {
            display: flex;
            gap: 20px;
            margin-bottom: 35px;
        }

        .time-box {
            text-align: center;
        }

        .time-box .num {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1;
        }

        .time-box .label {
            font-size: 0.8rem;
            text-transform: uppercase;
            color: var(--text-light);
            margin-top: 5px;
        }

        .colon {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-gold);
            margin-top: -5px;
        }

        /* --- Footer (Simple) --- */
        footer {
            background: #111;
            color: #aaa;
            padding: 40px 5%;
            text-align: center;
            font-size: 0.9rem;
        }

        /* --- Responsive --- */
        @media (max-width: 992px) {
			
.summer-deals {
    margin-bottom: 0px;
}
.tm-testimonial-sec {
    padding: 40px 0;
}
.tm-blog-sec {
    padding: 40px 0;
}
            .hero {
                flex-direction: column;
                padding-top:30px;
				padding-right:0px;
				padding-left:0px;
                text-align: center;
            }

            .hero-text {
                padding: 0;
                margin-bottom: 40px;
            }

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

            .category-strip {
                justify-content: center;
                gap: 15px;
            }

            .about-section {
                flex-direction: column;
            }

            .deals-wrapper {
                flex-direction: column;
                height: auto;
            }

            .deal-side-img {
                display: none;
            }

            /* Mobile me side images hide kar sakte hain ya stack */
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .logo {
                font-size: 1.4rem;
            }

            .top-bar {
                flex-direction: column;
                gap: 5px;
                text-align: center;
            }

            .bs-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .filter-tabs {
                overflow-x: auto;
                width: 100%;
                padding-bottom: 5px;
            }
        }


        /* --- Promo Banners --- */
        .promo-section {
            padding: 40px 0%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
        }

        .promo-card {
            border-radius: 20px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: var(--text-dark);
        }

        .card-bg-1 {
            background-color: #fcf4ec;
        }

        /* Light beige for card 1 */
        .card-bg-2 {
            background-color: #ebf5f0;
        }

        /* Light green for card 2 */

        .promo-content {
            z-index: 2;
            max-width: 60%;
        }

        .discount-tag {
            background: var(--secondary-gold);
            color: #fff;
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }

        .promo-content h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .promo-content h3 span {
            color: var(--secondary-gold);
        }

        .promo-content p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 20px;
        }
ul{
    list-style: none;
}
        .promo-img {
            position: absolute;
            right: 0;
            bottom: 0;
            height: 100%;
            width: 45%;
            object-fit: cover;
            mask-image: linear-gradient(to left, black 60%, transparent 100%);
            -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
        }
        


/* ================= PRODUCT DETILS PAGE ================= */
/* ================= PRODUCT DETILS PAGE ================= */



    .product-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.product-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.product-gallery {
    flex: 1;
}

.main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    border-radius: 20px;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
}

.prev { left: 15px; }
.next { right: 15px; }

.thumb-images {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.thumb-images img {
    width: 90px;
    border-radius: 12px;
    cursor: pointer;
}

.product-info {
    flex: 1;
}

.category {
    color: #888;
    font-size: 14px;
}

.product-info h2 {
    font-weight: 600;
    margin: 10px 0;
}

.stock {
    background: #e6f5ee;
    color: #2e7d32;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 10px;
}

.rating {
    color: #f5b50a;
    font-size: 14px;
    margin-bottom: 15px;
}

.rating span {
    color: #555;
    margin-left: 10px;
}

.price {
    margin-bottom: 15px;
}

.new-price {
    color: #c89d44;
    font-size: 22px;
    font-weight: 600;
    margin-right: 10px;
}

.old-price {
    color: #aaa;
    text-decoration: line-through;
}

.desc {
    color: #666;
    margin-bottom: 25px;
}

.size label {
    font-weight: 500;
}

.size-options {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.size-options button {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 20px;
    cursor: pointer;
}

.size-options button.active {
    background: var(--primary-green);
    color: white;
    border: none;
}

.cart-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.qty {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 30px;
    overflow: hidden;
}

.qty button {
    border: none;
    background: white;
    padding: 8px 12px;
    cursor: pointer;
}

.qty span {
    padding: 0 10px;
}

.add-cart {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
}

.buy-now {
    background: #c89d44;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
}

.wishlist {
    border: 1px solid #ddd;
    background: white;
    padding: 10px;
    border-radius: 50%;
}

.meta {
    margin-top: 25px;
    color: #666;
    font-size: 14px;
}

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

@media (max-width: 992px) {
    .product-wrapper {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .cart-row {
        flex-wrap: wrap;
    }

    .thumb-images img {
        width: 70px;
    }
}
.thumb {
    opacity: 0.6;
    transition: 0.3s;
    border: 2px solid transparent;
}

.thumb.active {
    opacity: 1;
    border-color: #2e7d32;
}




/*PRODUCT TVA*/

.product-tabs {
    background: #f7f7f7;
    padding: 60px 0;
}

.product-tabs .tabs-header {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.product-tabs .tab-btn {
    background: none;
    border: none;
    font-weight: 600;
    font-size: 16px;
    padding-bottom: 15px;
    cursor: pointer;
    color: #777;
    position: relative;
}

.product-tabs .tab-btn.active {
    color: var(--primary-green);
}

.product-tabs .tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-green);
}

.product-tabs .tabs-content {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.product-tabs .tab-panel {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.product-tabs .tab-panel.active {
    display: block;
}

.product-tabs .feature-list {
    margin-top: 20px;
    list-style: none;
    padding-left: 0;
}

.product-tabs .feature-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.product-tabs .feature-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #1b5e20;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@media (max-width: 768px) {

   .product-tabs .tabs-header {
        gap: 20px;
    }

    .product-tabs .tab-btn {
        font-size: 14px;
    }

    .product-tabs .tabs-content {
        font-size: 14px;
    }
}

/*related pro css */


.related-products {
    padding: 80px 0;
    background: #f7f7f7;
}

.related-products .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.related-products .section-title span {
    color: #888;
    font-size: 14px;
}

.related-products .section-title h2 {
    font-size: 32px;
    margin-top: 10px;
}

.related-products .section-title strong {
    color: #c89d44;
}

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

.related-products .product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.related-products .product-card:hover {
    transform: translateY(-8px);
}

.related-products .product-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.related-products .product-img img {
    width: 100%;
    display: block;
}

.related-products .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-green);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.related-products .hover-icons {
    position: absolute;
    top: 15px;
    right: -50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: 0.3s;
}

.related-products .hover-icons i {
    background: #fff;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
}

.related-products .product-card:hover .hover-icons {
    right: 15px;
}

.related-products .product-info {
    padding: 20px;
}

.related-products .product-info .cat {
    font-size: 13px;
    color: #888;
}

.related-products .product-info h4 {
    margin: 8px 0;
    font-weight: 600;
}

.related-products .rating {
    font-size: 14px;
    color: #f5b50a;
    margin-bottom: 8px;
}

.related-products .price .new {
    color: var(--primary-green);
    font-weight: 600;
    margin-right: 8px;
}

.related-products .price .old {
    text-decoration: line-through;
    color: #aaa;
}

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

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

@media (max-width: 576px) {
    .related-products .product-grid {
        grid-template-columns: 1fr;
    }

    .related-products .section-title h2 {
        font-size: 24px;
    }
}



.breadcrumb-section {
    position: relative;
    background: #f2f2f2;
    padding: 80px 0 70px;
    overflow: hidden;
}

.breadcrumb-section h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.breadcrumb-links {
    font-size: 14px;
    color: #777;
}

.breadcrumb-links a {
    text-decoration: none;
    color: #777;
    transition: 0.3s;
}

.breadcrumb-links a:hover {
    color: #1b5e20;
}

.breadcrumb-links span {
    margin: 0 6px;
}

.breadcrumb-links .current {
    color: #555;
}

/* Subtle dotted decoration */
.breadcrumb-section::before,
.breadcrumb-section::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#ddd 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.5;
}

.breadcrumb-section::before {
    top: 20px;
    left: 10%;
}

.breadcrumb-section::after {
    bottom: 20px;
    right: 10%;
}

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

@media (max-width: 768px) {

    .breadcrumb-section {
        padding: 60px 0 50px;
    }

    .breadcrumb-section h1 {
        font-size: 28px;
    }

    .breadcrumb-links {
        font-size: 13px;
    }
}

@media (max-width: 480px) {

    .breadcrumb-section {
        padding: 50px 0 40px;
    }

    .breadcrumb-section h1 {
        font-size: 24px;
    }
}


.tm-slides{
    position: relative;
    min-height: 250px; /* apne content ke hisab se adjust karo */
}

.tm-slide{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.tm-slide.active{
    opacity: 1;
    visibility: visible;
    position: relative;
}


.ft-footer {
    position: relative;
    background: linear-gradient(350deg, rgb(43 43 43 / 91%) 0%, rgb(43 43 43 / 92%) 100%), url(https://ogwholefoods.com/wp-content/uploads/2026/02/bgfooter.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}