:root {
    --primary-color: #3b9b6c;
    /* Updated primary color */
    --secondary-color: #34A853;
    /* Original green for specific elements */
    --light-green: #E0F2E0;
    --dark-gray: #343a40;
    --medium-gray: #6c757d;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --shadow-color: rgba(0, 0, 0, .05);
    --black-color: #000;
    --card-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    --transition-speed: 0.3s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto", sans-serif;
}

a {
    text-decoration: none;
}

ul li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 15px 0;
    color: var(--black-color);
    font-family: inherit;
    text-transform: none;
}

h1 {
    font-size: 35px;
    line-height: 45px;
}

h2 {
    font-size: 30px;
    line-height: 40px;
}

h3 {
    font-size: 25px;
    line-height: 35px;
}

h4 {
    font-size: 22px;
    line-height: 32px;
}

h5 {
    font-size: 20px;
    line-height: 30px;
}

h6 {
    font-size: 18px;
    line-height: 28px;
}

header.header-section {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo-menu-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    width: 130px;
    max-width: 200px;
}

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

/* Mobile menu toggle button */
.mobile-menu {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* Main navigation styles */
ul.wp-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    order: 2;
}

ul.wp-menu li {
    position: relative;
}

ul.wp-menu li a {
    color: var(--black-color);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 10px;
    display: block;
}

ul.wp-menu li a:hover,
ul.wp-menu li.current_page_item a {
    color: var(--primary-color);
}

/* First-level submenu */
ul.sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    display: none;
    background: #fff;
    list-style: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 200px;
    z-index: 999;
}

/* Sub-sub-menu positioning */
ul.sub-menu .sub-menu {
    left: 100%;
    top: 0;
}

/* Link inside submenu */
ul.sub-menu li a {
    padding: 8px 20px;
    color: var(--black-color);
    font-weight: 400;
}

/* Show submenu on hover (desktop) */
li.menu-item-has-children:hover>.sub-menu {
    display: block;
}

/* Dropdown icon for desktop */
li.menu-item-has-children>a:after {
    content: "\f107";
    font-family: FontAwesome;
    font-size: 14px;
    margin-left: 8px;
}

li.menu-item-has-children li.menu-item-has-children {
    position: relative;
}

li.menu-item-has-children li.menu-item-has-children>a::after {
    /* margin-left: 50px; */
    position: absolute;
    right: 10px;
}

.hs_top_user_profile img {
    height: 30px;
    cursor: pointer;
}

.hs_navi_cart_wrapper {
    position: relative;
}

.nav-basket {
    font-size: 20px;
    color: #359a69;
}

body .order-2 {
    order: 1 !important;
}

.hs_top_user_profile i {
    color: #2c9561;
    font-size: 25px;
    padding-right: 20px;
}

.hs_navi_cart_wrapper .cart-count {
    position: absolute;
    top: -10px;
    color: #3b9b6c;
    right: -8px;
}

*:not(.simulator) {
    scrollbar-width: thin;
}

/*** home page **/

