     /*  
    Author: Rejoice App developers  
    Website: https://rejoiceapps.com/
    Project: SS INOTECH
    Description: Custom styles for [SS INOTECH]  
    Version: 1.0  
    Last Updated: 2025-05-09  
    */

    /* index page styles */
        :root {
            --ip_primary-color: #22A61E;
            --ip_primary-dark: #1f6b3d;
            --ip_text-color: #333;
            --ip_light-bg: #f9f9f9;
            --ip_white: #ffffff;
            --ip_gray: #f0f0f0;
            --ip_dark-gray: #777;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cabinet Grotesk', sans-serif;
            font-weight: 500;
            list-style: none;
        }

        .ip_body {
            /* color: var(--ip_text-color); */
            background-color: #dbf3db;
            overflow-x: hidden;
            /* background: url(assets/images/bg.png); */
        }

        /* Header Styles */
        .ip_header {
            background-color: var(--ip_white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

      /* Update the logo styles */
.ip_logo {
    color: var(--ip_primary-color);
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    width: auto; /* Changed from fixed width to auto */
    height: 70px; /* Fixed height */
    display: flex;
    align-items: center;
}

.ip_logo-image {
    height: 100%; /* Make image fill the logo container height */
    width: auto; /* Maintain aspect ratio */
    max-width: 180px; /* Set a maximum width for larger screens */
    object-fit: contain;
}

/* Adjust header padding for better spacing */
.ip_header {
    padding: 10px 5%; /* Reduced vertical padding */
}

/* For mobile view - keep existing mobile styles but adjust logo size */
@media (max-width: 768px) {
    .ip_logo {
        height: 50px; /* Smaller logo on mobile */
        margin-left: 0;
        width: auto;
    }
    
    .ip_logo-image {
        max-width: 120px; /* Smaller max width for mobile */
    }
    
    .ip_header {
        padding: 10px 20px; /* Adjusted padding for mobile */
    }
}
        .ip_nav{
            margin-left: auto;
        }
        .ip_nav ul {
            display: flex;
            list-style: none;
            margin-right: auto; /* Push nav to the right */
        }

        .ip_nav ul li {
            margin-left: 30px;
        }

        .ip_nav ul li a {
            text-decoration: none;
            color: var(--ip_text-color);
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s;
        }

        .ip_nav ul li a:hover {
            color: var(--ip_primary-color);
        }

        .ip_nav ul li a.ip_active {
            color: var(--ip_primary-color);
        }

        .ip_nav ul li a.ip_active::after,
        .ip_nav ul li a:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--ip_primary-color);
        }

        .ip_header-icons {
            display: flex;
            align-items: center;
            padding-left: 20px;
        }

        .ip_header-icons a {
            margin-left: 15px;
        color: var(--white);
        font-size: 16px;
        transition: all 0.3s;
        background-color: var(--ip_primary-color);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        }

        .ip_header-icons a:hover {
            background-color: var(--ip_primary-dark);
        color: var(--ip_white);
        }

        .ip_cart-count {
        position: absolute;
        top: -5px;
        right: -5px;
        background-color: var(--ip_white);
        color: var(--ip_primary-color);
        border-radius: 50%;
        width: 18px;
        height: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        font-weight: bold;
        }

        .ip_cart-icon {
            position: relative;
            
        }

        .ip_mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        /* Mobile View */
@media (max-width: 768px) {
    .ip_header {
        padding: 15px 20px;
    }
    
    .ip_nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 50%;
        height: calc(45vh - 10px);
        background-color: var(--ip_white);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        z-index: 999;
        height: 100%;
    }
    
    .ip_nav.active {
        left: 0;
    }
    
    .ip_nav ul {
        flex-direction: column;
        padding: 20px;
        margin: 0;
    }
    
    .ip_nav ul li {
        margin: 15px 0;
    }
    
    .ip_mobile-menu {
        display: block;
        order: 3;
    }
    
    .ip_logo {
        order: 0;
        margin-left: auto;
        width: -1px;;
        text-align:center;
        padding-left: -2px -10px;
     
        
    }
    
    
    
    /* Optional: Add a dark overlay when menu is open */
    .ip_overlay {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    .ip_overlay.active {
        display: block;
    }
}

            /* Profile dropdown styles */
        .ip_profile-container {
            position: relative;
            display: inline-block;
            margin-left: 15px;
        }

        .ip_profile-pic {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
            cursor: pointer;
            border: 2px solid var(--ip_primary-color);
            transition: all 0.3s;
        }

        .ip_profile-pic:hover {
            transform: scale(1.1);
        }

        .ip_dropdown-content {
            display: none;
            position: absolute;
            right: 0;
            background-color: var(--ip_white);
            min-width: 160px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 8px;
            overflow: hidden;
        }

        .ip_dropdown-content a {
            color: var(--ip_text-color);
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            transition: background-color 0.3s;
        }

        .ip_dropdown-content a:hover {
            background-color: var(--ip_gray);
            color: var(--ip_primary-color);
        }

        .ip_dropdown-divider {
            height: 1px;
            background-color: var(--ip_gray);
            margin: 0;
        }

        .ip_show {
            display: block;
            animation: fadeIn 0.3s;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        

        /* Hero Section */
        .ip_hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .ip_hero-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }

        .ip_hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--ip_white);
            z-index: 2;
            width: 90%;
            max-width: 800px;
        }

        .ip_hero-subtitle {
            font-size: 18px;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .ip_hero-title {
            font-size: 48px;
            margin-bottom: 30px;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }

        .ip_btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--ip_primary-color);
            color: var(--ip_white);
            border: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }
        .ip_explore-btn{
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--ip_primary-color);
            color: var(--ip_white);
            border: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }
        .ip_explore-btn:hover{
            background-color:var(--ip_primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .ip_btn:hover {
            background-color: var(--ip_primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .ip_stats-card {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            width: 75%;
            max-width: 1000px;
            background-color: var(--ip_white);
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            z-index: 3;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }

        .ip_stat-item {
            text-align: center;
            padding-bottom: 40px;
        }

        .ip_stat-number {
            font-size: 28px;
            font-weight: 700;
            color: var(--ip_primary-color);
            margin-bottom: 5px;
        }

        .ip_stat-label {
            font-size: 14px;
            color: var(--ip_dark-gray);
        }
        @media (max-width: 767px) {
    .ip_hero-content {
        width: 95%;
        top: 45%;
    }

    .ip_hero-subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .ip_hero-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .ip_btn,
    .ip_explore-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .ip_stats-card {
        width: 90%;
        bottom: -80px;
        padding: 15px 10px;
    }

    .ip_stat-item {
        width: 50%;
        padding-bottom: 20px;
    }

    .ip_stat-number {
        font-size: 20px;
    }

    .ip_stat-label {
        font-size: 12px;
    }
}

/* For very small screens (below 400px) */
@media (max-width: 399px) {
    .ip_hero-title {
        font-size: 24px;
    }

    .ip_stats-card {
        bottom: -100px;
    }

    .ip_stat-item {
        width: 100%;
    }
}

        /* Works Section */
        .ip_section {
            padding: 100px 5%;
            position: relative;
        }
        .ip_faqs_section{
            margin-bottom: 70px;
        }
        .ip_section-title {
            text-align: center;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 60px;
            color: var(--ip_text-color);
            position: relative;
        }

        .ip_works-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; /* Centers cards horizontally */
        gap: 30px;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }


    .ip_work-card {
        flex: 0 0 300px;
        background-color: var(--ip_white);
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
        width: 100%;
        max-width: 350px; /* Maximum card width */
        justify-self: center; /* Centers individual cards */
    }

/* Mobile - Switch to 1 column */
@media (max-width: 768px) {
    .ip_works-container {
        grid-template-columns: 1fr;
    }
    .ip_work-card {
        max-width: 100%;
    }
}
        .ip_work-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .ip_work-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .ip_work-content {
            padding: 20px;
        }

        .ip_work-title {
            font-size: 20px;
            margin-bottom: 10px;
            font-weight: 800;
            letter-spacing: 0%;
        }

        .ip_work-desc {
            color: var(--ip_dark-gray);
            line-height: 1.6;
            font-size: 16px;
            font-weight: 400;
        }

        /* About Section */
        .ip_about-container {
            width: 100%;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
            background-color: #ffffff;
        }
        
        .ip_about-content {
            flex: 1 1 400px;
            padding: 40px 20px 40px 60px ;
        }

        .ip_about-title {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
            color: var(--ip_primary-color);
        }

        .ip_about-text {
            color: var(--ip_dark-gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .ip_about-image {
            flex: 1 1 400px;
            height: 630px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            
        }

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

        /* Products Section */
        .ip_products-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .ip_product-card {
            flex: 1 1 250px;
            max-width: 280px;
            background-color: var(--ip_white);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .ip_product-card:hover {
            transform: translateY(-10px);
        }

        .ip_product-image {
            width: 100%;
            height: 200px;
            object-fit: contain;
        }

        .ip_product-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            text-align: center;
        }

        .ip_product-title {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--ip_text-color);
            width: 100%;
        }

        .ip_view-all {
            color: var(--ip_primary-color);
            text-decoration: none;
            font-size: 14px;
            position: relative;
            padding-bottom: 2px;
            display: inline-block;
        }

        .ip_view-all::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: var(--ip_primary-color);
        }

        /* Brands Section */
       .ip_brands-section {
        background-color: var(--ip_light-bg);
        padding: 60px 5%;
        position: relative;
        overflow: hidden;
    }
    
    .ip_brands-container {
        width: 100%;
        position: relative;
    }
    
    .ip_brands-track {
        display: flex;
        width: max-content;
        animation: scroll 20s linear infinite;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    
    .ip_brand-item {
        flex: 0 0 auto;
        margin: 0 40px;
        opacity: 0.7;
        transition: opacity 0.3s;
    }
    
    .ip_brand-item:hover {
        opacity: 1;
    }
    
    .ip_brand-item img {
        height: 40px;
        width: auto;
        object-fit: contain;
        filter: grayscale(100%);
        transition: filter 0.3s;
    }
    
    .ip_brand-item:hover img {
        filter: grayscale(0%);
    }
    


        /* Goal Section */
        .ip_goal-card {
            background-color: var(--ip_white);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
            margin: 0 auto;
            max-width: 90%;
        }

        .ip_goal-content {
            flex: 1 1 400px;
            padding: 40px;
        }

        .ip_goal-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--ip_primary-color);
        }

        .ip_goal-text {
            color: var(--ip_dark-gray);
            line-height: 1.8;
        }

        .ip_goal-image {
            flex: 1 1 400px;
            height: auto;
            overflow: hidden;
        }

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

        /* Reviews Section */
        .ip_reviews-section {
        background-image: url("C:/SS INOTECH (1)/SS INOTECH/SS INOTECH/assets/images/bg1.jpeg");
        padding: 100px 5%;
        position: relative;
        overflow: hidden;
    }
    
    .ip_reviews-container {
        width: 100%;
        position: relative;
    }
    
    .ip_reviews-track {
        display: flex;
        width: max-content;
        animation: scrollReviews 40s linear infinite;
        gap: 30px;
        padding: 30px 0;
    }
    
    @keyframes scrollReviews {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    
    .ip_review-card {
        flex: 0 0 350px;
        background-color: var(--ip_white);
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .ip_review-text {
        font-style: italic;
        line-height: 1.8;
        margin-bottom: 20px;
        color: var(--ip_dark-gray);
    }
    
    .ip_reviewer {
        font-weight: 600;
        color: var(--ip_primary-color);
    }
    
    .ip_reviews-track:hover {
        animation-play-state: paused;
    }
    
    @media (max-width: 768px) {
        .ip_review-card {
            flex: 0 0 280px;
        }
        
        @keyframes scrollReviews {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }
    }

        /* FAQ Section */
        .ip_faq-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            background-color: #ffffff;
            padding: 100px;
        }

        .ip_faq-content {
            flex: 1 1 400px;
            padding-top:150px;
        }

        .ip_faq-title {
            font-size: 36px;
            margin-bottom: 20px;
           margin-left: auto;
        }

        .ip_faq-accordion {
            flex: 1 1 400px;
            margin-right: auto;
        }

        .ip_accordion-item {
            margin-bottom: 15px;
            overflow: hidden;
        }

        .ip_accordion-header {
            background-color: #EBFFEA;
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }

        .ip_accordion-header:hover {
            background-color: var(--ip_gray);
        }

        .ip_accordion-content {
            background-color: var(--ip_white);
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease;
        }

        .ip_accordion-content p {
            padding: 15px 0;
            color: var(--ip_dark-gray);
            line-height: 1.6;
        }

        .ip_accordion-item.ip_active .ip_accordion-content {
            max-height: 300px;
        }

        .ip_accordion-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background-color: #22A61E;
            border-radius: 50%;
            color: #ffffff;
            font-size: 16px;
            transition: transform 0.3s;
        }

        .ip_accordion-item.ip_active .ip_accordion-icon {
            transform: rotate(45deg);
        }

       /* Footer Styles */
.ip_footer {
    background-color: #0E420C;
    color: var(--ip_white);
    padding: 60px 5% 30px;
}

.ip_footer-container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 30px;
}

.ip_footer-col {
    flex: 1 1 200px;
}

.ip_footer-logo {
    display: block;
    margin-bottom: 20px;
}

.ip_footer-logo img {
    max-width: 100%;
    height: auto;
}

.ip_footer-contact {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 10px;
}

.ip_footer-contact i {
    color: #ffffff;
    min-width: 20px;
    text-align: center;
}

.ip_footer-contact span,
.ip_footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    word-break: break-word;
}

.ip_footer-contact a:hover {
    color: var(--ip_primary-color);
}

.ip_footer-col ul {
    margin-top: 30px;
    margin-left: 40px;
}

.ip_footer-col ul li {
    margin-bottom: 10px;
}

.ip_footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.ip_footer-col ul li a:hover {
    color: var(--ip_primary-color);
}

.ip_newsletter {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--ip_white);
}

.ip_newsletter-form {
    display: flex;
    margin-bottom: 20px;
    gap: 10px;
}

.ip_newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 14px;
    background-color: white;
    border-radius: 4px;
}

.ip_newsletter-btn {
    background-color: var(--ip_primary-color);
    color: var(--ip_white);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 4px;
    white-space: nowrap;
}

.ip_newsletter-btn:hover {
    background-color: var(--ip_primary-dark);
}

.ip_social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.ip_social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.ip_social-links a:hover {
    background-color: #ffffff;
    color: #000;
}

.ip_footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #ffffff;
    font-size: 14px;
}

.ip_company_name a {
    color: white;
    text-decoration: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .ip_footer {
        padding: 40px 20px 20px;
    }
    
    .ip_footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .ip_footer-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .ip_footer-contact {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    
    .ip_footer-col ul {
        margin-left: 0;
        padding: 0;
        align-items: center;
    }
    
    .ip_newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .ip_newsletter-input {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .ip_newsletter-btn {
        width: 100%;
        padding: 12px;
    }
    
    .ip_social-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .ip_footer-bottom {
        padding-top: 20px;
        font-size: 12px;
    }
}

/* Small Mobile Optimization */
@media (max-width: 480px) {
    .ip_footer-contact span,
    .ip_footer-contact a {
        font-size: 14px;
    }
    
    .ip_footer-col ul li a {
        font-size: 14px;
    }
    
    .ip_newsletter {
        font-size: 16px;
    }
}
        
        /* Popup Modal Styles */
        .ip_modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            overflow-y: auto;
            justify-content: center;
            align-items: center;
        }
        
        .ip_modal-content {
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 900px;
            overflow: hidden;
            display: flex;
            flex-direction: row;
            animation: fadeIn 0.4s ease-out;
            margin: 20px;
        }
        
        .ip_modal-left {
            flex: 1;
            min-width: 50%;
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .ip_modal-right {
            flex: 1;
            min-width: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .ip_modal-right img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .ip_close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            color: #777;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .ip_close-btn:hover {
            color: #333;
        }
        
        /* Form Styles */
        .ip_welcome-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #333;
        }
        
        .ip_welcome-text {
            color: #777;
            margin-bottom: 30px;
            font-size: 14px;
        }
        
        .ip_form-group {
            margin-bottom: 20px;
        }
        
        .ip_form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }
        
        .ip_form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .ip_form-group input:focus {
            border-color: #4CAF50;
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
            outline: none;
        }
        
        .ip_form-btn {
            width: 100%;
            padding: 12px;
            background: #4CAF50;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-bottom: 20px;
        }
        
        .ip_form-btn:hover {
            background: #45a049;
        }
        
        .ip_form-link {
            text-align: center;
            font-size: 14px;
            color: #666;
        }
        
        .ip_form-link a {
            color: #4285f4;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            cursor: pointer;
        }
        
        .ip_form-link a:hover {
            color: #3367d6;
            text-decoration: underline;
        }
        
        .ip_forgot-password {
            text-align: right;
            margin-bottom: 25px;
        }
        
        .ip_forgot-password a {
            color: #4285f4;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s;
        }
        
        .ip_forgot-password a:hover {
            color: #3367d6;
            text-decoration: underline;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .ip_hero-title {
                font-size: 36px;
            }
            
            .ip_stat-number {
                font-size: 24px;
            }
            
            .ip_section-title {
                font-size: 30px;
            }
            
            .ip_about-title, .ip_goal-title, .ip_faq-title {
                font-size: 30px;
            }
        }

        @media (max-width: 768px) {
            .ip_header {
                padding: 20px 20px;
            }
            
            .ip_nav {
                position: fixed;
                top: 90px;
                right: 0;
                left: auto;
                width: 250px;
                background-color:#fefefe;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 5px;
                transform: translateX(100%);
                transition: transform 0.3s;
                z-index: 300;
                height: 100%;
            }
            
            .ip_nav.ip_active {
                transform: translateX(0);
            }
            
            .ip_nav ul {
                flex-direction: column;
            }
            
            .ip_nav ul li {
                margin: 10px 0;
            }
            
            .ip_mobile-menu {
                display: block;
             
            }
            
            .ip_hero-title {
                font-size: 30px;
            }
            
            .ip_hero-subtitle {
                font-size: 16px;
            }
            
            .ip_stats-card {
                width: 90%;
                padding: 20px;
                bottom: -80px;
            }
            
            .ip_stat-item {
                flex: 1 1 120px;
                margin-bottom: 10px;
            }
            
            .ip_section {
                padding: 80px 20px;
            }
            
            .ip_section-title {
                font-size: 28px;
                margin-bottom: 40px;
            }
            
            .ip_about-image, .ip_goal-image {
                height: 300px;
            }
            
            .ip_review-card {
                flex: 0 0 280px;
            }
            
            /* Modal responsive */
            .ip_modal-content {
                flex-direction: column;
            }
            
            .ip_modal-right {
                display: none;
            }
            
            .ip_modal-left {
                padding: 30px;
                min-width: 100%;
            }
        }

        @media (max-width: 576px) {
            .ip_hero {
                height: 80vh;
            }
            
            .ip_hero-title {
                font-size: 24px;
            }
            
            .ip_btn {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .ip_stats-card {
                bottom: -120px;
            }
            
            .ip_stat-number {
                font-size: 20px;
            }
            
            .ip_stat-label {
                font-size: 12px;
            }
            
            .ip_work-card, .ip_product-card {
                flex: 1 1 100%;
            }
            
            .ip_goal-card {
                padding: 20px;
            }
            
            .ip_footer-col {
                flex: 1 1 100%;
            }
            
            .ip_newsletter-form {
                flex-direction: column;
            }
            
            .ip_newsletter-input {
                border-radius: 4px;
                margin-bottom: 10px;
            }
            
            .ip_newsletter-btn {
                border-radius: 4px;
                padding: 12px;
            }
            
            .ip_modal-left {
                padding: 20px;
            }
            
            .ip_welcome-title {
                font-size: 24px;
            }
        }
        
        .ip_company_name a{
            color: white;
            text-decoration: none;
        }
        
        .ip_signup-btn {
            display: inline-block;
            padding: 8px;
            background-color: var(--ip_primary-color);
            color: var(--ip_white);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            margin-left: 5px;
            border: none;
        }

        .ip_signup-btn:hover {
            background-color: var(--ip_primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .ip_login-btn {
            background: none;
            border: none;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            color: green;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            padding: 8px 15px;
            margin-left: 10px;
           
            transition: all 0.3s;
        }
        
        .ip_login-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        /* Add this to your CSS */
    .ip_learn-more {
        display: inline-block;
        color: var(--ip_primary-color);
        text-decoration: none;
        font-weight: 500;
        margin-top: 15px;
        position: relative;
        padding-bottom: 2px;
        transition: color 0.3s;
    }

    .ip_learn-more::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--ip_primary-color);
        transition: transform 0.3s;
        transform-origin: right;
    }

    .ip_learn-more:hover {
        color: var(--ip_primary-dark);
    }

    .ip_learn-more:hover::after {
        transform: scaleX(0);
        transform-origin: left;
    }
    @media (max-width: 768px) {
    .ip_footer {
        padding: 40px 20px 20px;
    }
    
    .ip_footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .ip_footer-col {
        flex: 1 1 100%;
        text-align: center;
    }
    
    .ip_footer-col ul {
        margin-left: 0;
        padding: 0;
    }
    
    .ip_newsletter-form {
        flex-direction: column;
    }
    
    .ip_newsletter-input {
        margin-bottom: 10px;
        width: 100%;
    }
    
    .ip_newsletter-btn {
        width: 100%;
    }
    
    .ip_social-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .ip_footer-bottom {
        padding-top: 20px;
        font-size: 12px;
    }
}
/* Scroll to Top Button */
.ip_scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color:#22A61E;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ip_scroll-top.ip_active {
    opacity: 1;
    visibility: visible;
}

.ip_scroll-top:hover {
    background-color:#0b1a0b;
    transform: translateY(-3px);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .ip_scroll-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }
}
/* Granules Section Styles */
.ip_section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ip_section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 15px;
}

.ip_granules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ip_granule-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ip_granule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.ip_granule-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.ip_granule-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ip_granule-card:hover .ip_granule-image img {
    transform: scale(1.05);
}

.ip_granule-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(34, 166, 30, 0.9), rgba(34, 166, 30, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 25px;
    transition: bottom 0.4s ease;
}

.ip_granule-card:hover .ip_granule-overlay {
    bottom: 0;
}

.ip_granule-content {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.ip_granule-card:hover .ip_granule-content {
    transform: translateY(0);
    opacity: 1;
}

.ip_granule-content h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.ip_granule-content p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.ip_granule-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.ip_granule-title {
    text-align: center;
    padding: 20px;
    font-size: 1.1rem;
    color: #333;
    background-color: white;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .ip_granules-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ip_granule-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .ip_granules-container {
        grid-template-columns: 1fr;
    }
    
    .ip_section-subtitle {
        font-size: 1rem;
    }
}

/* about us page styles */
:root {
            --ap_primary-color: #22A61E;
            --ap_primary-dark: #1f6b3d;
            --ap_text-color: #333;
            --ap_light-bg: #f9f9f9;
            --ap_white: #ffffff;
            --ap_gray: #f0f0f0;
            --ap_dark-gray: #777;
            --ap_card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cabinet Grotesk', sans-serif;
            font-weight: 500;
            list-style: none;
        }

        .ap_body {
            color: var(--ap_text-color);
            overflow-x: hidden;
            background-color: #f5faf5;
        }

        /* Header Styles */
        .ap_header {
            background-color: var(--ap_white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .ap_logo {
            color: var(--ap_primary-color);
            font-size: 24px;
            font-weight: 700;
            text-decoration: none;
            width: 137.52px;
        }

        .ap_nav {
            margin-left: auto;
            
        }

        .ap_nav ul {
            display: flex;
            list-style: none;
            margin-right: auto;
        }

        .ap_nav ul li {
            margin-left: 30px;
        }

        .ap_nav ul li a {
            text-decoration: none;
            color: var(--ap_text-color);
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s;
        }

        .ap_nav ul li a:hover {
            color: var(--ap_primary-color);
        }

        .ap_nav ul li a.ap_active {
            color: var(--ap_primary-color);
        }

        .ap_nav ul li a.ap_active::after,
        .ap_nav ul li a:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--ap_primary-color);
        }

        .ap_header-icons {
            display: flex;
            align-items: center;
        }

        .ap_header-icons a {
            margin-left: 15px;
            color: var(--ap_white);
            font-size: 16px;
            transition: all 0.3s;
            background-color: var(--ap_primary-color);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .ap_header-icons a:hover {
            background-color: var(--ap_primary-dark);
            color: var(--ap_white);
        }

        .ap_cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: var(--ap_white);
            color: var(--ap_primary-color);
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            font-weight: bold;
        }

        .ap_cart-icon {
            position: relative;
        }

        .ap_mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Breadcrumb Section */
        .ap_breadcrumb-section {
            padding: 120px 5% 40px;
            display: flex;
            justify-content: center;
        }

        .ap_breadcrumb-card {
            background-color: var(--ap_white);
            width: 100%;
            padding: 20px 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
           
        }

        .ap_breadcrumb {
            display: flex;
            align-items: center;
            font-size: 14px;
        }

        .ap_breadcrumb a {
            color: var(--ap_primary-color);
            text-decoration: none;
            transition: color 0.3s;
        }

        .ap_breadcrumb a:hover {
            color: var(--ap_primary-dark);
        }

        .ap_breadcrumb .ap_separator {
            margin: 0 10px;
            color: var(--ap_dark-gray);
        }

        .ap_breadcrumb .ap_current {
            color: var(--ap_dark-gray);
        }

        /* About Cards Section */
        .ap_about-cards-section {
            display: flex;
            justify-content: center;
            padding: 0 5% 80px;
        }

   .ap_about-cards-container {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

        .ap_about-card {
    background: var(--ap_white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--ap_card-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
        }

        .ap_about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .ap_card-icon {
            width: 100%;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
            position: relative;
            overflow: hidden;
        }

        .ap_card-icon i {
            font-size: 60px;
            z-index: 2;
        }

        .ap_card-icon::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            z-index: 1;
        }

        .ap_card-content {
            padding: 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .ap_card-content h2 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--ap_text-color);
            position: relative;
            padding-bottom: 10px;
        }

        .ap_card-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--ap_primary-color);
        }

        .ap_card-content p {
            color: var(--ap_dark-gray);
            line-height: 1.7;
            margin-bottom: 20px;
            flex: 1;
        }

        /* Card specific colors */
        .ap_card-1 .ap_card-icon {
            background: linear-gradient(135deg, #e3f9e5 0%, #c1f2c7 100%);
        }
        .ap_card-1 .ap_card-icon i {
            color: var(--ap_primary-color);
        }

        .ap_card-2 .ap_card-icon {
            background: linear-gradient(135deg, #e3e9ff 0%, #c6d2ff 100%);
        }
        .ap_card-2 .ap_card-icon i {
            color: #1e3ea6;
        }

        .ap_card-3 .ap_card-icon {
            background: linear-gradient(135deg, #ffe8e8 0%, #ffd1d1 100%);
        }
        .ap_card-3 .ap_card-icon i {
            color: #ff0606;
        }

        .ap_card-4 .ap_card-icon {
            background: linear-gradient(135deg, #fff4e3 0%, #ffe8c6 100%);
        }
        .ap_card-4 .ap_card-icon i {
            color: #ff9800;
        }

        /* Hero Section */
        .ap_about-hero {
            width: 90%;
            height: 400px;
            position: relative;
            overflow: hidden;
            margin-bottom: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-left: auto;
            margin-right: auto;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/about_us.png') center/cover no-repeat;
        }

        .ap_about-hero-content {
            max-width: 800px;
            padding: 0 20px;
            z-index: 2;
        }

        .ap_about-hero-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .ap_about-hero-subtitle {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

       /* Footer Styles */
.ap_footer {
    background-color: #0E420C;
    color: white; /* Changed to white font color */
    padding: 60px 5% 30px;
}

.ap_footer-container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 30px;
    justify-content: space-between;
}

.ap_footer-col {
    flex: 1 1 200px;
    min-width: 200px;
}

.ap_footer-logo {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: white; /* Changed to white */
    margin-bottom: 20px;
    text-decoration: none;
}

.ap_footer-contact {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
    color: white; /* Changed to white */
}

.ap_footer-contact i {
    color: white; /* Changed to white */
    min-width: 20px;
    text-align: center;
}

.ap_footer-contact a,
.ap_footer-contact span {
    color: white; /* Changed to white */
    text-decoration: none;
    transition: opacity 0.3s;
    word-break: break-word;
}

.ap_footer-contact a:hover {
    opacity: 0.8;
}

.ap_footer-col ul {
    margin-top: 30px;
    margin-left: 40px;
    padding: 0;
}

.ap_footer-col ul li {
    margin-bottom: 10px;
    list-style: none;
}

.ap_footer-col ul li a {
    color: white; /* Changed to white */
    text-decoration: none;
    transition: opacity 0.3s;
}

.ap_footer-col ul li a:hover {
    opacity: 0.8;
}

.ap_newsletter h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white; /* Changed to white */
}

.ap_newsletter-form {
    display: flex;
    margin-bottom: 20px;
    gap: 10px;
}

.ap_newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 14px;
    background-color: white;
    border-radius: 4px;
    min-width: 0;
}

.ap_newsletter-btn {
    background-color: var(--ap_primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 4px;
    white-space: nowrap;
}

.ap_newsletter-btn:hover {
    background-color: var(--ap_primary-dark);
}

.ap_social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.ap_social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    color: #0E420C;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.ap_social-links a:hover {
    background-color: #f0f0f0;
}

.ap_footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 14px;
}

.ap_company_name a {
    color: white;
    text-decoration: none;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .ap_footer {
        padding: 40px 20px 20px;
    }
    
    .ap_footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .ap_footer-col {
        width: 100%;
        max-width: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .ap_footer-contact {
        justify-content: center;
        text-align: center;
    }
    
    .ap_footer-col ul {
        margin-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .ap_newsletter-form {
        flex-direction: column;
        width: 100%;
        gap: 10px; /* Reduced gap for mobile */
    }
    
    .ap_newsletter-input {
        width: 100%;
        margin-bottom: 0; /* Removed extra margin */
    }
    
    .ap_newsletter-btn {
        width: 100%;
        padding: 12px;
    }
    
    .ap_social-links {
        justify-content: center;
    }
    
    .ap_footer-bottom {
        padding-top: 20px;
    }
}

/* Small Mobile Optimization */
@media (max-width: 480px) {
    .ap_footer-contact,
    .ap_footer-col ul li {
        font-size: 14px;
    }
    
    .ap_newsletter h3 {
        font-size: 16px;
    }
    
    .ap_footer-logo {
        font-size: 20px;
    }
    
    .ap_newsletter-form {
        gap: 8px; /* Even smaller gap for very small screens */
    }
}
   
        /* Scroll to Top Button */
        .ap_scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--ap_primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .ap_scroll-top.ap_active {
            opacity: 1;
            visibility: visible;
        }

        .ap_scroll-top:hover {
            background-color: var(--ap_primary-dark);
            transform: translateY(-3px);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .ap_about-hero-title {
                font-size: 36px;
            }
        }

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

            .ap_nav {
                position: fixed;
                top: 70px;
                right: 0;
                left: auto;
                width: 250px;
                background-color: var(--ap_white);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 20px;
                transform: translateX(100%);
                transition: transform 0.3s;
                z-index: 999;
                height: 100%;
            }

            .ap_nav.ap_active {
                transform: translateX(0);
            }

            .ap_nav ul {
                flex-direction: column;
            }

            .ap_nav ul li {
                margin: 10px 0;
            }

            .ap_mobile-menu {
                display: block;
            }

            .ap_about-hero-title {
                font-size: 32px;
            }

            .ap_about-cards-container {
                grid-template-columns: 1fr;
                max-width: 500px;
            }
        }

        @media (max-width: 576px) {
            .ap_breadcrumb-card {
                padding: 15px 20px;
            }

            .ap_about-hero {
                height: 300px;
                margin-bottom: 50px;
            }

            .ap_about-hero-title {
                font-size: 28px;
            }

            .ap_about-hero-subtitle {
                font-size: 16px;
            }

            .ap_footer-col {
                flex: 1 1 100%;
                margin-bottom: 30px;
            }

            .ap_newsletter-form {
                flex-direction: column;
            }

            .ap_newsletter-input {
                border-radius: 4px;
                margin-bottom: 10px;
            }

            .ap_newsletter-btn {
                border-radius: 4px;
                padding: 12px;
            }

            .ap_scroll-top {
                width: 45px;
                height: 45px;
                font-size: 18px;
                bottom: 20px;
                right: 20px;
            }
        }
        /* FAQ Section - Mobile Responsive Changes */
.ip_faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #ffffff;
    padding: 40px 20px; /* Reduced padding for mobile */
    max-width: 100%;
    box-sizing: border-box;
}

.ip_faq-content {
    flex: 1 1 100%; /* Take full width on mobile */
    padding: 0; /* Remove padding for mobile */
    text-align: center; /* Center align for mobile */
    margin-bottom: 30px;
}

.ip_faq-title {
    font-size: 28px; /* Smaller font size for mobile */
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.ip_faq-accordion {
    flex: 1 1 100%; /* Take full width on mobile */
    margin: 0 auto;
    max-width: 100%;
}

.ip_accordion-item {
    margin-bottom: 15px;
}

.ip_accordion-header {
    padding: 12px 15px; /* Smaller padding for mobile */
    font-size: 16px; /* Slightly smaller font for mobile */
}

.ip_accordion-content p {
    padding: 12px 0;
    font-size: 14px; /* Slightly smaller font for mobile */
    line-height: 1.6;
}

/* Tablet and larger screens */
@media (min-width: 768px) {
    .ip_faq-container {
        padding: 60px;
        flex-direction: row;
    }
    
    .ip_faq-content {
        flex: 1 1 40%;
        padding-top: 60px;
        text-align: left;
    }
    
    .ip_faq-title {
        font-size: 36px;
        text-align: left;
    }
    
    .ip_faq-accordion {
        flex: 1 1 50%;
        margin-right: 0;
    }
    
    .ip_accordion-header {
        padding: 15px 20px;
        font-size: 18px;
    }
}

/* Very small mobile devices */
@media (max-width: 480px) {
    .ip_faq-container {
        padding: 30px 15px;
    }
    
    .ip_faq-title {
        font-size: 24px;
    }
    
    .ip_accordion-header {
        font-size: 15px;
        padding: 10px 12px;
    }
    
    .ip_accordion-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}
 /* blog page styles */
   :root {
            --bp_primary-color: #22A61E;
            --bp_primary-dark: #1f6b3d;
            --bp_text-color: #333;
            --bp_light-bg: #f9f9f9;
            --bp_white: #ffffff;
            --bp_gray: #f0f0f0;
            --bp_dark-gray: #EDEDED;
            --bp_light-gray: #e0e0e0;
            --bp_card-shadow: 0 10px 30px rgba(0,0,0,0.08);
            --bp_transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box; 
            font-family: 'Cabinet Grotesk', sans-serif; 
            font-weight: 500;
            list-style: none;
        }

        .bp_body {
            color: var(--bp_text-color);
            overflow-x: hidden;
            background-color: #F0FCF0;
            line-height: 1.6;
        }

        /* Header Styles (same as template) */
        .bp_header {
            background-color: var(--bp_white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .bp_logo {
            color: var(--bp_primary-color);
            font-size: 24px;
            font-weight: 700;
            text-decoration: none;
            width: 137.52px;
        }
        
        .bp_nav {
            margin-left: auto;
        }
        
        .bp_nav ul {
            display: flex;
            list-style: none;
            margin-right: auto;
        }

        .bp_nav ul li {
            margin-left: 30px;
        }

        .bp_nav ul li a {
            text-decoration: none;
            color: var(--bp_text-color);
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s;
        }

        .bp_nav ul li a:hover {
            color: var(--bp_primary-color);
        }

        .bp_nav ul li a.bp_active {
            color: var(--bp_primary-color);
        }

        .bp_nav ul li a.bp_active::after,
        .bp_nav ul li a:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--bp_primary-color);
        }

        .bp_header-icons {
            display: flex;
            align-items: center;
        }

        .bp_header-icons a {
            margin-left: 15px;
            color: var(--bp_white);
            font-size: 16px;
            transition: all 0.3s;
            background-color: var(--bp_primary-color);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .bp_header-icons a:hover {
            background-color: var(--bp_primary-dark);
            color: var(--bp_white);
        }

        .bp_cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: var(--bp_white);
            color: var(--bp_primary-color);
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            font-weight: bold;
        }

        .bp_cart-icon {
            position: relative;
        }

        .bp_mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Breadcrumb */
        .bp_breadcrumb {
            margin-top: 120px!important; 
            padding: 12px 0px 12px 20px;
            background-color: var(--bp_white);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            width: 90%;
            display: flex;
            align-items: center;
            margin-left: auto;
            margin-right: auto;
            border-radius: 8px;
        }

        .bp_breadcrumb-links {
            display: flex;
            align-items: center;
            color:grey;
            font-size: 14px;
        }

        .bp_breadcrumb-links a {
            color: grey;
            text-decoration: none;
            transition: color 0.3s;
        }

        .bp_breadcrumb-links a:hover {
            color: var(--bp_primary-color);
        }

        .bp_breadcrumb-links span {
            margin: 0 8px;
        }

        /* Blog Hero */
        .bp_blog-hero {
            width: 90%;
            margin: 30px auto;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 400px;
        }

        .bp_blog-hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }

        .bp_blog-hero-content {
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 40px;
            color: white;
            max-width: 800px;
        }

        .bp_blog-hero-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .bp_blog-hero-subtitle {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 20px;
        }

        /* Blog Container */
        .bp_blog-container {
            width: 90%;
            max-width: 1200px;
            margin: 50px auto;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }

        /* Main Blog Content */
        .bp_blog-main {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: var(--bp_card-shadow);
        }

        .bp_blog-post {
            margin-bottom: 60px;
        }

        .bp_blog-post:not(:last-child) {
            border-bottom: 1px solid var(--bp_light-gray);
            padding-bottom: 60px;
        }

        .bp_blog-post-title {
            font-size: 32px;
            color: var(--bp_primary-dark);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .bp_blog-post-meta {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            color: #666;
            font-size: 14px;
        }

        .bp_blog-post-meta i {
            margin-right: 8px;
            color: var(--bp_primary-color);
        }

        .bp_blog-post-meta span {
            margin-right: 20px;
            display: flex;
            align-items: center;
        }

        .bp_blog-post-image {
            width: 100%;
            border-radius: 8px;
            margin-bottom: 25px;
            height: 400px;
            object-fit: cover;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .bp_blog-post-content {
            font-size: 16px;
            line-height: 1.8;
        }

        .bp_blog-post-content h3 {
            font-size: 22px;
            color: var(--bp_primary-dark);
            margin: 30px 0 15px;
        }

        .bp_blog-post-content p {
            margin-bottom: 20px;
        }

        .bp_blog-post-content ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }

        .bp_blog-post-content li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }

        .bp_blog-post-content li:before {
            content: "•";
            color: var(--bp_primary-color);
            position: absolute;
            left: 0;
            font-size: 20px;
            line-height: 1;
        }

        .bp_divider {
            height: 2px;
            background: linear-gradient(90deg, var(--bp_primary-color), rgba(34,166,30,0));
            margin: 30px 0;
            border: none;
        }

        .bp_highlight-box {
            background-color: rgba(34,166,30,0.1);
            border-left: 4px solid var(--bp_primary-color);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 30px 0;
        }

        .bp_feature-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0,0,0,0.05);
        }

        .bp_feature-table th {
            background-color: var(--bp_primary-color);
            color: white;
            text-align: left;
            padding: 12px 15px;
        }

        .bp_feature-table td {
            padding: 12px 15px;
            border-bottom: 1px solid var(--bp_light-gray);
        }

        .bp_feature-table tr:last-child td {
            border-bottom: none;
        }

        .bp_feature-table tr:nth-child(even) {
            background-color: rgba(34,166,30,0.05);
        }

        .bp_cta-box {
            background: linear-gradient(135deg, var(--bp_primary-color), var(--bp_primary-dark));
            color: white;
            padding: 30px;
            border-radius: 8px;
            margin: 40px 0;
            text-align: center;
        }

        .bp_cta-box h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .bp_cta-box p {
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .bp_cta-button {
            display: inline-block;
            background: white;
            color: var(--bp_primary-color);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--bp_transition);
        }

        .bp_cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        /* Sidebar */
        .bp_blog-sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
        }

        .bp_sidebar-widget {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: var(--bp_card-shadow);
        }

        .bp_widget-title {
            font-size: 18px;
            color: var(--bp_primary-dark);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--bp_light-gray);
            position: relative;
        }

        .bp_widget-title:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--bp_primary-color);
        }

        .bp_recent-post {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed var(--bp_light-gray);
        }

        .bp_recent-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .bp_recent-post-image {
            width: 80px;
            height: 80px;
            border-radius: 6px;
            object-fit: cover;
            margin-right: 15px;
        }

        .bp_recent-post-content h4 {
            font-size: 15px;
            margin-bottom: 5px;
        }

        .bp_recent-post-content a {
            color: var(--bp_text-color);
            text-decoration: none;
            transition: var(--bp_transition);
        }

        .bp_recent-post-content a:hover {
            color: var(--bp_primary-color);
        }

        .bp_recent-post-date {
            font-size: 12px;
            color: #888;
        }

        .bp_tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .bp_tag {
            display: inline-block;
            background: var(--bp_light-gray);
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 13px;
            color: #555;
            text-decoration: none;
            transition: var(--bp_transition);
        }

        .bp_tag:hover {
            background: var(--bp_primary-color);
            color: white;
        }

        .bp_newsletter-form input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--bp_light-gray);
            border-radius: 6px;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .bp_newsletter-form button {
            width: 90px;
            background: var(--bp_primary-color);
            color: white;
            border: none;
            margin-left: 10px;
            border-radius: 6px;
            cursor: pointer;
            height: 42px;
            text-align: center;
            align-items: center;
            transition: var(--bp_transition);
        }

        .bp_newsletter-form button:hover {
            background: var(--bp_primary-dark);
        }



        /* Responsive Styles */
        @media (max-width: 992px) {
            .bp_blog-container {
                grid-template-columns: 1fr;
            }
            
            .bp_blog-sidebar {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                position: static;
            }
        }

        @media (max-width: 768px) {
            .bp_header {
                padding: 15px 20px;
            }
            
            .bp_nav {
                position: fixed;
                top: 70px;
                right: -250px;
                width: 250px;
                background-color: var(--bp_white);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 20px;
                transition: right 0.3s;
                z-index: 999;
                height: calc(100vh - 70px);
            }
            
           .bp_nav.bp_active {
                right: 0;
            }
            
            .bp_nav ul {
                flex-direction: column;
            }
            
            .bp_nav ul li {
                margin: 15px 0;
            }
            
            .bp_mobile-menu {
                display: block;
            }
            
            .bp_blog-hero-title {
                font-size: 32px;
            }
            
            .bp_blog-post-title {
                font-size: 26px;
            }
            
            .bp_blog-sidebar {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .bp_breadcrumb {
                padding-top: 100px;
            }
            
            .bp_blog-hero {
                height: 300px;
            }
            
            .bp_blog-hero-content {
                padding: 20px;
            }
            
            .bp_blog-hero-title {
                font-size: 24px;
            }
            
            .bp_blog-main {
                padding: 25px;
            }
            
            .bp_blog-post-meta {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .bp_blog-post-meta span {
                margin-bottom: 8px;
            }
            
            .bp_blog-post-image {
                height: 250px;
            }
        }
        /* Modern Categories Widget Styles */
.bp_categories-list {
    margin: 0;
    padding: 0;
}

.bp_categories-list li {
    margin-bottom: 8px;
    position: relative;
    transition: var(--bp_transition);
}

.bp_categories-list li:last-child {
    margin-bottom: 0;
}

.bp_categories-list li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: var(--bp_light-bg);
    border-radius: 8px;
    color: var(--bp_text-color);
    text-decoration: none;
    transition: var(--bp_transition);
}

.bp_categories-list li a:hover {
    background-color: rgba(34,166,30,0.1);
    transform: translateX(5px);
}

.bp_category-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(34,166,30,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--bp_primary-color);
    font-size: 14px;
}