.hero-section {
    background-color: var(--black-color);
    background-image: url('../img/home/empowering-your-every-step.png');
    background-size: cover;
    background-position: top center;
    color: #fff;
    padding: 100px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.hero-buttons .btn {
    margin: 10px;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    border: 1px solid var(--secondary-color);
}

.btn-primary-green {
    background-color: #2D9562;
    border-color: #2D9562;
    color: #fff;
}

.btn-outline-primary-green {
    border-color: #2D9562;
    color: #2D9562;
}

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

.brand-intro,
.promo-block,
.product-categories,
.testimonials,
.contact-info {
    padding: 60px 0;
}

.testimonials {
    background-color: var(--light-green) !important;
}

.promo-block {
    background-color: #f0f8f0;
    /* Very light green */
    border-left: 5px solid var(--secondary-color);
}

.category-card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.testimonial-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.video-thumbnail,
.video-embed {
    border-radius: 8px;
    overflow: hidden;
}


.product-slider-section {
    padding: 60px 0;
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

.product-card .card-body {
    padding: 1rem;
    text-align: left;
}

.product-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.product-card .card-title a {
    color: var(--dark-gray);
    text-decoration: none;
}

.product-card .card-text,
.product-short-description p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.price {
    font-size: 1rem;
    font-weight: 600;
}

.woocommerce-Price-amount.amount {
    color: var(--secondary-color);
}

.old-price {
    text-decoration: line-through;
    color: #888;
    margin-left: 0.5rem;
    font-weight: 400;
}

.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #2d9562;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
    z-index: 10;
}

.card-body .btn-primary-green {
    margin: 0;
    /* padding: 10px 8px; */
    font-size: 14px;
    /* border-radius: 50px; */
}

/* Owl Carousel Custom Nav Arrows */
.owl-nav {
    position: absolute;
    top: 30%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.owl-nav button {
    /* background: rgba(0, 0, 0, 0.5) !important; */
    color: #fff !important;
    border: none !important;
    font-size: 2.5rem !important;
    width: 8px;
    height: 93px;
    border-radius: 50%;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-nav button:hover {
    background: unset !important;
}

/* Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.product-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    font-size: 2rem;
}

.owl-dots {
    display: none !important;
}

.testimonial-card {
    background-color: #ffffff;
    transition: transform 0.3s ease;
}

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

.testimonial-quote i {
    color: #28a745;
}

.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #28a745;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 10;
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-arrow:hover {
    background-color: #218838;
}

.btn-primary-green {
    background-color: #28a745;
    border: none;
    color: #fff;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    border: 1px solid #28a745;
}

.btn-primary-green:hover {
    background-color: #218838;
    border: 1px solid #28a745;

}

.footer-link {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color) !important;
    text-decoration: none;
}

.social-icon {
    font-size: 1.5rem;
    color: #ccc;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
    ;
}

/************** About Us page *******/
/* General Spacing */
.breadcrumb {
    color: #fff;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item.active {
    color: #fff;
}

.page-header {
    background-color: var(--light-green);
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header .overylay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-header .container {
    z-index: 2;
}

.about-section {
    padding-top: 60px;
    /* padding-bottom: 60px; */
}

/* Mission & Vision */
.mission-vision h2 {
    font-weight: 700;
    font-size: 2rem;
    color: #333;
}

.mission-vision p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Team Section */
.team-section {
    background-color: var(--light-green);
    padding: 60px 0px;
}

.team-member {
    text-align: center;
    background: var(--light-gray);
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #ddd;
}

.team-member h5 {
    font-weight: 600;
    color: #222;
}

.team-member p {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #666;
}

.team-member .social-links a {
    color: #666;
    font-size: 16px;
    transition: 0.3s ease;
}

.team-member .social-links a:hover {
    color: #007bff;
}

/* Certifications Section */
.certification-section {
    padding: 60px 0;
}

.certification-item {
    text-align: center;
    background-color: #fefefe;
    padding: 25px;
    border-radius: 10px;
    height: 100%;
    border: 1px solid #eee;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.certification-item img {
    max-width: 100px;
    margin-bottom: 15px;
    border-radius: 50%;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #ddd;
}

.certification-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.certification-item p {
    color: #666;
    font-size: 0.95rem;
}

.end-footer {
    padding: 20px 15px;
    text-align: center;
    font-size: 16px;
    color: #fff;
}

.end-footer-text,
.powered-by-wordpress {
    margin: 8px 0;
    line-height: 1.6;
}

.end-footer a {
    text-decoration: none;
    color: #fff;
    /* dark green */
    transition: color 0.3s ease;
}

.end-footer a:hover {
    color: var(--primary-color);
    ;
    /* darker on hover */
}

.gap-auto {
    gap: 1rem;
}

.head {
    width: 800px;
    margin: auto;
}

/**** product listing page *****/
/* Product Card Styles */
.archive .product-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    /* Slightly more rounded */
    margin-bottom: 25px;
    /* Increased margin */
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 4px 10px var(--shadow-color);
    /* Stronger shadow */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth hover effect */
}

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

.archive.product-card.list-view {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding: 20px;
    /* Increased padding */
}

.product-card.list-view {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding: 20px;
}

.product-card.list-view .product-img-wrapper {
    flex: 0 0 180px;
    margin-right: 25px;
    margin-bottom: 0;
    height: 140px;
    border-radius: 5px;
    overflow: hidden;
}

.archive .product-card.list-view img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Changed to contain for better image fit */
}

.archive .product-card .product-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 20px; */
    border-radius: 5px;
    /* object-fit: cover; */
}

.archive .product-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    /* Consistent object-fit */
}

.archive .product-card h5 {
    color: var(--dark-gray);
    font-size: 1.25rem;
    /* Larger font size */
    margin-bottom: 12px;
    /* Adjusted margin */
    font-weight: 600;
    /* Bolder title */
}

.archive .product-card.list-view h5 {
    margin-top: 0;
    font-size: 1.35rem;
}

.archive .product-card .price-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    /* Increased gap */
}

.archive .product-card.list-view .price-wrapper {
    justify-content: flex-start;
}

.archive .product-card .price {
    font-size: 1.45rem;
    /* Larger price */
    font-weight: bold;
    color: var(--secondary-color);
    /* Original green */
}

.archive .product-card .old-price {
    font-size: 1.05rem;
    /* Slightly larger old price */
    color: var(--medium-gray);
    text-decoration: line-through;
}

.archive .product-card .btn-add-to-cart {
    background-color: var(--secondary-color);
    /* Original green */
    border-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    /* Larger button */
    border-radius: 6px;
    /* More rounded button */
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.archive .product-card .btn-add-to-cart:hover {
    background-color: #288e44;
    border-color: #288e44;
    transform: translateY(-2px);
}

.archive .product-card.list-view .btn-add-to-cart {
    margin-top: 15px;
    /* Increased space */
}

/* Badges */
.archive .badge-sale,
.archive .badge-discount,
.archive .badge-new {
    position: absolute;
    top: 15px;
    /* Adjusted position */
    left: 15px;
    /* Adjusted position */
    background-color: var(--light-green);
    color: var(--secondary-color);
    padding: 6px 12px;
    /* Larger padding */
    border-radius: 4px;
    font-size: 0.9rem;
    /* Slightly larger font */
    font-weight: bold;
    z-index: 10;
    animation: fadeIn 0.5s ease-out;
    /* Fade-in animation */
}

.archive .badge-new {
    background-color: #ffeeba;
    /* Light yellow for 'New' */
    color: #856404;
    /* Dark yellow text */
}


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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sidebar Styles */
.archive .sidebar {
    background-color: var(--light-green);
    padding: 25px;
    /* Increased padding */
    border-radius: 8px;
    /* More rounded */
    box-shadow: 0 4px 10px var(--shadow-color);
    /* Added shadow */
}

.archive .sidebar h4 {
    color: var(--dark-gray);
    margin-bottom: 25px;
    /* Increased margin */
    font-weight: 600;
}

.archive .sidebar h5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    /* padding: 10px 0; */
    /* Added padding */
    border-bottom: 1px solid var(--border-color);
    /* Separator */
    margin-bottom: 0;
    /* Reset margin */
    font-weight: 500;
    color: var(--dark-gray);
}

.archive .sidebar h5:last-of-type {
    border-bottom: none;
    /* No border for the last one */
}

.archive .sidebar h5 .toggle-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.archive .sidebar-section.collapsed .toggle-icon {
    transform: rotate(-90deg);
    /* Rotate icon when collapsed */
}

.archive .sidebar-content {
    padding-top: 15px;
    /* Space after heading */
    padding-bottom: 15px;
    display: block;
    /* Ensure it's visible by default, will be toggled by JS */
}

.archive .list-group-item {
    background-color: transparent;
    border: none;
    padding: 5px 0;
    display: flex;
    /* For checkbox alignment */
    align-items: center;
}

.archive .list-group-item .form-check-input {
    margin-right: 10px;
    /* Space between checkbox and label */
    border-color: var(--medium-gray);
    cursor: pointer;
}

.archive .list-group-item .form-check-input:checked {
    background-color: var(--primary-color);
    /* Updated checkbox color */
    border-color: var(--primary-color);
}

.archive .list-group-item label {
    color: var(--dark-gray);
    cursor: pointer;
    flex-grow: 1;
    /* Allow label to take space */
}