.bp_category-name {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
}

.bp_category-count {
    background-color: var(--bp_primary-color);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}
/* Scroll to Top Button */
.bp_scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--bp_primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.bp_scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.bp_scroll-top:hover {
    background-color: var(--bp_primary-dark);
    transform: translateY(-3px);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .bp_scroll-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }
}

/* contact us page styles  */
        :root {
            --cp_primary-color: #22A61E;
            --cp_primary-dark: #1f6b3d;
            --cp_text-color: #333;
            --cp_light-bg: #f9f9f9;
            --cp_white: #ffffff;
            --cp_gray: #f0f0f0;
            --cp_dark-gray: #EDEDED;
            --cp_light-gray: #e0e0e0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box; 
            font-family: 'Cabinet Grotesk', sans-serif; 
            font-weight: 500;
            list-style: none;
        }

        .cp_body {
            color: var(--cp_text-color);
            overflow-x: hidden;
            background-color: #F0FCF0;
        }

        /* Header Styles */
        .cp_header {
            background-color: var(--cp_white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cp_logo {
            color: var(--cp_primary-color);
            font-size: 24px;
            font-weight: 700;
            text-decoration: none;
            width: 137.52px;
        }
        
        .cp_nav {
            margin-left: auto;
        }
        
        .cp_nav ul {
            display: flex;
            list-style: none;
            margin-right: auto;
        }

        .cp_nav ul li {
            margin-left: 30px;
        }

        .cp_nav ul li a {
            text-decoration: none;
            color: var(--cp_text-color);
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s;
        }

        .cp_nav ul li a:hover {
            color: var(--cp_primary-color);
        }

        .cp_nav ul li a.cp_active {
            color: var(--cp_primary-color);
        }

        .cp_nav ul li a.cp_active::after,
        .cp_nav ul li a:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--cp_primary-color);
        }

        .cp_header-icons {
            display: flex;
            align-items: center;
        }

        .cp_header-icons a {
            margin-left: 15px;
            color: var(--cp_white);
            font-size: 16px;
            transition: all 0.3s;
            background-color: var(--cp_primary-color);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .cp_header-icons a:hover {
            background-color: var(--cp_primary-dark);
            color: var(--cp_white);
        }

        .cp_cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: var(--cp_white);
            color: var(--cp_primary-color);
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            font-weight: bold;
        }

        .cp_cart-icon {
            position: relative;
        }

        .cp_mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Breadcrumb */
        .cp_breadcrumb {
            margin-top: 120px!important; 
            padding: 12px 0px 12px 20px;
            background-color: var(--cp_white);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            width: 90%;
            display: flex;
            align-items: center;
            margin-left: auto;
            margin-right: auto;
        }

        .cp_breadcrumb-links {
            display: flex;
            align-items: center;
            color:grey;
            font-size: 14px;
        }

        .cp_breadcrumb-links a {
            color: grey;
            text-decoration: none;
            transition: color 0.3s;
        }

        .cp_breadcrumb-links a:hover {
            color: var(--cp_primary-color);
        }

        .cp_breadcrumb-links span {
            margin: 0 8px;
        }

        /* Contact Page Card */
        .cp_contact-card {
            width: 90%;
            margin: 30px auto;
            background-color: var(--cp_white);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
          
            overflow: hidden;
        }

        .cp_contact-header {
            padding: 30px;
            text-align: center;
        }

        .cp_contact-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--cp_text-color);
        }

        .cp_contact-subtitle {
            color: var(--cp_dark-gray);
            font-size: 16px;
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto;
        }

        .cp_contact-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .cp_contact-info-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 30px;
            gap: 20px;
        }

        .cp_info-card {
            flex: 1;
            min-width: 250px;
            background-color: var(--cp_gray);
            padding: 30px;
         
            text-align: center;
            transition: transform 0.3s;
        }

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

        .cp_info-icon {
            font-size: 40px;
            color: var(--cp_primary-color);
            margin-bottom: 20px;
        }

        .cp_info-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--cp_text-color);
        }

        .cp_info-text {
            color: var(--cp_primary-color);
            font-size: 16px;
        }

        /* Contact Form Section */
        .cp_contact-form-section {
            background-color: var(--cp_gray);
            padding: 50px;
        }

        .cp_form-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .cp_form-left {
            flex: 1;
            min-width: 300px;
        }

        .cp_form-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--cp_text-color);
        }

        .cp_form-group {
            margin-bottom: 20px;
        }

        .cp_form-input {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--cp_light-gray);
       
            font-size: 16px;
            outline: none;
            transition: all 0.3s;
        }

        .cp_form-input:focus {
            border-color: var(--cp_primary-color);
            box-shadow: 0 0 0 3px rgba(34, 166, 30, 0.1);
        }

        textarea.cp_form-input {
            min-height: 150px;
            resize: vertical;
        }

        .cp_submit-btn {
            background-color: var(--cp_primary-color);
            color: var(--cp_white);
            border: none;
            padding: 15px 30px;
            width: 100%;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .cp_submit-btn:hover {
            background-color: var(--cp_primary-dark);
        }

        .cp_form-right {
            flex: 1;
            min-width: 300px;
        }

        .cp_support-title {
            font-size: 22px;
            font-weight: 700;
            margin-top: 100px;
            margin-bottom: 15px;
            color: var(--cp_text-color);
        }

        .cp_support-text {
            color: black;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .cp_social-links-contact {
            display: flex;
            gap: 15px;
        }

        .cp_social-links-contact a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: #D9D9D9;
            color: black;
            border-radius: 50%;
            text-decoration: none;
            font-size: 20px;
            transition: all 0.3s;
        }

        .cp_social-links-contact a:hover {
            background-color: var(--cp_primary-color);
            transform: translateY(-3px);
        }

        /* Footer */
        .cp_footer {
            background-color: #0E420C;
            color: var(--cp_white);
            padding: 60px 5% 30px;
        }

        .cp_footer-container {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .cp_footer-col {
            flex: 1 1 200px;
        }

        .cp_footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--cp_white);
            margin-bottom: 20px;
            display: block;
            text-decoration: none;
        }

        .cp_footer-contact {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cp_footer-contact i {
            color: #ffffff;
        }

        .cp_footer-links h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--cp_white);
        }

        .cp_footer-col ul {
            margin-top: 30px;
            margin-left: 40px;
        }

        .cp_footer-col ul li {
            margin-bottom: 10px;
        }

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

        .cp_footer-links a:hover {
            color: var(--cp_primary-color);
        }

        .cp_newsletter h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--cp_white);
        }

        .cp_newsletter-form {
            display: flex;
            margin-bottom: 20px;
        }

        .cp_newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            font-size: 14px;
            background-color: white;
        }

        .cp_newsletter-btn {
            background-color: var(--cp_primary-color);
            color: var(--white);
            border: none;
            padding: 0 20px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .cp_newsletter-btn:hover {
            background-color: var(--cp_primary-dark);
        }

        .cp_social-links {
            display: flex;
            gap: 15px;
        }

        .cp_social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            margin: 5px;
            background-color: #e0e0e0;
            color: #000000;
            border-radius: 50%;
            text-decoration: none;
            font-size: 18px;
            transition: background-color 0.3s, color 0.3s;
        }

        .cp_social-links a:hover {
            background-color: #c0c0c0;
            color: #000;
        }

        .cp_footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #bbb;
            font-size: 14px;
        }

        .cp_footer_links {
            list-style: none;
            text-decoration: none;
            color: #ffffff;
        }

        .cp_company_name a {
            color: white;
            text-decoration: none;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .cp_contact-info-cards {
                flex-direction: column;
            }
            
            .cp_info-card {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .cp_header {
                padding: 15px 20px;
            }
            
            .cp_nav {
                position: fixed;
                top: 70px;
                right: -250px;
                width: 250px;
                background-color: var(--cp_white);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 20px;
                transition: right 0.3s;
                z-index: 999;
                height: calc(100vh - 70px);
            }
            
            .cp_nav.cp_active {
                right: 0;
            }
            
            .cp_nav ul {
                flex-direction: column;
            }
            
            .cp_nav ul li {
                margin: 15px 0;
            }
            
            .cp_mobile-menu {
                display: block;
            }
            
            .cp_contact-title {
                font-size: 28px;
            }
            
            .cp_contact-subtitle {
                font-size: 14px;
            }
            
            .cp_form-container {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .cp_breadcrumb {
                padding-top: 100px;
            }
            
            .cp_contact-header {
                padding: 20px;
            }
            
            .cp_contact-title {
                font-size: 24px;
            }
            
            .cp_contact-image {
                height: 200px;
            }
            
            .cp_contact-form-section {
                padding: 30px 20px;
            }
            
            .cp_footer-col {
                flex: 1 1 100%;
                margin-bottom: 30px;
            }
            
            .cp_newsletter-form {
                flex-direction: column;
            }
            
            .cp_newsletter-input {
                border-radius: 4px;
                margin-bottom: 10px;
            }
            
            .cp_newsletter-btn {
                border-radius: 4px;
                padding: 12px;
            }
        }
          /* About Hero Section */
          .cp_about-hero {
            display: flex;
            justify-content: center;
            padding: 0 5% 60px;
        }

        .cp_about-hero-container {
       
            position: relative;
        }

        .cp_about-hero-image {
            width: 100%;
            height: 400px;
            position: relative;
            overflow: hidden;
        }

        .cp_about-hero-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .cp_about-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }

        .cp_about-hero-title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--cp_white);
            font-size: 48px;
            font-weight: 700;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            width: 100%;
            z-index: 2;
        }
        /* Contact Page Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Header adjustments */
    .cp_header {
        padding: 10px 15px;
    }
    
    .cp_logo-image {
        max-width: 150px;
        height: auto;
    }
    
    /* Breadcrumb */
    .cp_breadcrumb {
        margin-top: 80px !important;
        padding: 10px 15px;
        width: 100%;
    }
    
    /* Contact Card */
  
    /* Contact Form Section */
    .cp_contact-form-section {
        padding: 20px 15px;
    }
    
    .cp_form-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .cp_form-title {
        font-size: 24px;
    }
    
    .cp_form-input {
        padding: 12px;
    }
    
    .cp_support-title {
        margin-top: 30px;
        font-size: 20px;
    }
    
    .cp_support-text {
        font-size: 14px;
    }
    
    /* Footer adjustments */
    .ip_footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .ip_footer-col {
        flex: 1 1 100%;
    }
    
    .ip_footer-col ul {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .ip_newsletter-form {
        flex-direction: column;
    }
    
    .ip_newsletter-input {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .ip_newsletter-btn {
        width: 100%;
    }
    
    /* WhatsApp button */
    .cp_whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .cp_header {
        padding: 8px 10px;
    }
    
    .cp_logo-image {
        max-width: 120px;
    }
    
    .cp_about-hero-image {
        height: 200px;
    }
    
    .cp_about-hero-title {
        font-size: 28px;
    }
    
    .cp_info-icon {
        font-size: 30px;
        margin-bottom: 10px;
    }
    
    .cp_info-title {
        font-size: 16px;
    }
    
    .cp_info-text {
        font-size: 14px;
    }
    
    .cp_social-links-contact a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .ip_footer-contact {
        font-size: 14px;
    }
    
    .ip_footer-bottom p {
        font-size: 12px;
    }
}

/* Very small devices (phones, 360px and down) */
@media (max-width: 360px) {
    .cp_header-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
        margin-left: 5px;
    }
    
    .cp_mobile-menu {
        font-size: 20px;
    }
    
    .cp_breadcrumb-links {
        font-size: 12px;
    }
    
    .cp_about-hero-title {
        font-size: 24px;
    }
    
    .cp_form-title {
        font-size: 20px;
    }
    
    .cp_submit-btn {
        padding: 12px;
    }
}
 /* faqs page styles */
     :root {
            --fp_primary-color: #22A61E;
            --fp_primary-dark: #1f6b3d;
            --fp_text-color: #333;
            --fp_light-bg: #f9f9f9;
            --fp_white: #ffffff;
            --fp_gray: #f0f0f0;
            --fp_dark-gray: #EDEDED;
            --fp_light-gray: #e0e0e0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cabinet Grotesk', sans-serif;
            font-weight: 500;
            list-style: none;
        }

        .fp_body {
            color: var(--fp_text-color);
            overflow-x: hidden;
            background-color: #F0FCF0;
        }

        /* Header Styles */
        .fp_header {
            background-color: var(--fp_white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .fp_logo {
            color: var(--fp_primary-color);
            font-size: 24px;
            font-weight: 700;
            text-decoration: none;
            width: 137.52px;
        }

        .fp_nav {
            margin-left: auto;
        }

        .fp_nav ul {
            display: flex;
            list-style: none;
            margin-right: auto;
        }

        .fp_nav ul li {
            margin-left: 30px;
        }

        .fp_nav ul li a {
            text-decoration: none;
            color: var(--fp_text-color);
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s;
        }

        .fp_nav ul li a:hover {
            color: var(--fp_primary-color);
        }

        .fp_nav ul li a.fp_active {
            color: var(--fp_primary-color);
        }

        .fp_nav ul li a.fp_active::after,
        .fp_nav ul li a:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--fp_primary-color);
        }

        .fp_header-icons {
            display: flex;
            align-items: center;
        }

        .fp_header-icons a {
            margin-left: 15px;
            color: var(--fp_white);
            font-size: 16px;
            transition: all 0.3s;
            background-color: var(--fp_primary-color);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .fp_header-icons a:hover {
            background-color: var(--fp_primary-dark);
            color: var(--fp_white);
        }

        .fp_cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: var(--fp_white);
            color: var(--fp_primary-color);
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            font-weight: bold;
        }

        .fp_cart-icon {
            position: relative;
        }

        .fp_mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Breadcrumb */
        .fp_breadcrumb {
            margin-top: 120px!important;
            padding: 12px 0px 12px 20px;
            background-color: var(--fp_white);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            width: 90%;
            display: flex;
            align-items: center;
            margin-left: auto;
            margin-right: auto;
        }

        .fp_breadcrumb-links {
            display: flex;
            align-items: center;
            color:grey;
            font-size: 14px;
        }

        .fp_breadcrumb-links a {
            color: grey;
            text-decoration: none;
            transition: color 0.3s;
        }

        .fp_breadcrumb-links a:hover {
            color: var(--fp_primary-color);
        }

        .fp_breadcrumb-links span {
            margin: 0 8px;
        }

        /* Main Content Layout */
        .fp_main-content {
            display: flex;
            width: 90%;
            max-width: 1400px;
            margin: 40px auto;
            position: relative;
        }

        /* Sidebar Navigation */
        .fp_faq-sidebar {
            width: 280px;
            position: sticky;
            top: 120px;
            height: fit-content;
            margin-right: 40px;
            background-color: var(--fp_white);
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 25px;
            align-self: flex-start;
        }

        .fp_sidebar-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--fp_primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--fp_light-gray);
        }

        .fp_sidebar-nav {
            display: flex;
            flex-direction: column;
        }

        .fp_sidebar-link {
            padding: 12px 15px;
            margin-bottom: 8px;
            color: var(--fp_text-color);
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 15px;
            display: flex;
            align-items: center;
        }

        .fp_sidebar-link:hover {
            background-color: rgba(34, 166, 30, 0.1);
            color: var(--fp_primary-color);
        }

        .fp_sidebar-link.fp_active {
            background-color: rgba(34, 166, 30, 0.1);
            color: var(--fp_primary-color);
            font-weight: 600;
        }

        .fp_sidebar-link i {
            margin-right: 10px;
            font-size: 14px;
        }

        /* FAQ Content */
        .fp_faq-container {
            flex: 1;
            background-color: var(--fp_white);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-radius: 8px;
            overflow: hidden;
            padding: 50px;
        }

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

        .fp_faq-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--fp_text-color);
            margin-bottom: 15px;
        }

        .fp_faq-subtitle {
            color: var(--fp_primary-color);
            font-size: 18px;
            margin-bottom: 20px;
        }

        .fp_faq-intro {
            font-size: 16px;
            line-height: 1.6;
            color: var(--fp_text-color);
            max-width: 800px;
            margin: 0 auto;
        }

        /* FAQ Accordion */
        .fp_faq-accordion {
            margin-top: 30px;
        }

        .fp_faq-item {
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .fp_faq-item:hover {
            box-shadow: 0 5px 15px rgba(34, 166, 30, 0.1);
        }

        .fp_faq-question {
            background-color: var(--fp_white);
            color: var(--fp_text-color);
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }

        .fp_faq-question:hover {
            color: var(--fp_primary-color);
        }

        .fp_faq-question.fp_active {
            color: var(--fp_primary-color);
            border-left: 4px solid var(--fp_primary-color);
        }

        .fp_faq-question i {
            transition: transform 0.3s ease;
        }

        .fp_faq-question.fp_active i {
            transform: rotate(180deg);
        }

        .fp_faq-answer {
            background-color: var(--fp_light-bg);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .fp_faq-answer-content {
            padding: 0 20px;
        }

        .fp_faq-answer.fp_active {
            max-height: 500px;
            padding: 20px;
        }

        .fp_faq-answer p {
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .fp_faq-divider {
            height: 1px;
            background-color: var(--fp_light-gray);
            margin: 15px 0;
        }

        /* Contact CTA */
        .fp_faq-cta {
            margin-top: 50px;
            text-align: center;
            padding: 30px;
            background-color: var(--fp_light-bg);
            border-radius: 8px;
            border: 1px dashed var(--fp_primary-color);
        }

        .fp_faq-cta-title {
            font-size: 24px;
            color: var(--fp_primary-color);
            margin-bottom: 15px;
        }

        .fp_faq-cta-text {
            margin-bottom: 20px;
            font-size: 16px;
            color: var(--fp_text-color);
        }

        .fp_faq-cta-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--fp_primary-color);
            color: var(--fp_white);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--fp_primary-color);
        }

        .fp_faq-cta-btn:hover {
            background-color: transparent;
            color: var(--fp_primary-color);
        }

        /* Scroll to Top Button */
        .fp_scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--fp_primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .fp_scroll-top.fp_active {
            opacity: 1;
            visibility: visible;
        }

        .fp_scroll-top:hover {
            background-color: var(--fp_primary-dark);
            transform: translateY(-3px);
        }

        /* Footer */
        .fp_footer {
            background-color: #0E420C;
            color: var(--fp_white);
            padding: 60px 5% 30px;
        }

        .fp_footer-container {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .fp_footer-col {
            flex: 1 1 200px;
        }

        .fp_footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--fp_white);
            margin-bottom: 20px;
            display: block;
            text-decoration: none;
        }

        .fp_footer-contact {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .fp_footer-contact i {
            color: #ffffff;
        }

        .fp_footer-links h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--fp_white);
        }

        .fp_footer-col ul {
            margin-top: 30px;
            margin-left: 40px;
        }

        .fp_footer-col ul li {
            margin-bottom: 10px;
        }

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

        .fp_footer-links a:hover {
            color: var(--fp_primary-color);
        }

        .fp_newsletter h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--fp_white);
        }

        .fp_newsletter-form {
            display: flex;
            margin-bottom: 20px;
        }

        .fp_newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            font-size: 14px;
            background-color: white;
        }

        .fp_newsletter-btn {
            background-color: var(--fp_primary-color);
            color: var(--fp_white);
            border: none;
            padding: 0 20px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .fp_newsletter-btn:hover {
            background-color: var(--fp_primary-dark);
        }

        .fp_social-links {
            display: flex;
            gap: 15px;
        }

        .fp_social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            margin: 5px;
            background-color: #e0e0e0;
            color: #000000;
            border-radius: 50%;
            text-decoration: none;
            font-size: 18px;
            transition: background-color 0.3s, color 0.3s;
        }

        .fp_social-links a:hover {
            background-color: #c0c0c0;
            color: #000;
        }

        .fp_footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #bbb;
            font-size: 14px;
        }

        .fp_footer_links {
            list-style: none;
            text-decoration: none;
            color: #ffffff;
        }

        .fp_company_name a {
            color: white;
            text-decoration: none;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .fp_faq-sidebar {
                width: 240px;
                margin-right: 30px;
            }
        }

        @media (max-width: 992px) {
            .fp_main-content {
                flex-direction: column;
            }

            .fp_faq-sidebar {
                width: 100%;
                position: static;
                margin-right: 0;
                margin-bottom: 30px;
            }

            .fp_faq-container {
                padding: 40px 30px;
            }
        }

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

            .fp_nav {
                position: fixed;
                top: 70px;
                right: -250px;
                width: 250px;
                background-color: var(--fp_white);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 20px;
                transition: right 0.3s;
                z-index: 999;
                height: calc(100vh - 70px);
            }

            .fp_nav.fp_active {
                right: 0;
            }

            .fp_nav ul {
                flex-direction: column;
            }

            .fp_nav ul li {
                margin: 15px 0;
            }

            .fp_mobile-menu {
                display: block;
            }

            .fp_faq-title {
                font-size: 28px;
            }

            .fp_faq-question {
                font-size: 16px;
                padding: 15px;
            }

            .fp_scroll-top {
                width: 45px;
                height: 45px;
                font-size: 18px;
                bottom: 20px;
                right: 20px;
            }
        }

        @media (max-width: 576px) {
            .fp_breadcrumb {
                padding-top: 100px;
            }

            .fp_faq-container {
                padding: 30px 20px;
                width: 95%;
            }

            .fp_faq-title {
                font-size: 24px;
            }

            .fp_faq-question {
                font-size: 15px;
            }

            .fp_faq-cta-title {
                font-size: 20px;
            }

            .fp_footer-col {
                flex: 1 1 100%;
                margin-bottom: 30px;
            }

            .fp_newsletter-form {
                flex-direction: column;
            }

            .fp_newsletter-input {
                border-radius: 4px;
                margin-bottom: 10px;
            }

            .fp_newsletter-btn {
                border-radius: 4px;
                padding: 12px;
            }
        }

/* my cart page styles  */
        :root {
            --mcp_primary-color: #22A61E;
            --mcp_primary-dark: #1f6b3d;
            --mcp_text-color: #333;
            --mcp_light-bg: #f9f9f9;
            --mcp_white: #ffffff;
            --mcp_gray: #f0f0f0;
            --mcp_dark-gray: #777;
            --mcp_light-gray: #e0e0e0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-weight: 500;
            font-family: 'Cabinet Grotesk', sans-serif; 
            list-style: none;
        }

        .mcp_body {
            color: var(--mcp_text-color);
            overflow-x: hidden;
            background-color: #F0FCF0;
        }

        /* Header Styles */
        .mcp_header {
            background-color: var(--mcp_white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mcp_logo {
            color: var(--mcp_primary-color);
            font-size: 24px;
            font-weight: 700;
            text-decoration: none;
            width: 137.52px;
        }
        
        .mcp_nav {
            margin-left: auto;
        }
        
        .mcp_nav ul {
            display: flex;
            list-style: none;
            margin-right: auto;
        }

        .mcp_nav ul li {
            margin-left: 30px;
        }

        .mcp_nav ul li a {
            text-decoration: none;
            color: var(--mcp_text-color);
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s;
        }

        .mcp_nav ul li a:hover {
            color: var(--mcp_primary-color);
        }

        .mcp_nav ul li a.mcp_active {
            color: var(--mcp_primary-color);
        }

        .mcp_nav ul li a.mcp_active::after,
        .mcp_nav ul li a:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--mcp_primary-color);
        }

        .mcp_header-icons {
            display: flex;
            align-items: center;
        }

        .mcp_header-icons a {
            margin-left: 15px;
            color: var(--mcp_white);
            font-size: 16px;
            transition: all 0.3s;
            background-color: var(--mcp_primary-color);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .mcp_header-icons a:hover {
            background-color: var(--mcp_primary-dark);
            color: var(--mcp_white);
        }

        .mcp_cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: var(--mcp_white);
            color: var(--mcp_primary-color);
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            font-weight: bold;
        }

        .mcp_cart-icon {
            position: relative;
        }

        .mcp_mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Breadcrumb */
        .mcp_breadcrumb {
          margin-top: 120px!important; 
            padding: 12px 0px 12px 20px;
            background-color: var(--mcp_white);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            width: 90%;
            display: flex;
            align-items: center;
            margin-left: auto;
            margin-right: auto;
        }

        .mcp_breadcrumb-links {
            display: flex;
            align-items: center;
            color: var(--mcp_dark-gray);
            font-size: 14px;
        }

        .mcp_breadcrumb-links a {
            color: var(--mcp_dark-gray);
            text-decoration: none;
            transition: color 0.3s;
        }

        .mcp_breadcrumb-links a:hover {
            color: var(--mcp_primary-color);
        }

        .mcp_breadcrumb-links span {
            margin: 0 8px;
        }

        .mcp_order-history-btn {
            background-color: var(--mcp_primary-color);
            color: var(--mcp_white);
            border: none;
            padding: 10px 20px;
            margin-left: auto;
            margin-right: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }

        .mcp_order-history-btn:hover {
            background-color: var(--mcp_primary-dark);
        }

        /* Cart Content */
        .mcp_cart-container {
            display: flex;
            padding: 30px 5%;
            gap: 30px;
        }

        .mcp_cart-items {
            flex: 2;
            background-color: var(--mcp_white);
           
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 30px;
        }

        .mcp_cart-summary {
            flex: 1;
            background-color: var(--mcp_white);
          
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 30px;
            align-self: flex-start;
        }

        .mcp_cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--mcp_light-gray);
        }

        .mcp_cart-title {
            font-size: 20px;
            font-weight: 700;
        }
.mcp_item-count-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}
        .mcp_item-count {
            background-color: var(--mcp_primary-color);
            color: var(--white);
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 14px;
            font-weight: bold;
        }

        /* .cart-item {
            background-color: #DEDEDE;
            display: flex;
            margin-bottom: 20px;
            border-bottom: 1px solid var(--light-gray);
        } */

        .mcp_item-image {
            width: 100px;
            height: 100px;
            object-fit: cover;
         
            border-radius: 10px;
            border: 1px solid var(--mcp_light-gray);
        }

        /* .item-details {
            flex: 1;
        }

        .item-name {
            font-weight: 700;
            margin-bottom: 5px;
        }

        .item-dimensions {
            font-size: 14px;
            color: var(--dark-gray);
            margin-bottom: 5px;
        }

        .item-category {
            font-size: 14px;
            color: var(--dark-gray);
            margin-bottom: 10px;
        }

        .item-price {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .quantity-control {
            display: flex;
            align-items: center;
        }

        .quantity-btn {
            background-color: white;
            border: none;
            width: 30px;
            height: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-size: 16px;
        }

        .quantity-input {
            width: 50px;
            text-align: center;
            border: 1px solid var(--light-gray);
            height: 30px;
            margin: 0 5px;
        }

        .remove-item {
            color: var(--dark-gray);
            cursor: pointer;
            margin-left: auto;
            font-size: 18px;
        } */
/* Add these styles to your CSS */
.mcp_cart-item {
    display: flex;
    background-color: #DEDEDE;
    margin-bottom: 10px;
    padding: 15px;
   
}

.mcp_item-col-1 {
    flex: 0 0 100px;
    
}

.mcp_item-col-2 {
    flex: 1;
    padding: 20px;
}

.mcp_item-col-3 {
    flex: 0 0 100px;
    text-align: center;
    padding: 20px;
}

.mcp_item-col-4 {
    flex: 0 0 150px;
    padding: 20px;
}

.mcp_item-col-5 {
    flex: 0 0 50px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.mcp_item-name {
    font-weight: 700;
    margin-bottom: 5px;
}

.mcp_item-dimensions {
    font-size: 14px;
    color: var(--mcp_dark-gray);
    margin-bottom: 5px;
}

.mcp_item-category {
    font-size: 14px;
    color: var(--mcp_dark-gray);
}

.mcp_item-price {
    color: var(--mcp_primary-color);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 28px;
}

.mcp_item-unit {
    font-size: 14px;
    color: black;
    padding-bottom: 10px;
}

.mcp_quantity-label {
    font-size: 14px;
    color: black;
    padding-bottom: 10px;
    padding-left: 30px;
}

.mcp_quantity-control {
    display: flex;
    align-items: center;
}

.mcp_quantity-btn {
    background-color: white;
    color: #22A61E;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
  
}

.mcp_quantity-input {
    width: 50px;
     border: none;
    text-align: center;
    border: 1px solid var(--mcp_light-gray);
    height: 32px;
   
  
}

.mcp_remove-item {
    color: var(--mcp_dark-gray);
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
}

.mcp_remove-item:hover {
    color: #ff0000;
}
        .mcp_continue-shopping {
            display: inline-flex;
            align-items: center;
            background-color: var(--mcp_primary-color);
            color: var(--mcp_white);
            border: none;
            padding: 10px 20px;
          
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            margin-top: 20px;
        }

        .mcp_continue-shopping:hover {
            background-color: var(--mcp_primary-dark);
        }

        .mcp_continue-shopping i {
            margin-right: 10px;
        }

        /* Payment Summary */
        .mcp_payment-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--mcp_light-gray);
        }

        .mcp_payment-method {
            margin-bottom: 30px;
        }

        .mcp_payment-method-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .mcp_payment-option {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 15px;
            border: 1px solid var(--mcp_light-gray);
         
            cursor: pointer;
            transition: all 0.3s;
        }

        .mcp_payment-option:hover {
            border-color: var(--mcp_primary-color);
        }

        .mcp_payment-option input {
            margin-right: 15px;
        }

        .mcp_payment-icon {
            margin-right: 15px;
            font-size: 24px;
            color: var(--mcp_dark-gray);
        }

        .mcp_payment-option.mcp_active {
            border-color: var(--mcp_primary-color);
            background-color: rgba(34, 166, 30, 0.05);
        }

        .mcp_bill-details {
            margin-top: 30px;
            border-top: 1px solid var(--mcp_light-gray);
            padding-top: 20px;
        }

        .mcp_bill-title {
            text-align: center;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .mcp_bill-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .mcp_bill-label {
            color: var(--mcp_dark-gray);
        }

        .mcp_bill-amount {
            font-weight: 600;
        }

        .mcp_addon-amount {
            color: var(--mcp_primary-color);
        }

        .mcp_delivery-amount {
            color: var(--mcp_dark-gray);
        }

        .mcp_dotted-line {
            border-top: 1px dashed var(--mcp_dark-gray);
            margin: 15px 0;
        }

        .mcp_total-amount {
            font-weight: 700;
            font-size: 18px;
        }

        .mcp_total-price {
            color: var(--mcp_primary-color);
            font-weight: 700;
            font-size: 18px;
        }

        .mcp_checkout-btn {
            width: 100%;
            background-color: var(--mcp_primary-color);
            color: var(--mcp_white);
            border: none;
            padding: 15px;
       
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 20px;
        }

        .mcp_checkout-btn:hover {
            background-color: var(--mcp_primary-dark);
        }

        /* Footer */
        .mcp_footer {
            background-color: #0E420C;
            color: var(--mcp_white);
            padding: 60px 5% 30px;
        }

        .mcp_footer-container {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .mcp_footer-col {
            flex: 1 1 200px;
        }

        .mcp_footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--mcp_white);
            margin-bottom: 20px;
            display: block;
            text-decoration: none;
        }

        .mcp_footer-contact {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mcp_footer-contact i {
            color: #ffffff;
        }

        .mcp_footer-links h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--mcp_white);
        }

        .mcp_footer-links li {
            margin-bottom: 20px;
        }
        
        .mcp_footer-col ul {
            margin-top: 30px;
            margin-left: 40px;
        }
        
        .mcp_footer-col ul li {
            margin-bottom: 10px;
        }
        
        .mcp_footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }

        .mcp_footer-links a:hover {
            color: var(--mcp_primary-color);
        }

        .mcp_newsletter h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--mcp_white);
        }

        .mcp_newsletter-form {
            display: flex;
            margin-bottom: 20px;
        }

        .mcp_newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            font-size: 14px;
            background-color: white;
        }

        .mcp_newsletter-btn {
            background-color: var(--mcp_primary-color);
            color: var(--mcp_white);
            border: none;
            padding: 0 20px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .mcp_newsletter-btn:hover {
            background-color: var(--mcp_primary-dark);
        }

        .mcp_social-links {
            display: flex;
            gap: 15px;
        }

        .mcp_social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            margin: 5px;
            background-color: #e0e0e0;
            color: #000000;
            border-radius: 50%;
            text-decoration: none;
            font-size: 18px;
            transition: background-color 0.3s, color 0.3s;
        }

        .mcp_social-links a:hover {
            background-color: #c0c0c0;
            color: #000;
        }

        .mcp_footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #bbb;
            font-size: 14px;
        }
        
        .mcp_footer_links {
            list-style: none;
            text-decoration: none;
            color: #ffffff;
        }
        
        .mcp_company_name a {
            color: white;
            text-decoration: none;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .mcp_cart-container {
                flex-direction: column;
            }
            
            .mcp_cart-summary {
                margin-top: 30px;
            }
        }

        @media (max-width: 768px) {
            .mcp_header {
                padding: 15px 20px;
            }
            
            .mcp_nav {
                position: fixed;
                top: 70px;
                right: -250px;
                width: 250px;
                background-color: var(--mcp_white);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 20px;
                transition: right 0.3s;
                z-index: 999;
                height: 100%;
            }
            
            .mcp_nav.mcp_active {
                right: 0;
            }
            
            .mcp_nav ul {
                flex-direction: column;
            }
            
            .mcp_nav ul li {
                margin: 15px 0;
            }
            
            .mcp_mobile-menu {
                display: block;
            }
            
            .mcp_breadcrumb {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .mcp_cart-item {
                flex-direction: column;
            }
            
            .mcp_item-image {
                margin-bottom: 15px;
            }
            
            .mcp_remove-item {
                margin-top: 15px;
                align-self: flex-end;
            }
        }

        @media (max-width: 576px) {
            .mcp_breadcrumb {
                padding-top: 100px;
            }
            
            .mcp_cart-items, .mcp_cart-summary {
                padding: 20px;
            }
            
            .mcp_payment-option {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .mcp_payment-icon {
                margin-bottom: 10px;
            }
            
            .mcp_footer-col {
                flex: 1 1 100%;
                margin-bottom: 30px;
            }
            
            .mcp_newsletter-form {
                flex-direction: column;
            }
            
            .mcp_newsletter-input {
                border-radius: 4px;
                margin-bottom: 10px;
            }
            
            .mcp_newsletter-btn {
                border-radius: 4px;
                padding: 12px;
            }
        }
        /* Scroll to Top Button */
.mcp_scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--mcp_primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mcp_scroll-top.mcp_active {
    opacity: 1;
    visibility: visible;
}

.mcp_scroll-top:hover {
    background-color: var(--mcp_primary-dark);
    transform: translateY(-3px);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .mcp_scroll-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
    .mcp_cart-container {
        padding: 30px 3%;
    }
    
    .mcp_cart-items,
    .mcp_cart-summary {
        padding: 25px;
    }
    
    .mcp_item-col-3 {
        flex: 0 0 90px;
    }
    
    .mcp_item-col-4 {
        flex: 0 0 130px;
    }
}

@media (max-width: 992px) {
    .mcp_cart-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .mcp_cart-summary {
        margin-top: 0;
    }
    
    .mcp_breadcrumb {
        margin-top: 100px !important;
    }
}

@media (max-width: 768px) {
    .mcp_breadcrumb {
        width: 100%;
        border-radius: 0;
        padding: 12px 15px;
    }
    
    .mcp_order-history-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .mcp_cart-item {
        flex-wrap: wrap;
        position: relative;
        padding: 15px;
    }
    
    .mcp_item-col-1 {
        flex: 0 0 80px;
    }
    
    .mcp_item-col-2 {
        flex: 1;
        padding: 0 15px;
        min-width: calc(100% - 80px - 50px);
    }
    
    .mcp_item-col-3 {
        flex: 0 0 100%;
        text-align: left;
        padding: 15px 0 0 0;
        order: 4;
        display: flex;
        justify-content: space-between;
    }
    
    .mcp_item-col-4 {
        flex: 0 0 100%;
        padding: 15px 0;
        order: 5;
    }
    
    .mcp_item-col-5 {
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    .mcp_quantity-label {
        padding-left: 0;
    }
    
    .mcp_quantity-control {
        justify-content: flex-start;
    }
    
    .mcp_payment-option {
        padding: 12px;
    }
    
    .mcp_payment-icon {
        font-size: 20px;
        margin-right: 12px;
    }
}

@media (max-width: 576px) {
    .mcp_breadcrumb {
        margin-top: 90px !important;
        padding: 10px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .mcp_order-history-btn {
        width: 100%;
        text-align: center;
        margin: 5px 0 0 0;
    }
    
    .mcp_cart-container {
        padding: 20px 15px;
    }
    
    .mcp_cart-items,
    .mcp_cart-summary {
        padding: 20px;
    }
    
    .mcp_cart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .mcp_item-image {
        width: 70px;
        height: 70px;
    }
    
    .mcp_item-col-1 {
        flex: 0 0 70px;
    }
    
    .mcp_item-col-2 {
        min-width: calc(100% - 70px - 40px);
    }
    
    .mcp_item-name {
        font-size: 16px;
    }
    
    .mcp_item-dimensions,
    .mcp_item-category,
    .mcp_item-unit {
        font-size: 13px;
    }
    
    .mcp_item-price {
        font-size: 24px;
    }
    
    .mcp_payment-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .mcp_payment-option div {
        margin-left: 0;
    }
    
    .mcp_payment-option h4 {
        font-size: 16px;
    }
    
    .mcp_payment-option p {
        font-size: 13px;
    }
    
    .mcp_checkout-btn {
        padding: 12px;
        font-size: 15px;
    }
    
    .mcp_continue-shopping {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .mcp_cart-items,
    .mcp_cart-summary {
        padding: 15px;
    }
    
    .mcp_item-image {
        width: 60px;
        height: 60px;
    }
    
    .mcp_item-col-1 {
        flex: 0 0 60px;
    }
    
    .mcp_item-col-2 {
        min-width: calc(100% - 60px - 40px);
    }
    
    .mcp_item-name {
        font-size: 15px;
    }
    
    .mcp_item-price {
        font-size: 22px;
    }
    
    .mcp_quantity-btn {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    
    .mcp_quantity-input {
        width: 40px;
        height: 28px;
    }
}
/* order history styles */
 :root {
            --op_primary-color: #22A61E;
            --op_primary-dark: #1f6b3d;
            --op_text-color: #333;
            --op_light-bg: #f9f9f9;
            --op_white: #ffffff;
            --op_gray: #f0f0f0;
            --op_dark-gray: #777;
            --op_light-gray: #e0e0e0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box; 
              font-weight: 500;
            font-family: 'Cabinet Grotesk', sans-serif; 
            list-style: none;
        }

        .op_body {
            color: var(--op_text-color);
            overflow-x: hidden;
            background-color: #F0FCF0;
        }

        /* Header Styles */
        .op_header {
            background-color: var(--op_white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .op_logo {
            color: var(--op_primary-color);
            font-size: 24px;
            font-weight: 700;
            text-decoration: none;
            width: 137.52px;
        }
        
        .op_nav {
            margin-left: auto;
        }
        
        .op_nav ul {
            display: flex;
            list-style: none;
            margin-right: auto;
        }

        .op_nav ul li {
            margin-left: 30px;
        }

        .op_nav ul li a {
            text-decoration: none;
            color: var(--op_text-color);
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s;
        }

        .op_nav ul li a:hover {
            color: var(--op_primary-color);
        }

        .op_nav ul li a.op_active {
            color: var(--op_primary-color);
        }

        .op_nav ul li a.op_active::after,
        .op_nav ul li a:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--op_primary-color);
        }

        .op_header-icons {
            display: flex;
            align-items: center;
        }

        .op_header-icons a {
            margin-left: 15px;
            color: var(--op_white);
            font-size: 16px;
            transition: all 0.3s;
            background-color: var(--op_primary-color);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .op_header-icons a:hover {
            background-color: var(--op_primary-dark);
            color: var(--op_white);
        }

        .op_cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: var(--op_white);
            color: var(--op_primary-color);
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            font-weight: bold;
        }

        .op_cart-icon {
            position: relative;
        }

        .op_mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Breadcrumb */
        .op_breadcrumb {
            margin-top: 120px!important; 
            padding: 12px 0px 12px 20px;
            background-color: var(--op_white);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            width: 90%;
            display: flex;
            align-items: center;
            margin-left: auto;
            margin-right: auto;
        }

        .op_breadcrumb-links {
            display: flex;
            align-items: center;
            color: var(--op_dark-gray);
            font-size: 14px;
        }

        .op_breadcrumb-links a {
            color: var(--op_dark-gray);
            text-decoration: none;
            transition: color 0.3s;
        }

        .op_breadcrumb-links a:hover {
            color: var(--op_primary-color);
        }

        .op_breadcrumb-links span {
            margin: 0 8px;
        }

        /* Order History Section */
        .op_order-history-container {
            width: 90%;
            margin: 30px auto;
            background-color: var(--op_white);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 30px;
        }

        .op_order-history-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--op_text-color);
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--op_light-gray);
        }

        .op_order-header {
            display: flex;
            justify-content: space-between;
            background-color: var(--op_gray);
            padding: 15px 20px;
            font-weight: 600;
            border: 1px solid var(--op_light-gray);
            border-bottom: none;
        }

        .op_order-header div {
            flex: 1;
            text-align: center;
        }

        .op_order-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            border: 1px solid var(--op_light-gray);
            border-top: none;
            transition: all 0.3s;
        }

        .op_order-item:hover {
            background-color: var(--op_light-bg);
        }

        .op_order-item div {
            flex: 1;
            text-align: center;
        }

        .op_order-id {
            font-weight: 600;
            color: var(--op_primary-dark);
        }

        .op_order-date, .op_delivery-date {
            color: var(--op_dark-gray);
        }

        .op_order-status {
            padding: 5px 10px;
            font-size: 12px;
            font-weight: 600;
            display: inline-block;
        }

        .op_status-delivered {
            background-color: var(--op_primary-color);
            color: var(--op_white);
        }

        .op_status-pending {
            background-color: #FFA500;
            color: var(--op_white);
        }

        .op_status-cancelled {
            background-color: #FF0000;
            color: var(--op_white);
        }

        .op_action-btn {
            padding: 8px 15px;
            background-color: #1E90FF;
            color: var(--op_white);
            border: none;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
        }

        .op_action-btn:hover {
            background-color: #187bcd;
        }

        .op_order-details {
            padding: 20px;
            border: 1px solid var(--op_light-gray);
            border-top: none;
            display: none;
            background-color: var(--op_light-bg);
        }

        .op_order-details-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--op_text-color);
            display: flex;
            align-items: center;
        }

        .op_order-details-title::before {
            content: "";
            display: inline-block;
            width: 15px;
            height: 15px;
            background-color: var(--op_primary-color);
            margin-right: 10px;
        }

        .op_order-items-separator {
            border-top: 1px dashed var(--op_dark-gray);
            margin: 15px 0;
            opacity: 0.3;
        }

        /* Updated Order Items Styles (from cart page) */
   /* Updated Order Items Container */