.archive .list-group-item a {
    /* Keep for compatibility if list items remain links */
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.archive .list-group-item a:hover {
    color: var(--primary-color);
    /* Updated */
}

/* Price Range Slider */
.archive .form-range {
    width: 100%;
    height: 0.5rem;
    background-color: var(--border-color);
    border-radius: 0.5rem;
    outline: none;
    transition: opacity 0.15s ease-in-out;
    cursor: pointer;
}

.archive .form-range::-webkit-slider-thumb {
    width: 1.2rem;
    height: 1.2rem;
    background: var(--primary-color);
    /* Updated thumb color */
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
    -webkit-appearance: none;
    appearance: none;
}

.archive .form-range::-moz-range-thumb {
    width: 1.2rem;
    height: 1.2rem;
    background: var(--primary-color);
    /* Updated thumb color */
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
    -moz-appearance: none;
    appearance: none;
}

/* Pagination Styles */
.archive .pagination .page-link {
    color: var(--primary-color);
    /* Updated */
    border: 1px solid var(--border-color);
    border-radius: 5px;
    margin: 0 3px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.archive .pagination .page-link:hover {
    background-color: var(--primary-color);
    /* Updated */
    color: #fff;
}

.archive .pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    /* Updated */
    border-color: var(--primary-color);
    /* Updated */
    color: #fff;
}

.archive .pagination .page-item.disabled .page-link {
    color: var(--medium-gray);
    background-color: #fff;
    border-color: var(--border-color);
}

/* Layout Toggle Buttons */
.archive .layout-toggle-buttons {
    text-align: right;
    margin-bottom: 25px;
    /* Increased margin */
}

.archive .layout-toggle-buttons .btn {
    background-color: #fff;
    border: 1px solid var(--border-color);
    color: var(--dark-gray);
    margin-left: 8px;
    /* Increased margin */
    border-radius: 5px;
    padding: 8px 12px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.archive .layout-toggle-buttons .btn.active {
    background-color: var(--primary-color);
    /* Updated */
    border-color: var(--primary-color);
    /* Updated */
    color: #fff;
}

.archive .layout-toggle-buttons .btn:hover:not(.active) {
    background-color: var(--light-gray);
    color: var(--primary-color);
    /* Updated */
    border-color: var(--primary-color);
    /* Updated */
}

/* Custom description style for list view */
.archive .product-description {
    font-size: 0.95rem;
    /* Slightly larger font */
    color: #555;
    margin-top: 8px;
    /* Adjusted margin */
    line-height: 1.5;
}

/* Ensure responsive product card heights in grid view */
.archive .row.grid-view {
    display: flex;
    flex-wrap: wrap;
}

.archive .row.grid-view .col-md-4 {
    display: flex;
}

.archive .row.grid-view .col-md-4 .product-card {
    flex-grow: 1;
}

/* Specific styles for list view columns */
.archive .product-grid.list-view .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}



/* Product Info in List View - Ensure text takes available space */
.archive .product-card.list-view .product-info {
    flex: 1;
    padding-left: 15px;
    /* Increased padding for separation */
}

/* Fixed Sidebar on Scroll - Using position: sticky for smoother behavior */
.archive .sidebar-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    align-self: flex-start;
    height: fit-content;
    z-index: 10;
    margin-top: 0;
    /* Ensure sidebar is above other content if needed */
}

.archive #priceRange {
    width: 100%;
    appearance: none;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--secondary-color) 100%, #ccc 0%);
    outline: none;
}

.archive #priceRange::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    margin-top: -6px;
    /* adjust based on track height */
}

.archive #priceRange::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.archive #priceRange::-moz-range-track {
    background: none;
    height: 8px;
}

/** contact Us page ***/
.contact-section {
    padding: 60px 0;
}

.contact-section .contact-info-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 250px;
}

.contact-section .contact-info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-section .contact-info-card a {
    color: #212529;
    text-decoration: none;
}

.contact-section .contact-info-card a:hover {
    color: var(--primary-color);
}

.contact-section .form-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-section .google-map {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/** Service page ***/

.service-section {
    padding: 60px 0;
    overflow: hidden;
    /* Ensures no content overflow during animations */
}

.service-card {
    border: none;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    height: 100%;
    /* Initial state for animation */
    transform: translateY(20px);
}

.service-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-8px);
    /* Lift more on hover for a noticeable effect */
    box-shadow: var(--hover-shadow);
    /* Stronger shadow on hover */
}

.service-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
    display: inline-block;
    margin: auto;
}

.service-card:hover .service-image {
    transform: scale(1.1);
    /* Slightly enlarge image on card hover */
}

body .wpfMainWrapper #wpfBlock_3 {
    display: block !important;
}

#wpfBlock_3 .wpfFilterVerScroll li {
    display: block !important;
}

.woocommerce ul.products li.product .button {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.woocommerce ul.products.columns-3 li.product,
.woocommerce-page ul.products.columns-3 li.product {
    width: 30.75%;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 25px;
    background-color: #fff;
    box-shadow: 0 4px 10px var(--shadow-color);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
}

.woocommerce ul.products.columns-3 li.product:hover,
.woocommerce-page ul.products.columns-3 li.product:hover {
    transform: translateY(-5px);
}

.woocommerce span.onsale {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
    z-index: 10;
    font-weight: normal;
    right: 15px !important;
    line-height: unset !important;
    top: 10px !important;
    margin: unset !important;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
    padding: unset;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    text-decoration: none;
}

#wpfBlock_2 li {
    display: block !important;
}

/* Our Manufacturer Partners */
.manufacturer-section .manufacturer-carousel .item {
    padding: 10px;
    /* width: 30.75%; */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 25px;
    background-color: #fff;
    box-shadow: 0 4px 10px var(--shadow-color);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 150px;
}

.manufacturer-section .manufacturer-carousel .item:hover {
    transform: translateY(-5px);
}