.op_order-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}
@media (max-width: 992px) {
    .op_order-items {
        grid-template-columns: 1fr;
    }
}/* Responsive adjustments */
@media (max-width: 1200px) {
    .op_order-items {
        grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
    }
}

/* Updated Order Product Card */
.op_order-product {
    display: flex;
    background-color: #DEDEDE;
    padding: 15px;
    height: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    min-width: 0; /* Prevent overflow */
}

/* Ensure content stays within cards */
.op_order-product > div {
    flex: 1;
    min-width: 0; /* Prevent text overflow */
    overflow: hidden;
}
/* Text elements */
.op_item-name, .op_item-dimensions, .op_item-category, .op_item-price {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 768px) {
    .op_order-product {
        flex-direction: column;
    }
    
    .op_item-col-1 {
        margin-bottom: 15px;
    }
    
    .op_item-col-5 {
        justify-content: flex-start;
    }
    
    /* Allow text to wrap on mobile */
    .op_item-name, .op_item-dimensions, .op_item-category, .op_item-price {
        white-space: normal;
    }
}
        .op_item-col-1 {
            flex: 0 0 100px;
        }

        .op_item-col-2 {
            flex: 1;
            padding: 20px;
        }

        .op_item-col-3 {
            flex: 0 0 100px;
            text-align: center;
            padding: 20px;
        }

        .op_item-col-4 {
            flex: 0 0 150px;
            padding: 20px;
        }

        .op_item-col-5 {
            flex: 0 0 50px;
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
        }

        .op_item-name {
            font-weight: 700;
            margin-bottom: 5px;
        }

        .op_item-dimensions {
            font-size: 14px;
            color: var(--op_dark-gray);
            margin-bottom: 5px;
        }

        .op_item-category {
            font-size: 14px;
            color: var(--op_dark-gray);
        }

        .op_item-price {
            color: var(--op_primary-color);
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 28px;
        }

        .op_item-unit {
            font-size: 14px;
            color: black;
            padding-bottom: 10px;
        }

        .op_quantity-label {
            font-size: 14px;
            color: black;
            padding-bottom: 10px;
        }

        .op_product-image {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 10px;
            border: 1px solid var(--op_light-gray);
        }

        /* Order Summary */
        .op_order-summary {
            margin-top: 20px;
            padding: 20px;
            background-color: var(--op_white);
            border: 1px solid var(--op_light-gray);
        }

        .op_summary-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--op_primary-dark);
        }

        .op_summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--op_light-gray);
        }

        .op_summary-label {
            color: var(--op_dark-gray);
        }

        .op_summary-value {
            font-weight: 600;
        }

        .op_summary-total {
            font-size: 18px;
            color: var(--op_primary-dark);
            font-weight: 700;
        }

        /* Footer */
        .op_footer {
            background-color: #0E420C;
            color: var(--op_white);
            padding: 60px 5% 30px;
        }

        .op_footer-container {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .op_footer-col {
            flex: 1 1 200px;
        }

        .op_footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--op_white);
            margin-bottom: 20px;
            display: block;
            text-decoration: none;
        }

        .op_footer-contact {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .op_footer-contact i {
            color: #ffffff;
        }

        .op_footer-links h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--op_white);
        }

        .op_footer-links li {
            margin-bottom: 20px;
        }
        
        .op_footer-col ul {
            margin-top: 30px;
            margin-left: 40px;
        }
        
        .op_footer-col ul li {
            margin-bottom: 10px;
        }
        
        .op_footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }

        .op_footer-links a:hover {
            color: var(--op_primary-color);
        }

        .op_newsletter h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--op_white);
        }

        .op_newsletter-form {
            display: flex;
            margin-bottom: 20px;
        }

        .op_newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            font-size: 14px;
            background-color: white;
        }

        .op_newsletter-btn {
            background-color: var(--op_primary-color);
            color: var(--op_white);
            border: none;
            padding: 0 20px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .op_newsletter-btn:hover {
            background-color: var(--op_primary-dark);
        }

        .op_social-links {
            display: flex;
            gap: 15px;
        }

        .op_social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            margin: 5px;
            background-color: #e0e0e0;
            color: #000000;
            border-radius: 50%;
            text-decoration: none;
            font-size: 18px;
            transition: background-color 0.3s, color 0.3s;
        }

        .op_social-links a:hover {
            background-color: #c0c0c0;
            color: #000;
        }

        .op_footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #bbb;
            font-size: 14px;
        }
        
        .op_footer_links {
            list-style: none;
            text-decoration: none;
            color: #ffffff;
        }
        
        .op_company_name a {
            color: white;
            text-decoration: none;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .op_order-product {
                flex: 1 1 100%;
            }
        }

        @media (max-width: 992px) {
            .op_order-header {
                display: none;
            }
            
            .op_order-item {
                flex-wrap: wrap;
                position: relative;
                padding-top: 50px;
            }
            
            .op_order-item::before {
                content: attr(data-label);
                position: absolute;
                top: 15px;
                left: 20px;
                font-weight: 600;
                width: 100px;
            }
            
            .op_order-item div {
                flex: 1 1 50%;
                text-align: left;
                padding-left: 120px;
                margin-bottom: 10px;
            }
            
            .op_order-status, .op_action-btn {
                margin-left: 120px;
            }
        }

        @media (max-width: 768px) {
            .op_header {
                padding: 15px 20px;
            }
            
            .op_nav {
                position: fixed;
                top: 70px;
                right: -250px;
                width: 250px;
                background-color: var(--op_white);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 20px;
                transition: right 0.3s;
                z-index: 999;
                height: calc(100vh - 70px);
            }
            
            .op_nav.op_active {
                right: 0;
            }
            
            .op_nav ul {
                flex-direction: column;
            }
            
            .op_nav ul li {
                margin: 15px 0;
            }
            
            .op_mobile-menu {
                display: block;
            }
            
            .op_order-item div {
                flex: 1 1 100%;
                padding-left: 0;
            }
            
            .op_order-status, .op_action-btn {
                margin-left: 0;
            }

            /* Updated responsive styles for order items */
            .op_order-product {
                flex-direction: column;
            }

            .op_item-col-1, 
            .op_item-col-2, 
            .op_item-col-3, 
            .op_item-col-4, 
            .op_item-col-5 {
                flex: 1 1 100%;
                padding: 10px;
                text-align: left;
            }

            .op_item-col-1 {
                margin-bottom: 15px;
            }

            .op_item-col-5 {
                justify-content: flex-start;
            }
        }

        @media (max-width: 576px) {
            .op_breadcrumb {
                padding-top: 100px;
            }
            
            .op_order-history-container {
                padding: 20px;
            }
            
            .op_order-history-title {
                font-size: 20px;
            }
            
            .op_order-item {
                padding-top: 80px;
            }
            
            .op_order-item::before {
                width: 80px;
            }
            
            .op_footer-col {
                flex: 1 1 100%;
                margin-bottom: 30px;
            }
            
            .op_newsletter-form {
                flex-direction: column;
            }
            
            .op_newsletter-input {
                margin-bottom: 10px;
            }
            
            .op_newsletter-btn {
                padding: 12px;
            }
        }/* Scroll to Top Button */
.op_scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--op_primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.op_scroll-top.op_active {
    opacity: 1;
    visibility: visible;
}

.op_scroll-top:hover {
    background-color: var(--op_primary-dark);
    transform: translateY(-3px);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .op_scroll-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }
}

/* privacy policy styles */
:root {
            --priv_primary-color: #22A61E;
            --priv_primary-dark: #1f6b3d;
            --priv_text-color: #333;
            --priv_light-bg: #f9f9f9;
            --priv_white: #ffffff;
            --priv_gray: #f0f0f0;
            --priv_dark-gray: #EDEDED;
            --priv_light-gray: #e0e0e0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box; 
            font-family: 'Cabinet Grotesk', sans-serif; 
            font-weight: 500;
            list-style: none;
        }

        .priv_body {
            color: var(--priv_text-color);
            overflow-x: hidden;
            background-color: #F0FCF0;
        }

        /* Header Styles */
        .priv_header {
            background-color: var(--priv_white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .priv_logo {
            color: var(--priv_primary-color);
            font-size: 24px;
            font-weight: 700;
            text-decoration: none;
            width: 137.52px;
        }
        
        .priv_nav {
            margin-left: auto;
        }
        
        .priv_nav ul {
            display: flex;
            list-style: none;
            margin-right: auto;
        }

        .priv_nav ul li {
            margin-left: 30px;
        }

        .priv_nav ul li a {
            text-decoration: none;
            color: var(--priv_text-color);
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s;
        }

        .priv_nav ul li a:hover {
            color: var(--priv_primary-color);
        }

        .priv_nav ul li a.priv_active {
            color: var(--priv_primary-color);
        }

        .priv_nav ul li a.priv_active::after,
        .priv_nav ul li a:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--priv_primary-color);
        }

        .priv_header-icons {
            display: flex;
            align-items: center;
        }

        .priv_header-icons a {
            margin-left: 15px;
            color: var(--priv_white);
            font-size: 16px;
            transition: all 0.3s;
            background-color: var(--priv_primary-color);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .priv_header-icons a:hover {
            background-color: var(--priv_primary-dark);
            color: var(--priv_white);
        }

        .priv_cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: var(--priv_white);
            color: var(--priv_primary-color);
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            font-weight: bold;
        }

        .priv_cart-icon {
            position: relative;
        }

        .priv_mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Breadcrumb */
        .priv_breadcrumb {
            margin-top: 120px!important; 
            padding: 12px 0px 12px 20px;
            background-color: var(--priv_white);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            width: 90%;
            display: flex;
            align-items: center;
            margin-left: auto;
            margin-right: auto;
        }

        .priv_breadcrumb-links {
            display: flex;
            align-items: center;
            color:grey;
            font-size: 14px;
        }

        .priv_breadcrumb-links a {
            color: grey;
            text-decoration: none;
            transition: color 0.3s;
        }

        .priv_breadcrumb-links a:hover {
            color: var(--priv_primary-color);
        }

        .priv_breadcrumb-links span {
            margin: 0 8px;
        }

        /* Main Content Layout */
        .priv_main-content {
            display: flex;
            width: 90%;
            max-width: 1400px;
            margin: 40px auto;
            position: relative;
        }

        /* Sidebar Navigation */
        .priv_privacy-sidebar {
            width: 280px;
            position: sticky;
            top: 120px;
            height: fit-content;
            margin-right: 40px;
            background-color: var(--priv_white);
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 25px;
            align-self: flex-start;
        }

        .priv_sidebar-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--priv_primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--priv_light-gray);
        }

        .priv_sidebar-nav {
            display: flex;
            flex-direction: column;
        }

        .priv_sidebar-link {
            padding: 12px 15px;
            margin-bottom: 8px;
            color: var(--priv_text-color);
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 15px;
            display: flex;
            align-items: center;
        }

        .priv_sidebar-link:hover {
            background-color: rgba(34, 166, 30, 0.1);
            color: var(--priv_primary-color);
        }

        .priv_sidebar-link.priv_active {
            background-color: rgba(34, 166, 30, 0.1);
            color: var(--priv_primary-color);
            font-weight: 600;
        }

        .priv_sidebar-link i {
            margin-right: 10px;
            font-size: 14px;
        }

        /* Privacy Policy Content */
        .priv_privacy-container {
            flex: 1;
            background-color: var(--priv_white);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-radius: 8px;
            overflow: hidden;
            padding: 50px;
        }

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

        .priv_privacy-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--priv_text-color);
            margin-bottom: 15px;
        }

        .priv_effective-date {
            color: var(--priv_primary-color);
            font-size: 16px;
            margin-bottom: 20px;
        }

        .priv_privacy-intro {
            font-size: 16px;
            line-height: 1.6;
            color: var(--priv_text-color);
            max-width: 800px;
            margin: 0 auto;
        }

        .priv_privacy-section {
            margin-bottom: 30px;
            scroll-margin-top: 120px;
        }

        .priv_section-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--priv_primary-color);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--priv_light-gray);
            display: flex;
            align-items: center;
        }

        .priv_section-title i {
            margin-right: 10px;
            font-size: 20px;
        }

        .priv_section-content {
            font-size: 16px;
            line-height: 1.7;
            color: var(--priv_text-color);
        }

        .priv_section-content p {
            margin-bottom: 15px;
        }

        .priv_highlight-box {
            background-color: var(--priv_light-bg);
            border-left: 4px solid var(--priv_primary-color);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 4px 4px 0;
        }

        .priv_contact-info {
            margin-top: 30px;
            padding: 20px;
            background-color: var(--priv_light-bg);
            border-radius: 8px;
        }

        .priv_contact-info p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .priv_contact-info i {
            margin-right: 10px;
            color: var(--priv_primary-color);
        }

        ul.priv_privacy-list {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        ul.priv_privacy-list li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 25px;
        }

        ul.priv_privacy-list li:before {
            content: "•";
            color: var(--priv_primary-color);
            font-size: 20px;
            position: absolute;
            left: 0;
            top: -2px;
        }

        /* Scroll to Top Button */
        .priv_scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--priv_primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .priv_scroll-top.priv_active {
            opacity: 1;
            visibility: visible;
        }

        .priv_scroll-top:hover {
            background-color: var(--priv_primary-dark);
            transform: translateY(-3px);
        }

        /* Footer */
        .priv_footer {
            background-color: #0E420C;
            color: var(--priv_white);
            padding: 60px 5% 30px;
        }

        .priv_footer-container {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .priv_footer-col {
            flex: 1 1 200px;
        }

        .priv_footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--priv_white);
            margin-bottom: 20px;
            display: block;
            text-decoration: none;
        }

        .priv_footer-contact {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .priv_footer-contact i {
            color: #ffffff;
        }

        .priv_footer-links h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--priv_white);
        }

        .priv_footer-col ul {
            margin-top: 30px;
            margin-left: 40px;
        }

        .priv_footer-col ul li {
            margin-bottom: 10px;
        }

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

        .priv_footer-links a:hover {
            color: var(--priv_primary-color);
        }

        .priv_newsletter h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--priv_white);
        }

        .priv_newsletter-form {
            display: flex;
            margin-bottom: 20px;
        }

        .priv_newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            font-size: 14px;
            background-color: white;
        }

        .priv_newsletter-btn {
            background-color: var(--priv_primary-color);
            color: var(--priv_white);
            border: none;
            padding: 0 20px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .priv_newsletter-btn:hover {
            background-color: var(--priv_primary-dark);
        }

        .priv_social-links {
            display: flex;
            gap: 15px;
        }

        .priv_social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            margin: 5px;
            background-color: #e0e0e0;
            color: #000000;
            border-radius: 50%;
            text-decoration: none;
            font-size: 18px;
            transition: background-color 0.3s, color 0.3s;
        }

        .priv_social-links a:hover {
            background-color: #c0c0c0;
            color: #000;
        }

        .priv_footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #bbb;
            font-size: 14px;
        }

        .priv_footer_links {
            list-style: none;
            text-decoration: none;
            color: #ffffff;
        }

        .priv_company_name a {
            color: white;
            text-decoration: none;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .priv_privacy-sidebar {
                width: 240px;
                margin-right: 30px;
            }
        }

        @media (max-width: 992px) {
            .priv_main-content {
                flex-direction: column;
            }
            
            .priv_privacy-sidebar {
                width: 100%;
                position: static;
                margin-right: 0;
                margin-bottom: 30px;
            }
            
            .priv_privacy-container {
                padding: 40px 30px;
            }
        }

        @media (max-width: 768px) {
            .priv_header {
                padding: 15px 20px;
            }
            
            .priv_nav {
                position: fixed;
                top: 70px;
                right: -250px;
                width: 250px;
                background-color: var(--priv_white);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 20px;
                transition: right 0.3s;
                z-index: 999;
                height: calc(100vh - 70px);
            }
            
            .priv_nav.priv_active {
                right: 0;
            }
            
            .priv_nav ul {
                flex-direction: column;
            }
            
            .priv_nav ul li {
                margin: 15px 0;
            }
            
            .priv_mobile-menu {
                display: block;
            }
            
            .priv_privacy-title {
                font-size: 28px;
            }
            
            .priv_section-title {
                font-size: 22px;
            }
            
            .priv_scroll-top {
                width: 45px;
                height: 45px;
                font-size: 18px;
                bottom: 20px;
                right: 20px;
            }
        }

        @media (max-width: 576px) {
            .priv_breadcrumb {
                padding-top: 100px;
            }
            
            .priv_privacy-container {
                padding: 30px 20px;
                width: 95%;
            }
            
            .priv_privacy-title {
                font-size: 24px;
            }
            
            .priv_section-title {
                font-size: 20px;
            }
            
            .priv_footer-col {
                flex: 1 1 100%;
                margin-bottom: 30px;
            }
            
            .priv_newsletter-form {
                flex-direction: column;
            }
            
            .priv_newsletter-input {
                border-radius: 4px;
                margin-bottom: 10px;
            }
            
            .priv_newsletter-btn {
                border-radius: 4px;
                padding: 12px;
            }
        }

/* product details page styles  */
    :root {
            --pd_primary-color: #22A61E;
            --pd_primary-dark: #1f6b3d;
            --pd_text-color: #333;
            --pd_light-bg: #f9f9f9;
            --pd_white: #ffffff;
            --pd_gray: #f0f0f0;
            --pd_dark-gray: #777;
            --pd_light-gray: #e0e0e0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box; 
            font-weight: 500;
            font-family: 'Cabinet Grotesk', sans-serif; 
            list-style: none;
        }

        .pd_body {
            color: var(--pd_text-color);
            overflow-x: hidden;
            background-color: #F0FCF0;
        }

        /* Header Styles */
        .pd_header {
            background-color: var(--pd_white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .pd_logo {
            color: var(--pd_primary-color);
            font-size: 24px;
            font-weight: 700;
            text-decoration: none;
            width: 137.52px;
        }
        
        .pd_nav {
            margin-left: auto;
        }
        
        .pd_nav ul {
            display: flex;
            list-style: none;
            margin-right: auto;
        }

        .pd_nav ul li {
            margin-left: 30px;
        }

        .pd_nav ul li a {
            text-decoration: none;
            color: var(--pd_text-color);
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s;
        }

        .pd_nav ul li a:hover {
            color: var(--pd_primary-color);
        }

        .pd_nav ul li a.pd_active {
            color: var(--pd_primary-color);
        }

        .pd_nav ul li a.pd_active::after,
        .pd_nav ul li a:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--pd_primary-color);
        }

        .pd_header-icons {
            display: flex;
            align-items: center;
        }

        .pd_header-icons a {
            margin-left: 15px;
            color: var(--pd_white);
            font-size: 16px;
            transition: all 0.3s;
            background-color: var(--pd_primary-color);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .pd_header-icons a:hover {
            background-color: var(--pd_primary-dark);
            color: var(--pd_white);
        }

        .pd_cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: var(--pd_white);
            color: var(--pd_primary-color);
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            font-weight: bold;
        }

        .pd_cart-icon {
            position: relative;
        }

        .pd_mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Breadcrumb */
        .pd_breadcrumb {
            margin-top: 120px!important; 
            padding: 12px 0px 12px 20px;
            background-color: var(--pd_white);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            width: 90%;
            display: flex;
            align-items: center;
            margin-left: auto;
            margin-right: auto;
        }

        .pd_breadcrumb-links {
            display: flex;
            align-items: center;
            color: var(--pd_dark-gray);
            font-size: 14px;
        }

        .pd_breadcrumb-links a {
            color: var(--pd_dark-gray);
            text-decoration: none;
            transition: color 0.3s;
        }

        .pd_breadcrumb-links a:hover {
            color: var(--pd_primary-color);
        }

        .pd_breadcrumb-links span {
            margin: 0 8px;
        }

        /* Product Detail Section */
        .pd_product-detail-container {
            width: 90%;
            margin: 30px auto;
            background-color: var(--pd_white);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 30px;
        }

        .pd_product-detail {
            display: flex;
            gap: 40px;
        }

        .pd_product-images {
            flex: 1;
        }

        .pd_main-image {
            width: 100%;
            height: 500px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .pd_main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .pd_main-image:hover img {
            transform: scale(1.02);
        }

        .pd_thumbnail-container {
            display: flex;
            gap: 15px;
            justify-content:center;
        }

        .pd_thumbnail {
            width: 80px;
            height: 80px;
            border: 1px solid var(--pd_light-gray);
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
        }

        .pd_thumbnail:hover {
            border-color: var(--pd_primary-color);
        }

        .pd_thumbnail.pd_active {
            border-color: var(--pd_primary-color);
            box-shadow: 0 0 0 2px rgba(34, 166, 30, 0.3);
        }

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

        .pd_product-info {
            flex: 1;
        }

        .pd_product-info-card {
            background-color: #EBFFEA;
            padding: 30px;
            height: 100%;
        }

        .pd_product-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--pd_text-color);
        }

        .pd_product-description {
            color: var(--pd_dark-gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .pd_product-price {
            font-size: 32px;
            font-weight: 700;
            color: var(--pd_primary-color);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .pd_product_price {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .pd_price-unit {
            font-size: 14px;
            color: var(--pd_dark-gray);
            margin-left: 0%;
            font-weight: 400;
        }

        .pd_recyclable-badge {
            display: inline-block;
            color: var(--pd_primary-color);
            padding: 5px 10px;
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            margin-left: 35px;
            border: 1px solid grey;
        }

        .pd_product-rating {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .pd_stars {
            color: #FFC107;
            margin-right: 10px;
        }

        .pd_review-count {
            color: var(--pd_dark-gray);
            font-size: 14px;
        }

        .pd_size-selection {
            margin-bottom: 25px;
        }

        .pd_size-title {
            font-weight: 600;
            margin-bottom: 15px;
            text-align: center;
        }

        .pd_size-options {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .pd_size-option {
            flex: 0 1 150px;
            background-color: #ffffff;
        }

        .pd_size-radio {
            display: none;
        }

        .pd_size-label {
            display: block;
            padding: 15px;
            border: 1px solid var(--pd_light-gray);
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
        }

        .pd_size-radio:checked + .pd_size-label {
            border-color: var(--pd_primary-color);
            background-color: rgba(34, 166, 30, 0.1);
        }

        .pd_size-radio:checked + .pd_size-label::before {
            content: '';
            position: absolute;
            top: 22px;
            left:7px;
            width: 15px;
            height: 15px;
            background-color: var(--pd_primary-color);
            border-radius: 50%;
            border: 2px solid var(--pd_white);
        }

        .pd_size-name {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .pd_size-dimensions {
            font-size: 12px;
            color: var(--pd_dark-gray);
        }

        .pd_action-buttons {
            display: flex;
            gap: 15px;
            margin: 30px 0;
        }

        .pd_btn {
            padding: 12px 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            flex: 1;
        }

        .pd_btn-primary {
            background-color: var(--pd_primary-color);
            color: var(--pd_white);
            border: none;
        }

        .pd_btn-primary:hover {
            background-color: var(--pd_primary-dark);
        }

        .pd_btn-outline {
            background-color: transparent;
            color: var(--pd_primary-color);
            border: 1px solid var(--pd_primary-color);
        }

        .pd_btn-outline:hover {
            background-color: rgba(34, 166, 30, 0.1);
        }

        .pd_product-details-section {
            margin-top: 10px;
            padding-top: 10px;
        }

        .pd_details-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--pd_primary-dark);
        }

        .pd_details-content {
            color: var(--pd_dark-gray);
            line-height: 1.6;
            font-size: 14px;
        }

        /* Related Products */
        .pd_related-products {
            width: 90%;
            margin: 50px auto;
        }

        .pd_section-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 30px;
            text-align: center;
        }

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

        .pd_product-item {
            background-color: var(--pd_white);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }

        .pd_product-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .pd_product-image-container {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .pd_product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .pd_product-item:hover .pd_product-image {
            transform: scale(1.05);
        }

        .pd_product-tag {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background-color: var(--pd_white);
            padding: 5px 10px;
            font-size: 12px;
            font-weight: 500;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .pd_product_info {
            padding: 15px;
        }
        
        .pd_product-name {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--pd_text-color);
        }

        .pd_price {
            color: var(--pd_primary-color);
            font-weight: 600;
            font-size: 18px;
        }

        .pd_add-to-cart {
            background-color: var(--pd_primary-color);
            color: var(--pd_white);
            border: none;
            padding: 8px 15px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .pd_add-to-cart:hover {
            background-color: var(--pd_primary-dark);
        }

        /* FAQ Section */
      /* FAQ Section - Mobile Responsive */
.pd_faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #ffffff;
    padding: 40px 20px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.pd_faq-content {
    flex: 1 1 100%;
    padding-top: 0;
    text-align: center;
}

.pd_faq-title {
    font-size: 28px;
    margin-bottom: 20px;
    margin-left: 0;
    width: 100%;
}

.pd_faq-accordion {
    flex: 1 1 100%;
}

.pd_accordion-item {
    margin-bottom: 15px;
    overflow: hidden;
}

.pd_accordion-header {
    background-color: #EBFFEA;
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
}

.pd_accordion-header:hover {
    background-color: #f0f0f0;
}

.pd_accordion-content {
    background-color: #ffffff;
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.pd_accordion-content p {
    padding: 12px 0;
    color: #777;
    line-height: 1.6;
    font-size: 14px;
}

.pd_accordion-item.pd_active .pd_accordion-content {
    max-height: 500px; /* Increased to accommodate longer content */
}

.pd_accordion-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #22A61E;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.pd_accordion-item.pd_active .pd_accordion-icon {
    transform: rotate(45deg);
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .pd_faq-container {
        padding: 80px;
        width: 90%;
        gap: 40px;
    }
    
    .pd_faq-content {
        flex: 1 1 400px;
        text-align: left;
    }
    
    .pd_faq-title {
        font-size: 36px;
        margin-left: auto;
    }
    
    .pd_faq-accordion {
        flex: 1 1 400px;
    }
    
    .pd_accordion-header {
        padding: 15px 20px;
        font-size: 18px;
    }
    
    .pd_accordion-content p {
        padding: 15px 0;
        font-size: 16px;
    }
    
    .pd_accordion-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .pd_faq-container {
        padding: 30px 15px;
    }
    
    .pd_faq-title {
        font-size: 24px;
    }
    
    .pd_accordion-header {
        padding: 10px 12px;
        font-size: 15px;
    }
    
    .pd_accordion-icon {
        width: 26px;
        height: 26px;
    }
}

        /* Footer */
        .pd_footer {
            background-color: #0E420C;
            color: var(--pd_white);
            padding: 60px 5% 30px;
        }

        .pd_footer-container {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .pd_footer-col {
            flex: 1 1 200px;
        }

        .pd_footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--pd_white);
            margin-bottom: 20px;
            display: block;
            text-decoration: none;
        }

        .pd_footer-contact {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pd_footer-contact i {
            color: #ffffff;
        }

        .pd_footer-links h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--pd_white);
        }

        .pd_footer-links li {
            margin-bottom: 20px;
        }
        
        .pd_footer-col ul {
            margin-top: 30px;
            margin-left: 40px;
        }
        
        .pd_footer-col ul li {
            margin-bottom: 10px;
        }
        
        .pd_footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }

        .pd_footer-links a:hover {
            color: var(--pd_primary-color);
        }

        .pd_newsletter h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--pd_white);
        }

        .pd_newsletter-form {
            display: flex;
            margin-bottom: 20px;
        }

        .pd_newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            font-size: 14px;
            background-color: white;
        }

        .pd_newsletter-btn {
            background-color: var(--pd_primary-color);
            color: var(--pd_white);
            border: none;
            padding: 0 20px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .pd_newsletter-btn:hover {
            background-color: var(--pd_primary-dark);
        }

        .pd_social-links {
            display: flex;
            gap: 15px;
        }

        .pd_social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            margin: 5px;
            background-color: #e0e0e0;
            color: #000000;
            border-radius: 50%;
            text-decoration: none;
            font-size: 18px;
            transition: background-color 0.3s, color 0.3s;
        }

        .pd_social-links a:hover {
            background-color: #c0c0c0;
            color: #000;
        }

        .pd_footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #bbb;
            font-size: 14px;
        }
        
        .pd_footer_links {
            list-style: none;
            text-decoration: none;
            color: #ffffff;
        }
        
        .pd_company_name a {
            color: white;
            text-decoration: none;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .pd_product-detail {
                flex-direction: column;
            }
            
            .pd_main-image {
                height: 400px;
            }
            
            .pd_product-info-card {
                margin-top: 30px;
            }
            
            .pd_faq-container {
                padding: 60px 30px;
            }
            
            .pd_faq-title {
                margin-left: 0;
                text-align: center;
            }
        }

        @media (max-width: 992px) {
            .pd_products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .pd_section-title {
                font-size: 30px;
            }
            
            .pd_faq-title {
                font-size: 30px;
            }
        }

        @media (max-width: 768px) {
            .pd_header {
                padding: 15px 20px;
            }
            
            .pd_nav {
                position: fixed;
                top: 70px;
                right: -250px;
                width: 250px;
                background-color: var(--pd_white);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 20px;
                transition: right 0.3s;
                z-index: 999;
                height: calc(100vh - 70px);
            }
            
            .pd_nav.pd_active {
                right: 0;
            }
            
            .pd_nav ul {
                flex-direction: column;
            }
            
            .pd_nav ul li {
                margin: 15px 0;
            }
            
            .pd_mobile-menu {
                display: block;
            }
            
            .pd_main-image {
                height: 350px;
            }
            
            .pd_size-options {
                flex-direction: column;
                align-items: center;
            }
            
            .pd_size-option {
                width: 100%;
                max-width: 200px;
            }
            
            .pd_action-buttons {
                flex-direction: column;
            }
            
            .pd_btn {
                width: 100%;
            }
            
            .pd_products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pd_section-title {
                font-size: 28px;
                margin-bottom: 40px;
            }
        }

        @media (max-width: 576px) {
            .pd_breadcrumb {
                padding-top: 100px;
            }
            
            .pd_product-detail-container {
                padding: 20px;
            }
            
            .pd_main-image {
                height: 250px;
            }
            
            .pd_thumbnail {
                width: 60px;
                height: 60px;
            }
            
            .pd_product-title {
                font-size: 24px;
            }
            
            .pd_product-price {
                font-size: 28px;
            }
            
            .pd_products-grid {
                grid-template-columns: 1fr;
            }
            
            .pd_section-title {
                font-size: 24px;
            }
            
            .pd_footer-col {
                flex: 1 1 100%;
                margin-bottom: 30px;
            }
            
            .pd_newsletter-form {
                flex-direction: column;
            }
            
            .pd_newsletter-input {
                margin-bottom: 10px;
            }
            
            .pd_newsletter-btn {
                padding: 12px;
            }
            
            .pd_faq-container {
                padding: 40px 20px;
                width: 100%;
            }
        }

        /* Scroll to Top Button */
        .pd_scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--pd_primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .pd_scroll-top.pd_active {
            opacity: 1;
            visibility: visible;
        }

        .pd_scroll-top:hover {
            background-color: var(--pd_primary-dark);
            transform: translateY(-3px);
        }

        /* Responsive adjustment */
        @media (max-width: 768px) {
            .pd_scroll-top {
                width: 45px;
                height: 45px;
                font-size: 18px;
                bottom: 20px;
                right: 20px;
            }
        }
/* Mobile Responsive Styles for Product Details Page */
@media (max-width: 768px) {
    /* Header adjustments */
    .pd_header {
        padding: 10px 15px;
        flex-wrap: nowrap;
    }

    .pd_logo-image {
        max-width: 150px;
        height: auto;
    }

    /* Navigation */
    .pd_nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background-color: var(--pd_white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        margin-left: 0;
        padding: 20px;
    }

    .pd_nav.active {
        right: 0;
    }

    .pd_nav ul {
        flex-direction: column;
        margin: 0;
    }

    .pd_nav ul li {
        margin: 15px 0;
    }

    .pd_nav ul li a {
        padding: 8px 0;
        display: block;
    }

    .pd_header-icons {
        order: 2;
        display: flex;
        align-items: center;
        margin-left: 10px;
    }

    .pd_cart-icon, 
    .pd_header-icons a {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .pd_mobile-menu {
        display: block;
        order: 3;
        margin-left: 10px;
        font-size: 22px;
    }

    /* Breadcrumb */
    .pd_breadcrumb {
        margin-top: 80px !important;
        padding: 10px 15px;
        width: 100%;
        font-size: 12px;
    }

    /* Product Detail Container */
    .pd_product-detail-container {
        width: 100%;
        padding: 15px;
        margin: 15px auto;
    }

    .pd_product-detail {
        flex-direction: column;
        gap: 20px;
    }

    .pd_main-image {
        height: 300px;
    }

    .pd_thumbnail-container {
        gap: 10px;
        flex-wrap: wrap;
    }

    .pd_thumbnail {
        width: 60px;
        height: 60px;
    }

    /* Product Info */
    .pd_product-info-card {
        padding: 20px;
    }

    .pd_product-title {
        font-size: 24px;
    }

    .pd_product-price {
        font-size: 28px;
        flex-direction: column;
        align-items: flex-start;
    }

    .pd_recyclable-badge {
        margin-left: 0;
        margin-top: 10px;
    }

    /* Specs Selection */
    .pd_specs-selection {
        padding: 15px;
    }

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

    /* Action Buttons */
    .pd_action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .pd_btn {
        width: 100%;
    }

    /* Related Products */
    .pd_related-products {
        width: 100%;
        padding: 0 15px;
    }

    .pd_section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

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

    /* FAQ Section */
    .pd_faq-container {
        padding: 30px 15px;
    }

    .pd_faq-title {
        font-size: 24px;
        text-align: center;
    }

    .pd_accordion-header {
        padding: 12px;
        font-size: 15px;
    }

    /* Footer adjustments */
    .ip_footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .ip_footer-col {
        flex: 1 1 100%;
    }

    .ip_footer-col ul {
        margin-left: 0;
        margin-top: 15px;
    }

    .ip_newsletter-form {
        flex-direction: column;
    }

    .ip_newsletter-input {
        width: 100%;
        margin-bottom: 10px;
    }

    .ip_newsletter-btn {
        width: 100%;
    }

    /* Scroll to top button */
    .pd_scroll-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .pd_header {
        padding: 8px 10px;
    }

    .pd_logo-image {
        max-width: 120px;
    }

    .pd_main-image {
        height: 250px;
    }

    .pd_product-title {
        font-size: 22px;
    }

    .pd_product-price {
        font-size: 24px;
    }

    .pd_section-title {
        font-size: 20px;
    }

    .pd_faq-title {
        font-size: 20px;
    }

    .pd_accordion-header {
        font-size: 14px;
    }

    .ip_footer-contact,
    .ip_footer-col ul li {
        font-size: 14px;
    }

    .ip_footer-bottom p {
        font-size: 12px;
    }
}

/* Very small devices (phones, 360px and down) */
@media (max-width: 360px) {
    .pd_header-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
        margin-left: 5px;
    }

    .pd_mobile-menu {
        font-size: 20px;
    }

    .pd_breadcrumb-links {
        font-size: 11px;
    }

    .pd_main-image {
        height: 200px;
    }

    .pd_thumbnail {
        width: 50px;
        height: 50px;
    }

    .pd_product-title {
        font-size: 20px;
    }

    .pd_product-price {
        font-size: 22px;
    }

    .pd_faq-title {
        font-size: 18px;
    }
}
/* products page styles */
   :root {
            --pro_primary-color: #22A61E;
            --pro_primary-dark: #1f6b3d;
            --pro_text-color: #333;
            --pro_light-bg: #f9f9f9;
            --pro_white: #ffffff;
            --pro_gray: #f0f0f0;
            --pro_dark-gray: #777;
            --pro_light-gray: #e0e0e0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box; 
            font-family: 'Cabinet Grotesk', sans-serif; 
            font-weight: 500;
            list-style: none;
            text-decoration: none;
        }

        .pro_body {
            color: var(--pro_text-color);
            overflow-x: hidden;
            background-color: #F0FCF0;
        }

        /* Header Styles */
        .pro_header {
            background-color: var(--pro_white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .pro_logo {
            color: var(--pro_primary-color);
            font-size: 24px;
            font-weight: 700;
            text-decoration: none;
            width: 137.52px;
        }
        
        .pro_nav {
            margin-left: auto;
        }
        
        .pro_nav ul {
            display: flex;
            list-style: none;
            margin-right: auto;
        }

        .pro_nav ul li {
            margin-left: 30px;
        }

        .pro_nav ul li a {
            text-decoration: none;
            color: var(--pro_text-color);
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s;
        }

        .pro_nav ul li a:hover {
            color: var(--pro_primary-color);
        }

        .pro_nav ul li a.pro_active {
            color: var(--pro_primary-color);
        }

        .pro_nav ul li a.pro_active::after,
        .pro_nav ul li a:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--pro_primary-color);
        }

        .pro_header-icons {
            display: flex;
            align-items: center;
        }

        .pro_header-icons a {
            margin-left: 15px;
            color: var(--pro_white);
            font-size: 16px;
            transition: all 0.3s;
            background-color: var(--pro_primary-color);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .pro_header-icons a:hover {
            background-color: var(--pro_primary-dark);
            color: var(--pro_white);
        }

        .pro_cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: var(--pro_white);
            color: var(--pro_primary-color);
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            font-weight: bold;
        }

        .pro_cart-icon {
            position: relative;
        }

        .pro_mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Breadcrumb */
        .pro_breadcrumb {
            margin-top: 120px!important; 
            padding:12px 0px 12px 20px;
            background-color: var(--pro_white);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            width: 90%;
            display: flex;
            align-items: center;
            margin-left: auto;
            margin-right: auto;
        }

        .pro_breadcrumb-links {
            display: flex;
            align-items: center;
            color: var(--pro_dark-gray);
            font-size: 14px;
        }

        .pro_breadcrumb-links a {
            color: var(--pro_dark-gray);
            text-decoration: none;
            transition: color 0.3s;
        }

        .pro_breadcrumb-links a:hover {
            color: var(--pro_primary-color);
        }

        .pro_breadcrumb-links span {
            margin: 0 8px;
        }

        /* Products Page Content */
        .pro_products-page {
            display: flex;
            padding: 40px 5%;
            padding-top: 10px;
            gap: 30px;
        }

        /* Categories Sidebar */
        .pro_categories-sidebar {
            flex: 0 0 250px;
            background-color: var(--pro_white);
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: fit-content;
            position: sticky;
            top: 100px;
        }

        .pro_categories-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            text-align: center;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--pro_light-gray);
        }

        .pro_category-list {
            list-style: none;
        }

        .pro_category-item {
            margin-bottom: 12px;
        }

        .pro_category-link {
            display: block;
            padding: 10px 15px;
            color: var(--pro_text-color);
            text-decoration: none;
            transition: all 0.3s;
        }

        .pro_category-link:hover, .pro_category-link.pro_active {
            background-color: var(--pro_light-gray);
            color: var(--pro_primary-color);
        }

        /* Products Main Content */
        .pro_products-main {
            flex: 1;
            background-color: var(--pro_white);
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .pro_products-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding:15px 20px 15px 0px;
        }

        .pro_products-count {
            color: #919191;
            font-size: 20px;
            font-weight: 500;
        }

        .pro_search-box {
            position: relative;
            width: 250px;
        }

        .pro_search-input {
            width: 100%;
            padding: 10px 15px 10px 40px;
            border: 1px solid var(--pro_light-gray);
            font-size: 14px;
            outline: none;
            transition: all 0.3s;
        }

        .pro_search-input:focus {
            border-color: var(--pro_primary-color);
            box-shadow: 0 0 0 3px rgba(34, 166, 30, 0.1);
        }

        .pro_search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--pro_dark-gray);
        }

        /* Products Grid */
        .pro_category-section {
            margin-bottom: 40px;
            scroll-margin-top: 100px;
        }

        .pro_category-heading {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--pro_text-color);
            padding-bottom: 10px;
        }

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

        .pro_product-item {
            background-color: var(--pro_white);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            position: relative;
        }

        .pro_product-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

       .pro_product-image-container {
            position: relative;
            height: 200px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f8f8f8; /* Add a light background */
        }

        .pro_product-image {
            width: auto;
            height: 100%;
            max-width: 100%;
            object-fit: contain; /* Changed from 'cover' to 'contain' to show full image */
            transition: transform 0.5s;
        }

        .pro_product-item:hover .pro_product-image {
            transform: scale(1.05);
        }

        .pro_product-tag {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background-color: var(--pro_white);
            padding: 5px 10px;
            font-size: 12px;
            font-weight: 500;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .pro_product-info {
            padding: 15px;
        }

        .pro_product-name {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--pro_text-color);
            
        }

        .pro_product-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .pro_price {
            color: var(--pro_primary-color);
            font-weight: 600;
            font-size: 18px;
        }

        /* Quantity Controls */
        .pro_quantity-controls {
            display: flex;
            align-items: center;
            gap: 5px;
            position: absolute;
            bottom: 15px;
            right: 15px;
            z-index: 2;
            background-color: var(--pro_white);
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .pro_quantity-btn {
            background-color: var(--pro_primary-color);
            color: var(--pro_white);
            border: none;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
        }

        .pro_quantity-btn:hover {
            background-color: var(--pro_primary-dark);
        }

        .pro_quantity-input {
            width: 30px;
            text-align: center;
            border: none;
            font-weight: 600;
            pointer-events: none;
        }

        .pro_add-to-cart {
            background-color: var(--pro_primary-color);
            color: var(--pro_white);
            border: none;
            padding: 8px 15px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
            position: absolute;
            bottom: 15px;
            right: 15px;
            z-index: 2;
        }

        .pro_add-to-cart:hover {
            background-color: var(--pro_primary-dark);
        }

        /* No Results Message */
        .pro_no-results {
            display: none;
            text-align: center;
            grid-column: 1 / -1;
            padding: 50px 0;
        }

        .pro_no-results i {
            font-size: 50px;
            color: var(--pro_dark-gray);
            margin-bottom: 20px;
        }

        .pro_no-results p {
            font-size: 18px;
            color: var(--pro_dark-gray);
        }

       /* FAQ Section - Mobile Responsive */
.pro_faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #ffffff;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
}