.manufacturer-section .manufacturer-carousel .item img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.manufacturer-section .manufacturer-carousel .item span {
    color: #28a745;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

/* Arrow styles */
.manufacturer-section .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.manufacturer-section .owl-nav button {
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: background 0.3s;
}

.manufacturer-section .owl-nav button:hover {
    background: #1e7e34;
}

.manufacturer-section .owl-dots {
    margin-top: 20px;
    text-align: center;
}

.manufacturer-section .owl-dots .owl-dot span {
    background: #ccc;
}

.manufacturer-section .owl-dots .owl-dot.active span {
    background: #28a745;
}

/** prododuct insurance ***/
.insurances-product {
    margin: 0 auto;
    line-height: 1.6;
    color: #333;
}

.insurances-product p {
    margin-bottom: 20px;
}

.insurances-product img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
}

.cproduct-images {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* default for mobile */
    gap: 20px;
    justify-items: center;
    padding: 20px;
}

.cproduct-images .img {
    text-align: center;
    width: 100%;
    max-width: 250px;
}

.cproduct-images .img img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.video-section .video-wrapper {
    margin-bottom: 30px;
}

.video-section .video-wrapper i::before {
	color: var(--secondary-color);
}

.social-media-inner i {
    font-size: 24px;
}




/******* login my account page ****/
.my-account .my-account-in .nav .nav-link.active {
    background: var(--secondary-color);
    color: #06ffea;
    border-left: 6px solid #06ffea;
}

/** Login and Registration Form*/
button.woocommerce-button.button.woocommerce-form-login__submit.btn2 {
    padding: 10px 20px;
    font-size: 18px;
    background: #06ffea;
    color: #000 !important;
    font-weight: 600;
    border-radius: 4px;
    text-transform: capitalize;
    transition: all 0.7s;
}

.login-txt {
    width: 100%;
    margin: 0 auto;
    padding: 24px;
    background: white;
    box-shadow: 0px 4px 16px rgb(0 0 0 / 10%);
}

button.woocommerce-button.button.woocommerce-form-login__submit.btn2:hover {
    background: var(--secondary-color);
    color: #fff !important;
}

button.woocommerce-Button.woocommerce-button.button.wp-element-button.woocommerce-form-register__submit:hover {
    background: var(--secondary-color);
    color: #fff !important;
}

button.woocommerce-Button.woocommerce-button.button.wp-element-button.woocommerce-form-register__submit {
    padding: 10px 20px;
    font-size: 18px;
    background: #06ffea;
    color: #000 !important;
    font-weight: 600;
    border-radius: 4px;
    text-transform: capitalize;
    transition: all 0.7s;
}

button.btn2.woocommerce-Button.button.wp-element-button {
    padding: 10px 20px;
    font-size: 18px;
    background: #06ffea;
    color: #000 !important;
    font-weight: 600;
    border-radius: 4px;
    text-transform: capitalize;
    transition: all 0.7s;
}

button.btn2.woocommerce-Button.button.wp-element-button:hover {
    background: var(--secondary-color);
    color: white !important;
}

form.woocommerce-form.woocommerce-form-login.login.my-form span.password-input {
    width: 100%;
}



/**Dashboard */
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active {
    padding: 10px;
    background: var(--secondary-color);
    color: #06ffea;
    border-left: 6px solid #000;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active {
    padding: 10px;
    background-color: var(--secondary-color) !important;
    color: #06ffea !important;
    border-left: 6px solid #000 !important;
}

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

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    font-size: 20px;
    text-transform: capitalize;
    color: #fff;
    background: #f0f8f0 !important;
    border-radius: 0;
    padding: 16px 8px;
    border-bottom: 1px solid #adb5bd;
    border-left: 6px solid var(--secondary-color) !important;
}

.woocommerce-MyAccount-navigation-link a {
    color: #000 !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    margin-bottom: 40px;
}

/**Dashboard Accounts */
.col-md-12.my-right {
    box-shadow: 0px 4px 16px rgb(0 0 0 / 10%);
    padding: 32px;
    margin-bottom: 40px;
}

input#account_first_name {
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

input#account_last_name {
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

input#account_display_name {
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

input#account_email {
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

input#password_1 {
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

input#password_2 {
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

input#password_current {
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

form label {
    text-transform: capitalize;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #595959;
    text-align: left;
}

button.woocommerce-Button.button.wp-element-button {
    padding: 10px 20px;
    font-size: 18px;
    background: #06ffea;
    font-weight: 600;
    border-radius: 4px;
    text-transform: capitalize;
    transition: all 0.7s;
}