.pro_faq-content {
    flex: 1 1 100%;
    padding-top: 0;
    text-align: center;
}

.pro_faq-title {
    font-size: 28px;
    margin-bottom: 20px;
    margin-left: 0;
    width: 100%;
}

.pro_faq-accordion {
    flex: 1 1 100%;
}

.pro_accordion-item {
    margin-bottom: 15px;
    overflow: hidden;
}

.pro_accordion-header {
    background-color: #EBFFEA;
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
}

.pro_accordion-header:hover {
    background-color: #f0f0f0;
}

.pro_accordion-content {
    background-color: #ffffff;
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.pro_accordion-content p {
    padding: 12px 0;
    color: #777;
    line-height: 1.6;
    font-size: 14px;
}

.pro_accordion-item.pro_active .pro_accordion-content {
    max-height: 500px;
}

.pro_accordion-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #22A61E;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.pro_accordion-item.pro_active .pro_accordion-icon {
    transform: rotate(45deg);
}

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .pro_faq-container {
        padding: 60px;
        gap: 30px;
    }
    
    .pro_faq-content {
        flex: 1 1 300px;
        padding-top: 60px;
        text-align: left;
    }
    
    .pro_faq-title {
        font-size: 32px;
        margin-left: auto;
    }
    
    .pro_faq-accordion {
        flex: 1 1 300px;
    }
    
    .pro_accordion-header {
        padding: 14px 18px;
        font-size: 17px;
    }
}