button.woocommerce-Button.button.wp-element-button:hover {
    background: var(--secondary-color);
    color: white;
}

.woocommerce form .password-input,
.woocommerce-page form .password-input {
    width: 100%;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
    max-width: 100%;
}

.woocommerce table.my_account_orders .button,
.order-again a,
.woocommerce-info .button.wc-forward,
.woocommerce-EditAccountForm .woocommerce-Button.button,
.woocommerce-button.button.woocommerce-form-login__submit,
.woocommerce-Button.woocommerce-button.button.woocommerce-form-register__submit,
#commentform #submit,
.woocommerce-ResetPassword.lost_reset_password .woocommerce-Button.button {
    white-space: nowrap;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
    height: 40px;
    padding: 4px 32px;
    border-radius: 50px;
    border: none !important;
    background-color: var(--secondary-color) !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:hover {
    background-color: #dcd7e2;
    text-decoration: none;
    background-image: none;
    color: #fff;
}


.woocommerce-account .woocommerce-MyAccount-navigation ul {
    padding: 12px;
    margin: 0 24px 0 0 !important;
    border-radius: 12px !important;
    border: 1px dashed #b5b5b5;
    background-color: var(--light-green);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    font-size: 16px;
    text-transform: capitalize;
    color: #474747 !important;
    background: transparent !important;
    border-radius: 0;
    padding: 4px 0 !important;
    border-bottom: none !important;
    border-left: none !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active {
    background-color: transparent !important;
    color: #fff !important;
    border-left: none !important;
}

.woocommerce-MyAccount-navigation-link a {
    cursor: pointer !important;
    display: block;
    font-size: 16px !important;
    color: #474747 !important;
    padding: 14px 16px;
    margin: 0;
    border-radius: 8px;
    border: 1px dashed #b5b5b5;
    background-color: #fff !important;
    transition: all 0.5s;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    color: #fff !important;
    border-color: transparent !important;
    background-color: #6ab76e !important;
}

#customer_details,
#order_review .shop_table.woocommerce-checkout-review-order-table,
.woocommerce-Reviews,
#payment,
.woocommerce-table.woocommerce-table--order-details.shop_table.order_details,
.woocommerce-column.woocommerce-column--1.woocommerce-column--billing-address.col-1 address,
.woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2 address {
    position: relative;
    width: 100%;
    padding: 32px;
    margin: 0 0 32px 0;
    border-radius: 12px !important;
    border: 1px dashed #b5b5b5 !important;
    background-color: var(--light-green) !important;
    transition: all 0.5s;
    z-index: 1;
}

.woocommerce-Reviews,
#payment {
    margin: 0 !important;
}

.woocommerce-Reviews .woocommerce-Reviews-title {
    margin-bottom: 0 !important;
}

form .input-text,
.comment-form-comment textarea,
#reviews.woocommerce-Reviews #author,
#reviews.woocommerce-Reviews #email {
    width: 100%;
    font-size: 14.8px;
    color: #4F4F4F !important;
    border-radius: 25px !important;
    border: 1px solid #b5b5b5;
    padding: 2px 14px;
    margin-bottom: 8px;
    height: 44px;
    background-color: #ffffff !important;
    outline: none !important;
    box-shadow: none !important;
}

.select2-container--default .select2-selection--single {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    font-size: 14.8px;
    color: #4F4F4F !important;
    border-radius: 25px !important;
    border: 1px solid #b5b5b5;
    padding: 2px 14px;
    margin-bottom: 0;
    height: 44px;
    background-color: #ffffff !important;
    outline: none !important;
    box-shadow: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 0 !important;
    bottom: 0 !important;
    margin: auto 0 !important;
}

textarea,
.comment-form-comment textarea {
    padding: 12px !important;
    height: 120px !important;
}

form .input-text:hover,
form .input-text:focus,
.comment-form-comment textarea:hover,
.comment-form-comment textarea:focus {
    border-color: #3dab43 !important;
}

.woocommerce-noreviews {
    margin-bottom: 4px;
}

.stars a {
    font-size: 22px;
}

.stars a:focus,
.stars a:hover,
.stars a:focus::before,
.stars a:hover::before,
.stars a::before {
    color: #f9c40d;
}

form label {
    font-weight: 500;
    color: #2d2d2d;
}

.comment-form-rating {
    margin-top: 12px;
}

.woocommerce form .form-row label {
    line-height: 124% !important;
}