/* Desktop Styles (992px and up) */
@media (min-width: 992px) {
    .pro_faq-container {
        padding: 100px;
        gap: 40px;
    }
    
    .pro_faq-content {
        flex: 1 1 400px;
        padding-top: 150px;
    }
    
    .pro_faq-title {
        font-size: 36px;
    }
    
    .pro_faq-accordion {
        flex: 1 1 400px;
    }
    
    .pro_accordion-header {
        padding: 15px 20px;
        font-size: 18px;
    }
    
    .pro_accordion-content p {
        padding: 15px 0;
        font-size: 16px;
    }
    
    .pro_accordion-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

/* Small Mobile Devices (under 480px) */
@media (max-width: 480px) {
    .pro_faq-container {
        padding: 30px 15px;
    }
    
    .pro_faq-title {
        font-size: 24px;
    }
    
    .pro_accordion-header {
        padding: 10px 12px;
        font-size: 15px;
    }
    
    .pro_accordion-icon {
        width: 26px;
        height: 26px;
    }
}
/* For mobile view */
@media (max-width: 576px) {
    .pro_product-image-container {
        height: 180px;
    }
}

/* For larger screens if needed */
@media (min-width: 1200px) {
    .pro_product-image-container {
        height: 250px;
    }
}
        /* Footer */
        .pro_footer {
            background-color: #0E420C;
            color: var(--pro_white);
            padding: 60px 5% 30px;
        }

        .pro_footer-container {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .pro_footer-col {
            flex: 1 1 200px;
        }

        .pro_footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--pro_white);
            margin-bottom: 20px;
            display: block;
            text-decoration: none;
        }

        .pro_footer-contact {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pro_footer-contact i {
            color: #ffffff;
        }

        .pro_footer-links h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--pro_white);
        }

        .pro_footer-links li {
            margin-bottom: 20px;
        }
        
        .pro_footer-col ul {
            margin-top: 30px;
            margin-left: 40px;
        }
        
        .pro_footer-col ul li {
            margin-bottom: 10px;
        }
        
        .pro_footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }

        .pro_footer-links a:hover {
            color: var(--pro_primary-color);
        }

        .pro_newsletter h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--pro_white);
        }

        .pro_newsletter-form {
            display: flex;
            margin-bottom: 20px;
        }

        .pro_newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            font-size: 14px;
            background-color: white;
        }

        .pro_newsletter-btn {
            background-color: var(--pro_primary-color);
            color: var(--pro_white);
            border: none;
            padding: 0 20px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .pro_newsletter-btn:hover {
            background-color: var(--pro_primary-dark);
        }

        .pro_social-links {
            display: flex;
            gap: 15px;
        }

        .pro_social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            margin: 5px;
            background-color: #e0e0e0;
            color: #000000;
            border-radius: 50%;
            text-decoration: none;
            font-size: 18px;
            transition: background-color 0.3s, color 0.3s;
        }

        .pro_social-links a:hover {
            background-color: #c0c0c0;
            color: #000;
        }

        .pro_footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #bbb;
            font-size: 14px;
        }
        
        .pro_footer_links {
            list-style: none;
            text-decoration: none;
            color: #ffffff;
        }
        
        .pro_company_name a {
            color: white;
            text-decoration: none;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .pro_products-page {
                flex-direction: column;
            }
            
            .pro_categories-sidebar {
                flex: 1;
                margin-bottom: 30px;
                position: static;
            }
            
            .pro_faq-title {
                font-size: 30px;
            }
        }

        @media (max-width: 768px) {
            .pro_header {
                padding: 15px 20px;
            }
            
            .pro_nav {
                position: fixed;
                top: 70px;
                right: -250px;
                width: 250px;
                background-color: var(--pro_white);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 20px;
                transition: right 0.3s;
                z-index: 999;
                height: calc(100vh - 70px);
            }
            
            .pro_nav.pro_active {
                right: 0;
            }
            
            .pro_nav ul {
                flex-direction: column;
            }
            
            .pro_nav ul li {
                margin: 15px 0;
            }
            
            .pro_mobile-menu {
                display: block;
                padding-left: 20px;
            }
            
            .pro_products-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .pro_search-box {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .pro_breadcrumb {
                padding-top: 100px;
            }
            
            .pro_products-grid {
                grid-template-columns: 1fr;
            }
            
            .pro_category-heading {
                font-size: 24px;
            }
            
            .pro_footer-col {
                flex: 1 1 100%;
                margin-bottom: 30px;
            }
            
            .pro_newsletter-form {
                flex-direction: column;
            }
            
            .pro_newsletter-input {
                border-radius: 4px;
                margin-bottom: 10px;
            }
            
            .pro_newsletter-btn {
                border-radius: 4px;
                padding: 12px;
            }
        }

        /* Header Mobile Styles */
        @media (max-width: 768px) {
            .pro_header {
                padding: 12px 15px;
            }
            
            .pro_logo-image {
                width: 100px;
                height: auto;
            }
            
            .pro_header-icons a {
                width: 30px;
                height: 30px;
                font-size: 14px;
                margin-left: 10px;
            }
            
            .pro_cart-count {
                width: 15px;
                height: 15px;
                font-size: 10px;
            }
            
            .pro_mobile-menu {
                font-size: 20px;
            }
        }
        
        /* Breadcrumb Mobile */
        @media (max-width: 576px) {
            .pro_breadcrumb {
                padding: 10px 15px;
                margin-top: 80px !important;
                width: 100%;
            }
            
            .pro_breadcrumb-links {
                font-size: 12px;
                white-space: nowrap;
                overflow-x: auto;
                padding-bottom: 3px;
            }
            
            .pro_breadcrumb-links span {
                margin: 0 5px;
            }
        }
        
        /* Products Page Layout */
        @media (max-width: 992px) {
            .pro_products-page {
                flex-direction: column;
                padding: 20px 3%;
            }
            
            .pro_categories-sidebar {
                position: static;
                margin-bottom: 20px;
                width: 100%;
            }
            
            .pro_products-main {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .pro_products-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .pro_search-box {
                width: 100%;
            }
            
            .pro_category-heading {
                font-size: 20px;
            }
        }

        @media (max-width: 576px) {
            .pro_products-page {
                padding: 15px;
            }
            
            .pro_products-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .pro_product-image-container {
                height: 180px;
            }
        }
        
        /* FAQ Mobile Styles */
        @media (max-width: 992px) {
            .pro_faq-container {
                padding: 60px 30px;
                flex-direction: column;
            }
            
            .pro_faq-content {
                padding-top: 30px;
            }
            
            .pro_faq-title {
                font-size: 28px;
                margin-bottom: 15px;
            }
        }

        @media (max-width: 768px) {
            .pro_faq-container {
                padding: 40px 20px;
            }
            
            .pro_faq-title {
                font-size: 24px;
            }
            
            .pro_accordion-header {
                padding: 12px 15px;
                font-size: 15px;
            }
            
            .pro_accordion-content p {
                padding: 12px 0;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .pro_faq-container {
                padding: 30px 15px;
            }
            
            .pro_faq-title {
                font-size: 22px;
            }
            
            .pro_accordion-header {
                padding: 10px 12px;
                font-size: 14px;
            }
            
            .pro_accordion-icon {
                width: 28px;
                height: 28px;
                font-size: 14px;
            }
        }
        
        /* Footer Mobile */
        @media (max-width: 768px) {
            .pro_footer {
                padding: 40px 5% 20px;
            }
            
            .pro_footer-container {
                flex-direction: column;
            }
            
            .pro_footer-col {
                margin-bottom: 25px;
            }
            
            .pro_footer-col ul {
                margin-left: 0;
                margin-top: 15px;
            }
            
            .pro_newsletter-form {
                flex-direction: column;
            }
            
            .pro_newsletter-input {
                margin-bottom: 10px;
                width: 100%;
            }
            
            .pro_newsletter-btn {
                width: 100%;
                padding: 12px;
            }
            
            .pro_social-links {
                justify-content: flex-start;
            }
            
            .pro_footer-bottom {
                padding-top: 20px;
                font-size: 12px;
            }
        }

        /* Scroll to Top Button */
        .pro_scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--pro_primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .pro_scroll-top.pro_active {
            opacity: 1;
            visibility: visible;
        }

        .pro_scroll-top:hover {
            background-color: var(--pro_primary-dark);
            transform: translateY(-3px);
        }

        /* Responsive adjustment */
        @media (max-width: 768px) {
            .pro_scroll-top {
                width: 45px;
                height: 45px;
                font-size: 18px;
                bottom: 20px;
                right: 20px;
            }
        }

/* work page styles */
   :root {
            --w_primary-color: #22A61E;
            --w_primary-dark: #1f6b3d;
            --w_text-color: #333;
            --w_light-bg: #f9f9f9;
            --w_white: #ffffff;
            --w_gray: #f0f0f0;
            --w_dark-gray: #777;
            --w_light-gray: #e0e0e0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box; 
            font-family: 'Cabinet Grotesk', sans-serif; 
            font-weight: 500;
            list-style: none;
        }

        .w_body {
            color: var(--w_text-color);
            overflow-x: hidden;
            background-color: #F0FCF0;
        }

        /* Header Styles */
        .w_header {
            background-color: var(--w_white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .w_logo {
            color: var(--w_primary-color);
            font-size: 24px;
            font-weight: 700;
            text-decoration: none;
            width: 137.52px;
        }
        
        .w_nav {
            margin-left: auto;
        }
        
        .w_nav ul {
            display: flex;
            list-style: none;
            margin-right: auto;
        }

        .w_nav ul li {
            margin-left: 30px;
        }

        .w_nav ul li a {
            text-decoration: none;
            color: var(--w_text-color);
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s;
        }

        .w_nav ul li a:hover {
            color: var(--w_primary-color);
        }

        .w_nav ul li a .w_active {
            color: var(--w_primary-color);
        }

        .w_nav ul li a.w_active::after,
        .w_nav ul li a:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--w_primary-color);
        }

        .w_header-icons {
            display: flex;
            align-items: center;
        }

        .w_header-icons a {
            margin-left: 15px;
            color: var(--w_white);
            font-size: 16px;
            transition: all 0.3s;
            background-color: var(--w_primary-color);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .w_header-icons a:hover {
            background-color: var(--w_primary-dark);
            color: var(--w_white);
        }

        .w_cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: var(--w_white);
            color: var(--w_primary-color);
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            font-weight: bold;
        }

        .w_cart-icon {
            position: relative;
        }

        .w_mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Breadcrumb */
        .w_breadcrumb {
            margin-top: 120px!important; 
            padding: 12px 0px 12px 20px;
            background-color: var(--w_white);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            width: 90%;
            display: flex;
            align-items: center;
            margin-left: auto;
            margin-right: auto;
        }

        .w_breadcrumb-links {
            display: flex;
            align-items: center;
            color: var(--w_dark-gray);
            font-size: 14px;
        }

        .w_breadcrumb-links a {
            color: var(--w_dark-gray);
            text-decoration: none;
            transition: color 0.3s;
        }

        .w_breadcrumb-links a:hover {
            color: var(--w_primary-color);
        }

        .w_breadcrumb-links span {
            margin: 0 8px;
        }

        /* Work Page Content */
        .w_work-container {
            width: 90%;
            margin: 30px auto;
            background-color: var(--w_white);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 30px;
        }

        .w_work-header {
            position: relative;
            margin-bottom: 30px;
        }

        .w_work-hero-container {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
            margin-bottom: 40px;
            padding: 0;
            margin-left: 0;
            margin-right: 0;
            left: 0;
            right: 0;
        }

        .w_work-hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
            display: block;
            margin: 0;
            padding: 0;
            position: relative;
            left: 0;
            right: 0;
        }

        .w_work-hero-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--w_white);
            width: 90%;
            max-width: 800px;
        }

        .w_work-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--w_white);
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .w_work-subtitle {
            color: var(--w_light-gray);
            font-size: 18px;
            line-height: 1.6;
            margin: 0 auto;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }

        .w_work-card {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            background-color: #F2F2F2;
        }

        .w_work-card.reverse {
            flex-direction: row-reverse;
        }

        .w_work-card-image {
            flex: 1;
            height: 350px;
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .w_work-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform 0.5s;
        }

        .w_work-card-image:hover img {
            transform: scale(1.05);
        }

        .w_work-card-content {
            flex: 1;
            padding: 0px 40px;
        }

        .w_work-card-title {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .w_work-card-text {
            color: var(--w_dark-gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .w_work-card-list {
            margin-bottom: 20px;
            padding-left: 20px;
        }

        .w_work-card-list li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }

        .w_work-card-list li:before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 10px;
            height: 10px;
            background-color: var(--w_primary-color);
        }

        /* Footer */
        .w_footer {
            background-color: #0E420C;
            color: var(--w_white);
            padding: 60px 5% 30px;
        }

        .w_footer-container {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .w_footer-col {
            flex: 1 1 200px;
        }

        .w_footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--w_white);
            margin-bottom: 20px;
            display: block;
            text-decoration: none;
        }

        .w_footer-contact {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .w_footer-contact i {
            color: var(--w_white);
        }

        .w_footer-links h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--w_white);
        }

        .w_footer-links li {
            margin-bottom: 20px;
        }
        
        .w_footer-col ul {
            margin-top: 30px;
            margin-left: 40px;
        }
        
        .w_footer-col ul li {
            margin-bottom: 10px;
        }
        
        .w_footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }

        .w_footer-links a:hover {
            color: var(--w_primary-color);
        }

        .w_newsletter h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--w_white);
        }

        .w_newsletter-form {
            display: flex;
            margin-bottom: 20px;
        }

        .w_newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            font-size: 14px;
            background-color: var(--w_white);
        }

        .w_newsletter-btn {
            background-color: var(--w_primary-color);
            color: var(--w_white);
            border: none;
            padding: 0 20px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .w_newsletter-btn:hover {
            background-color: var(--w_primary-dark);
        }

        .w_social-links {
            display: flex;
            gap: 15px;
        }

        .w_social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            margin: 5px;
            background-color: #e0e0e0;
            color: #000000;
            border-radius: 50%;
            text-decoration: none;
            font-size: 18px;
            transition: background-color 0.3s, color 0.3s;
        }

        .w_social-links a:hover {
            background-color: #c0c0c0;
            color: #000;
        }

        .w_footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #bbb;
            font-size: 14px;
        }
        
        .w_footer_links {
            list-style: none;
            text-decoration: none;
            color: var(--w_white);
        }
        
        .w_company_name a {
            color: var(--w_white);
            text-decoration: none;
        }

        /* Scroll to Top Button */
        .w_scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--w_primary-color);
            color: var(--w_white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .w_scroll-top.active {
            opacity: 1;
            visibility: visible;
        }

        .w_scroll-top:hover {
            background-color: var(--w_primary-dark);
            transform: translateY(-3px);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .w_work-card, .w_work-card.reverse {
                flex-direction: column;
            }
            
            .w_work-card-image, .w_work-card-content {
                width: 100%;
            }
            .w_work-card-content {
                padding: 0 30px 20px;
                width:100%
            }
            .w_work-title {
                font-size: 30px;
            }
            
            .w_work-subtitle {
                font-size: 16px;
            }
        }

        @media (max-width: 768px) {
            .w_header {
                padding: 15px 20px;
            }
            
            .w_nav {
                position: fixed;
                top: 70px;
                right: -250px;
                width: 250px;
                background-color: var(--w_white);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 20px;
                transition: right 0.3s;
                z-index: 999;
                height: calc(100vh - 70px);
            }
            
            .w_nav.active {
                right: 0;
            }
            
            .w_nav ul {
                flex-direction: column;
            }
            
            .w_nav ul li {
                margin: 15px 0;
            }
            
            .w_mobile-menu {
                display: block;
                padding-left: 20px;
            }
            
            .w_work-title {
                font-size: 28px;
            }
            
            .w_work-card-title {
                font-size: 24px;
            }
        }

        @media (max-width: 576px) {
            .w_breadcrumb {
                padding-top: 100px;
            }
            .w_work-card-content {
                padding:0px 20px 15px;
            }
    
            .w_work-container {
                padding: 20px;
            }
            
            .w_work-title {
                font-size: 24px;
            }
            
            .w_work-subtitle {
                font-size: 14px;
            }
            
            .w_work-hero-container {
                height: 250px;
            }
            
            .w_work-card-image {
                height: 250px;
            }
            
            .w_footer-col {
                flex: 1 1 100%;
                margin-bottom: 30px;
            }
            
            .w_newsletter-form {
                flex-direction: column;
            }
            
            .w_newsletter-input {
                border-radius: 4px;
                margin-bottom: 10px;
            }
            
            .w_newsletter-btn {
                border-radius: 4px;
                padding: 12px;
            }
        }
        /* Add these updates to your existing CSS */

        /* Header Mobile Optimization */
        @media (max-width: 992px) {
            .w_header {
                padding: 15px 20px;
            }
            
            .w_logo-image {
                width: 120px;
                height: auto;
            }
            
            .w_header-icons a {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
            
            .w_cart-count {
                width: 16px;
                height: 16px;
                font-size: 10px;
            }
        }

        /* Breadcrumb Mobile Fixes */
        @media (max-width: 768px) {
            .w_breadcrumb {
                margin-top: 80px !important;
                padding: 10px 15px;
                width: 100%;
            }
            
            .w_breadcrumb-links {
                font-size: 12px;
                white-space: nowrap;
                overflow-x: auto;
                padding-bottom: 5px;
            }
            
            .w_breadcrumb-links span {
                margin: 0 5px;
            }
        }

        /* Work Container Mobile Optimizations */
        @media (max-width: 992px) {
            .w_work-container {
                width: 100%;
                padding: 20px 15px;
            }
            
            .w_work-hero-container {
                height: 300px;
                margin-bottom: 30px;
            }
            
            .w_work-title {
                font-size: 28px;
            }
            
            .w_work-subtitle {
                font-size: 16px;
                max-width: 90%;
            }
            
            .w_work-card, .w_work-card.reverse {
                flex-direction: column;
                margin-bottom: 40px;
            }
            
            .w_work-card-image {
                height: 250px;
                width: 100%;
            }
            
            .w_work-card-content {
                padding: 20px 15px;
                width: 100%;
            }
            
            .w_work-card-title {
                font-size: 22px;
            }
            
            .w_work-card-text {
                font-size: 14px;
            }
        }

        @media (max-width: 576px) {
            .w_work-hero-container {
                height: 200px;
            }
            
            .w_work-title {
                font-size: 24px;
                margin-bottom: 10px;
            }
            
            .w_work-subtitle {
                font-size: 14px;
            }
            
            .w_work-card-image {
                height: 200px;
            }
            
            .w_work-card-title {
                font-size: 20px;
            }
            
            .w_work-card-list li {
                font-size: 14px;
                padding-left: 20px;
            }
            
            .w_work-card-list li:before {
                width: 8px;
                height: 8px;
                top: 8px;
            }
        }

        /* Footer Mobile Optimizations */
        @media (max-width: 768px) {
            .w_footer-container {
                flex-direction: column;
            }
            
            .w_footer-col {
                margin-bottom: 30px;
                flex: 1 1 100%;
            }
            
            .w_footer-col ul {
                margin-left: 0;
                margin-top: 15px;
            }
            
            .w_newsletter-form {
                flex-direction: column;
            }
            
            .w_newsletter-input {
                margin-bottom: 10px;
                width: 100%;
            }
            
            .w_newsletter-btn {
                width: 100%;
                padding: 12px;
            }
            
            .w_social-links {
                justify-content: center;
            }
            
            .w_footer-bottom {
                font-size: 12px;
            }
        }

        /* Touch Device Optimizations */
        @media (hover: none) {
            .w_work-card-image:hover img {
                transform: none;
            }
            
            .w_nav ul li a:hover::after {
                width: 0;
            }
        }

        /* Prevent horizontal scrolling */
        html, body {
            max-width: 100%;
            overflow-x: hidden;
        }

        /* Responsive adjustment */
        @media (max-width: 768px) {
            .w_scroll-top {
                width: 45px;
                height: 45px;
                font-size: 18px;
                bottom: 20px;
                right: 20px;
            }
        }
    
        /* dashboard page styles */
           :root {
            --dp_primary-color: #6366f1;
            --dp_primary-dark: #4f46e5;
            --dp_secondary-color: #f43f5e;
            --dp_dark-color: #1e293b;
            --dp_light-color: #f8fafc;
            --dp_gray-color: #94a3b8;
            --dp_success-color: #10b981;
            --dp_warning-color: #f59e0b;
            --dp_danger-color: #ef4444;
            --dp_sidebar-width: 260px;
            --dp_sidebar-collapsed-width: 80px;
            --dp_transition: all 0.3s ease;
        }

       

        .dp_body {
            background-color: #f1f5f9;
            color: #334155;
            overflow-x: hidden;
        }

        /* Sidebar Styles */
        .dp_sidebar {
            position: fixed;
            top: 0;
            left: 0;
            width: var(--dp_sidebar-width);
            height: 100vh;
            background: white;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transition: var(--dp_transition);
            z-index: 1000;
            overflow-y: auto;
        }

        .dp_sidebar-collapsed {
            width: var(--dp_sidebar-collapsed-width);
        }

        .dp_sidebar-collapsed .dp_menu-text {
            display: none;
        }

        .dp_sidebar-collapsed .dp_logo-text {
            display: none;
        }

        .dp_sidebar-collapsed .dp_menu-item {
            justify-content: center;
        }

        .dp_logo-container {
            display: flex;
            align-items: center;
            padding: 20px 15px;
            border-bottom: 1px solid #e2e8f0;
        }

        .dp_logo-icon {
            font-size: 28px;
            color: var(--dp_primary-color);
            margin-right: 10px;
        }

        .dp_logo-text {
            font-size: 20px;
            font-weight: 700;
            color: var(--dp_dark-color);
            transition: var(--dp_transition);
        }

        .dp_menu {
            padding: 15px 0;
        }

        .dp_menu-title {
            padding: 10px 15px;
            font-size: 12px;
            font-weight: 600;
            color: var(--dp_gray-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: none;
        }

        .dp_sidebar-collapsed .dp_menu-title {
            display: none;
        }

        .dp_menu-item {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            margin: 5px 0;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--dp_transition);
            color: #64748b;
            text-decoration: none;
        }

        .dp_menu-item:hover {
            background-color: #f1f5f9;
            color: var(--dp_primary-color);
        }

        .dp_menu-item.dp_active {
            background-color: #e0e7ff;
            color: var(--dp_primary-color);
            font-weight: 600;
        }

        .dp_menu-icon {
            font-size: 20px;
            margin-right: 10px;
            width: 24px;
            text-align: center;
            transition: var(--dp_transition);
        }

        .dp_menu-text {
            font-size: 14px;
            transition: var(--dp_transition);
        }

        .dp_menu-badge {
            margin-left: auto;
            background-color: var(--dp_primary-color);
            color: white;
            font-size: 10px;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 10px;
        }

        /* Main Content Styles */
        .dp_main-content {
            margin-left: var(--dp_sidebar-width);
            padding: 20px;
            transition: var(--dp_transition);
            min-height: 100vh;
        }

        .dp_main-content-expanded {
            margin-left: var(--dp_sidebar-collapsed-width);
        }

        /* Header Styles */
        .dp_header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e2e8f0;
        }

        .dp_header-left h1 {
            font-size: 24px;
            font-weight: 700;
            color: var(--dp_dark-color);
        }

        .dp_header-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .dp_toggle-sidebar {
            display: none;
            font: size 1px;;
            cursor: pointer;
            color: var(--dp_dark-color);
        }

        .dp_search-box {
            position: relative;
        }

        .dp_search-box input {
            padding: 10px 15px 10px 40px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            background-color: white;
            width: 250px;
            transition: var(--dp_transition);
        }

        .dp_search-box input:focus {
            outline: none;
            border-color: var(--dp_primary-color);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
        }

        .dp_search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--dp_gray-color);
        }

        .dp_user-profile {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            position: relative;
        }

        .dp_user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--dp_primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            background-size: cover;
            background-position: center;
        }

        .dp_user-name {
            font-weight: 600;
            font-size: 14px;
        }

        .dp_profile-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            width: 200px;
            z-index: 1000;
            display: none;
        }

        .dp_profile-dropdown.dp_active {
            display: block;
        }

        .dp_profile-dropdown-item {
            padding: 10px 15px;
            cursor: pointer;
            transition: var(--dp_transition);
        }

        .dp_profile-dropdown-item:hover {
            background-color: #f1f5f9;
        }

        .dp_profile-dropdown-divider {
            height: 1px;
            background-color: #e2e8f0;
            margin: 5px 0;
        }

        .dp_notification-icon {
            position: relative;
            font-size: 20px;
            color: var(--dp_dark-color);
            cursor: pointer;
        }

        .dp_notification-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: var(--dp_secondary-color);
            color: white;
            font-size: 10px;
            font-weight: 600;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dp_notification-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            width: 350px;
            z-index: 1000;
            display: none;
            max-height: 400px;
            overflow-y: auto;
        }

        .dp_notification-dropdown.dp_active {
            display: block;
        }

        .dp_notification-header {
            padding: 15px;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .dp_notification-title {
            font-weight: 600;
        }

        .dp_mark-all-read {
            font-size: 12px;
            color: var(--dp_primary-color);
            cursor: pointer;
        }

        .dp_notification-item {
            padding: 15px;
            border-bottom: 1px solid #e2e8f0;
            cursor: pointer;
            transition: var(--dp_transition);
        }

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

        .dp_notification-item.dp_unread {
            background-color: #f8fafc;
        }

        .dp_notification-content {
            display: flex;
            gap: 10px;
        }

        .dp_notification-icon-small {
            font-size: 18px;
            color: var(--dp_primary-color);
            margin-top: 2px;
        }

        .dp_notification-text {
            flex: 1;
        }

        .dp_notification-time {
            font-size: 12px;
            color: var(--dp_gray-color);
            margin-top: 5px;
        }

        .dp_notification-footer {
            padding: 10px;
            text-align: center;
            font-size: 14px;
            color: var(--dp_primary-color);
            cursor: pointer;
        }

        /* Card Styles */
        .dp_card {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            padding: 20px;
            margin-bottom: 20px;
            transition: var(--dp_transition);
        }

        .dp_card:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .dp_card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e2e8f0;
        }

        .dp_card-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--dp_dark-color);
        }

        .dp_card-actions {
            display: flex;
            gap: 10px;
        }

        .dp_btn {
            padding: 8px 16px;
            border-radius: 8px;
            border: none;
            font-weight: 500;
            font-size: 14px;
            cursor: pointer;
            transition: var(--dp_transition);
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .dp_btn-primary {
            background-color: var(--dp_primary-color);
            color: white;
        }

        .dp_btn-primary:hover {
            background-color: var(--dp_primary-dark);
        }

        .dp_btn-secondary {
            background-color: #e2e8f0;
            color: #334155;
        }

        .dp_btn-secondary:hover {
            background-color: #cbd5e1;
        }

        .dp_btn-success {
            background-color: var(--dp_success-color);
            color: white;
        }

        .dp_btn-success:hover {
            background-color: #0d9e6e;
        }

        .dp_btn-danger {
            background-color: var(--dp_danger-color);
            color: white;
        }

        .dp_btn-danger:hover {
            background-color: #dc2626;
        }

        .dp_btn-warning {
            background-color: var(--dp_warning-color);
            color: white;
        }

        .dp_btn-warning:hover {
            background-color: #e69009;
        }

        .dp_btn-sm {
            padding: 5px 10px;
            font-size: 12px;
        }

        .dp_btn-icon {
            padding: 8px;
            border-radius: 8px;
        }

        /* Table Styles */
        .dp_table-responsive {
            overflow-x: auto;
        }

        .dp_table {
            width: 100%;
            border-collapse: collapse;
        }

        .dp_table th {
            background-color: #f1f5f9;
            padding: 12px 15px;
            text-align: left;
            font-weight: 600;
            color: #64748b;
            font-size: 14px;
        }

        .dp_table td {
            padding: 12px 15px;
            border-bottom: 1px solid #e2e8f0;
            font-size: 14px;
        }

        .dp_table tr:last-child td {
            border-bottom: none;
        }

        .dp_table tr:hover td {
            background-color: #f8fafc;
        }

        .dp_status-badge {
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
        }

        .dp_status-active {
            background-color: #d1fae5;
            color: var(--dp_success-color);
        }

        .dp_status-inactive {
            background-color: #fee2e2;
            color: var(--dp_danger-color);
        }

        .dp_status-pending {
            background-color: #fef3c7;
            color: var(--dp_warning-color);
        }

        .dp_status-completed {
            background-color: #dbeafe;
            color: var(--dp_primary-color);
        }

        .dp_avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
        }

        .dp_action-buttons {
            display: flex;
            gap: 5px;
        }

        /* Order Details Styles */
        .dp_order-details-container {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .dp_order-details-section {
            flex: 1;
            min-width: 300px;
        }

        .dp_order-details-card {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            padding: 20px;
            margin-bottom: 20px;
        }

        .dp_order-details-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dp_dark-color);
        }

        .dp_order-details-row {
            display: flex;
            margin-bottom: 10px;
        }

        .dp_order-details-label {
            font-weight: 600;
            width: 150px;
            color: #64748b;
        }

        .dp_order-details-value {
            flex: 1;
        }

        .dp_order-products-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
        }

        .dp_order-products-table th {
            background-color: #f1f5f9;
            padding: 10px;
            text-align: left;
        }

        .dp_order-products-table td {
            padding: 10px;
            border-bottom: 1px solid #e2e8f0;
        }

        /* Filter Controls */
        .dp_filter-controls {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .dp_filter-group {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .dp_filter-label {
            font-weight: 500;
            font-size: 14px;
        }

        .dp_filter-select, .dp_filter-input {
            padding: 8px 12px;
            border-radius: 6px;
            border: 1px solid #e2e8f0;
            font-size: 14px;
        }

        .dp_filter-select:focus, .dp_filter-input:focus {
            outline: none;
            border-color: var(--dp_primary-color);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
        }

        /* Form Styles */
        .dp_form-group {
            margin-bottom: 15px;
        }

        .dp_form-label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            font-size: 14px;
        }

        .dp_form-control {
            width: 100%;
            padding: 10px 15px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            font-size: 14px;
            transition: var(--dp_transition);
        }

        .dp_form-control:focus {
            outline: none;
            border-color: var(--dp_primary-color);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
        }

        .dp_form-row {
            display: flex;
            gap: 15px;
        }

        .dp_form-row .dp_form-group {
            flex: 1;
        }

        /* Modal Styles */
        .dp_modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: var(--dp_transition);
        }

        .dp_modal.dp_active {
            opacity: 1;
            visibility: visible;
        }

        .dp_modal-content {
            background-color: white;
            border-radius: 12px;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            transform: translateY(-50px);
            transition: var(--dp_transition);
        }

        .dp_modal.dp_active .dp_modal-content {
            transform: translateY(0);
        }

        .dp_modal-header {
            padding: 20px;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .dp_modal-title {
            font-size: 20px;
            font-weight: 600;
        }

        .dp_modal-close {
            background: none;
            border: none;
            font-size: 14px;
            cursor: pointer;
            color: #94a3b8;
            transition: var(--dp_transition);
        }

        .dp_modal-close:hover {
            color: var(--dp_danger-color);
        }

        .dp_modal-body {
            padding: 20px;
        }

        .dp_modal-footer {
            padding: 20px;
            border-top: 1px solid #e2e8f0;
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }

        /* Chart Styles */
        .dp_chart-container {
            position: relative;
            height: 300px;
            width: 100%;
        }

        /* Stats Cards */
        .dp_stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }

        .dp_stat-card {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            padding: 20px;
            transition: var(--dp_transition);
        }

        .dp_stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

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

        .dp_stat-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .dp_stat-icon.dp_users {
            background-color: #e0f2fe;
            color: #0ea5e9;
        }

        .dp_stat-icon.dp_orders {
            background-color: #fce7f3;
            color: #ec4899;
        }

        .dp_stat-icon.dp_products {
            background-color: #dcfce7;
            color: #22c55e;
        }

        .dp_stat-icon.dp_revenue {
            background-color: #fef3c7;
            color: #f59e0b;
        }

        .dp_stat-title {
            font-size: 14px;
            color: #64748b;
            font-weight: 500;
        }

        .dp_stat-value {
            font-size: 24px;
            font-weight: 700;
            color: var(--dp_dark-color);
        }

        .dp_stat-change {
            font-size: 12px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .dp_stat-change.dp_positive {
            color: var(--dp_success-color);
        }

        .dp_stat-change.dp_negative {
            color: var(--dp_danger-color);
        }

        /* Toast Notification */
        .dp_toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 3000;
        }

        .dp_toast {
            padding: 15px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            transform: translateX(150%);
            transition: all 0.3s ease;
            max-width: 350px;
        }

        .dp_toast.dp_show {
            transform: translateX(0);
        }

        .dp_toast.dp_success {
            background-color: #ecfdf5;
            color: var(--dp_success-color);
            border-left: 4px solid var(--dp_success-color);
        }

        .dp_toast.dp_error {
            background-color: #fef2f2;
            color: var(--dp_danger-color);
            border-left: 4px solid var(--dp_danger-color);
        }

        .dp_toast.dp_warning {
            background-color: #fffbeb;
            color: var(--dp_warning-color);
            border-left: 4px solid var(--dp_warning-color);
        }

        .dp_toast.dp_info {
            background-color: #eff6ff;
            color: var(--dp_primary-color);
            border-left: 4px solid var(--dp_primary-color);
        }

        .dp_toast-icon {
            font-size: 20px;
        }

        .dp_toast-message {
            flex: 1;
            font-size: 14px;
        }

        .dp_toast-close {
            background: none;
            border: none;
            font-size: 16px;
            cursor: pointer;
            color: inherit;
            opacity: 0.7;
        }

        .dp_toast-close:hover {
            opacity: 1;
        }

        /* Overlay for mobile sidebar */
        .dp_sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
            display: none;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .dp_sidebar {
                transform: translateX(-100%);
                z-index: 1000;
            }

            .dp_sidebar.dp_active {
                transform: translateX(0);
            }

            .dp_sidebar-overlay.dp_active {
                display: block;
            }

            .dp_main-content {
                margin-left: 0;
            }

            .dp_main-content-expanded {
                margin-left: 0;
            }

            .dp_toggle-sidebar {
                display: block;
            }

            .dp_search-box input {
                width: 200px;
            }
        }

        @media (max-width: 768px) {
            .dp_form-row {
                flex-direction: column;
                gap: 0;
            }

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

            .dp_order-details-container {
                flex-direction: column;
            }

            .dp_filter-controls {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 576px) {
            .dp_header-left h1 {
                font-size: 20px;
            }

            .dp_user-name {
                display: none;
            }

            .dp_card-actions {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }

            .dp_action-buttons {
                flex-direction: column;
                gap: 5px;
            }

            .dp_btn {
                width: 100%;
                justify-content: center;
            }

            .dp_modal-content {
                width: 95%;
            }
            
            .dp_notification-dropdown {
                width: 280px;
            }
        }

        