#order_review_heading,
.woocommerce-billing-fields h3,
.woocommerce-order-details__title,
.woocommerce-order-details .woocommerce-order-details__title,
.woocommerce-column__title,
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    font-family: "Philosopher", sans-serif;
    font-size: 28.8px;
    font-weight: 700;
    line-height: 120%;
    color: #2d2d2d;
    text-transform: capitalize;
    margin: 0 0 20px 0;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    background-color: #6ab76e !important;
}

.woocommerce-error a,
.woocommerce-info a,
.woocommerce-message a,
.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
    color: #ffe30a !important;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
    border-radius: 10px;
    background-color: #6ab76e;
    color: #ffffff;
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
    border-bottom-color: #6ab76e;
}

#add_payment_method #payment div.payment_box p:last-child,
.woocommerce-cart #payment div.payment_box p:last-child,
.woocommerce-checkout #payment div.payment_box p:last-child {
    color: #ffffff;
}

.woocommerce form .form-row label.checkbox,
.woocommerce-page form .form-row label.checkbox {
    display: inline-flex;
    align-items: center;
}

.woocommerce-terms-and-conditions-checkbox-text {
    padding-left: 20px;
}

.woocommerce-shipping-fields .woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox {
    padding-left: 24px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
    /* font-size: 100%; */
    /* margin: 0; */
    line-height: 1;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: visible;
    /* padding: .618em 1em; */
    font-weight: 700;
    /* border-radius: 3px; */
    left: auto;
    color: #fff;
    background-color: #28a745;
    /* border: 0; */
    display: inline-block;
    background-image: none;
    box-shadow: none;
    text-shadow: none;
    margin: 10px;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    border: 1px solid var(--secondary-color);
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:hover {
    background-color: #dcd7e2;
    text-decoration: none;
    background-image: none;
    color: #fff;
    background: #fff;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled]:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled]:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled]:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled[disabled]:hover {
    background-color: #34a853 !important;
    color: #fff;
    margin-top: 0;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt {
    background-color: #34a853;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    margin-top: 0;
}

.woocommerce div.product form.cart .button {
    vertical-align: middle;
    float: left;
    margin-top: 0;
    background-color: #34a853 !important;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {

    margin-bottom: 20px !important;
}

.single-product .onsale {
    width: 10%;
    max-width: 100%;
    /* float: right !important; */
}

.woocommerce .quantity .qty {
    width: 100%;
    text-align: center;
}

.single-product .product_meta {
	display: none;
}

.woocommerce ul.products li.product .onsale {
	width: 30%;
	max-width: 100%;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
	display: block;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
	margin-left: 0;
}

.fixed-header {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: #fff; /* Or use your header background */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
body.has-fixed-header {
  padding-top: 100px; /* Adjust based on header height */
}

.contact-section .google-map iframe {
	width: 100%;
}

@media (max-width: 1199.98px) {

    .woocommerce-MyAccount-navigation-link a {
        font-size: 14px !important;
        padding: 10.8px 12.8px;
    }

    .nav-logo {
        height: 64px !important;
    }
}

@media (min-width : 991px) {
    ul.sub-menu .sub-menu {
        width: 280px;
        max-width: 300px;
    }

    .cproduct-images {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Responsive Styles */
@media (max-width: 991.98px) {

    h1.entry-title,
    h1 {
        font-size: 32px;
        line-height: 40px;
    }

    h2 {
        font-size: 28px;
        line-height: 36px;
    }

    h3 {
        font-size: 22px;
        line-height: 30px;
    }

    h4 {
        font-size: 20px;
        line-height: 28px;
    }

    h5 {
        font-size: 18px;
        line-height: 26px;
    }

    h6 {
        font-size: 16px;
        line-height: 22px;
    }


    .mobile-menu {
        display: block;
    }

    ul.wp-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--light-gray);
        flex-direction: column;
        display: none;
        z-index: 9999;
    }

    ul.wp-menu li {
        border-bottom: 1px solid #e5e5e5;
    }

    ul.wp-menu li a {
        padding: 12px 20px;
    }

    /* Disable hover behavior on mobile */
    li.menu-item-has-children:hover>.sub-menu {
        display: none !important;
    }

    /* Show submenu when .open is added (mobile toggle) */
    li.menu-item-has-children.open>.sub-menu {
        display: block !important;
    }

    ul.sub-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }

    ul.sub-menu .sub-menu {
        padding-left: 20px;
    }

    /* Override arrow icon positioning on mobile */
    li.menu-item-has-children>a:after {
        float: right;
        content: "\f107";
        font-family: FontAwesome;
        font-size: 14px;
        margin-right: 10px;
    }

    li.menu-item-has-children.open>a:after {
        content: "\f106";
        /* fa-angle-up */
    }

    li.menu-item-has-children li.menu-item-has-children>a::after {
        right: 22px;
    }

    body .order-2 {
        order: 2 !important;
    }


    .footer img {
        width: auto;
    }

    .head {
        width: 100%;
    }

    .archive .sidebar-wrapper {
        position: static;
        top: auto;
        width: auto;
        height: auto;
        margin-bottom: 30px;
        margin-top: 0;
        /* Add space below sidebar on smaller screens */
    }

    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        margin: 0 0 0 0 !important;
    }

    .single-product .onsale {
        width: 14%;
    }

}

@media (max-width: 767.98px) {

    .team-member img,
    .certification-item img {
        width: 90px;
        height: 90px;
    }

    .mission-vision h2 {
        font-size: 1.5rem;
    }

    .mission-vision p {
        font-size: 1rem;
    }

    .archive .product-card.list-view {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 15px;
        /* Reset padding for smaller screens */
    }

    .product-card.list-view .product-img-wrapper {
        margin-right: 0;
        margin-bottom: 15px;
        flex: none;
        /* Remove flex sizing */
        width: 100%;
        /* Adjust image width for better display */
        height: 180px;
    }

    .archive .product-card.list-view img {
        max-width: 100%;
    }

    .archive .product-card.list-view .price-wrapper {
        justify-content: center;
    }

    .archive .product-card.list-view .product-info {
        padding-left: 0;
    }

    .archive .layout-toggle-buttons {
        text-align: center;
        /* Center toggle buttons on small screens */
    }

    .archive .sidebar {
        padding: 20px;
    }

    .archive .product-card {
        margin-bottom: 20px;
        box-shadow: 0 2px 8px var(--shadow-color);
    }

    .archive .product-card h5 {
        font-size: 1.15rem;
    }

    .archive .product-card .price {
        font-size: 1.3rem;
    }

    .service-section {
        padding: 40px 0;
    }

    .service-card {
        padding: 25px;
        /* Slightly less padding on small screens */
    }

    .service-image {
        width: 80px;
        /* Smaller images on mobile */
        height: 80px;
        margin-bottom: 15px !important;
        /* Adjust margin if needed */
    }

    .woocommerce-MyAccount-navigation-link a {
        font-size: 13px !important;
        padding: 8.8px 12.8px;
    }

    #customer_details,
    #order_review .shop_table.woocommerce-checkout-review-order-table,
    .woocommerce-Reviews,
    #payment,
    .woocommerce-table.woocommerce-table--order-details.shop_table.order_details,
    .woocommerce-column.woocommerce-column--1.woocommerce-column--billing-address.col-1 address,
    .woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2 address {
        padding: 15px;
        margin: 0 0 20px 0;
    }

    .single-product .onsale {
        width: 30%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {

    /* Medium devices (md breakpoint) */
    .service-card {
        padding: 30px;
    }
}

@media (min-width: 600px) {
    .end-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 20px 40px;
    }

    .end-footer-text,
    .powered-by-wordpress {
        margin: 0;
        flex: 1;
    }

    .powered-by-wordpress {
        text-align: right;
    }

    /* Tablet - 2 columns */

    .cproduct-images {
        grid-template-columns: repeat(4, 1fr);
    }

}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .carousel-control-prev.custom-arrow {
        left: 5px;
    }

    .carousel-control-next.custom-arrow {
        right: 5px;
    }

    .contact-info p {
        font-size: 0.95rem;
    }

    .archive.product-card .product-img-wrapper {
        height: 180px;
    }

    .archive.product-card h5 {
        font-size: 1rem;
    }

    .archive.product-card .price {
        font-size: 1.2rem;
    }

    .archive .product-description {
        font-size: 0.85rem;
    }

    .archive .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .woocommerce ul.products.columns-3 li.product,
    .woocommerce-page ul.products.columns-3 li.product {
        width: 100%;
        padding: 0;
    }

    .woocommerce span.onsale {
        right: 18px !important;
        top: 15px !important;
    }

    .footer img {
        width: 50%;
    }

    .woocommerce ul.products li.product .button,
    .woocommerce ul.products li.product .price {
        margin-bottom: 20px;
    }

    .manufacturer-section .manufacturer-carousel .item span {
        font-size: 0.85rem;
    }
}

@media (max-width:540px) {
    .hero-section {
        padding: 20px 0;
        background-size: unset;
    }

    .gap-auto {
        gap: 0;
    }

    .hero-overlay {
        padding: 0 20px;
    }

    footer p {
        padding: 0 20px;
        margin-bottom: 0;
    }
}