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

body {
    font-family: "Montserrat", sans-serif;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #636363;
}

/* Header & Navigation */
.navbar {
    background-color: #07729e !important;
    padding: 5px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: white !important;
    padding: 0.5rem 0rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}
.navbar-brand .logo-img {
    height: 60px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 2rem;
    transition: opacity 0.3s;
}

.navbar-nav .nav-link:hover {
    opacity: 0.8;
}
.step-card-wrap {
    margin-bottom: 15px;
}
.step-card-wrap p {
    font-size: 14px;
    margin-top: 5px;
    text-align: left;
    margin-bottom: 0;
}
.step-card img {
    height: 168px;
}
/* Dropdown Menu */
.navbar-nav .dropdown-item {
    color: white !important;
    background-color: transparent;
    padding: 5px 20px;
    font-size: 0.9rem;
    transition: background-color 0.3s;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar-nav .dropdown-item:last-child {
    border-bottom: none;
}

.navbar-nav .dropdown-item:hover {
    background-color: #0a6693;
    color: white !important;
}

.navbar-nav .dropdown-menu {
    background-color: #05445eeb;
    border: none;
    padding: 5px 0 !important;
    min-width: 200px;
    border-radius: 4px;
    box-shadow: 0 12px 12px rgba(0, 0, 0, 0.15);
}

.navbar-nav .show .dropdown-menu {
    display: block !important;
}

.navbar-nav .dropdown-toggle::after {
    display: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2ba0c7 0%, #1b7a9e 100%);
    padding: 80px 0 150px;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 999;
}
.hero-section .row {
    min-height: 70vh;
}
.btn-1 {
    background: #188733;
    border: 1px solid #188733;
    padding: 10px 20px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500;
    display: inline-flex;
}

.btn-1:hover, .btn-1:focus, .btn-1:active {
    background: #017ead;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z" fill="%23ffffff"/></svg>') repeat-x;
    background-size: auto 100%;
}
.hero-section .banner-bg {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0.9;
    z-index: -1;
    object-fit: cover;
    object-position: bottom right;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.btn-green {
    background-color: #4caf50;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-green:hover {
    background-color: #45a049;
    color: white;
}

.btn-red {
    background-color: #e63946;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-red:hover {
    background-color: #d62828;
    color: white;
}

.btn-blue {
    background-color: #07729e;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-blue:hover {
    background-color: #45a049;
    color: white;
}

/* Page Header Section */
.page-header {
    padding: 30px 0 40px;
    color: white;
    background: linear-gradient(135deg, #007bb0 0%, #00597f 100%);
}

.page-header .breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.page-header .breadcrumb a {
    color: white;
    text-decoration: none;
}

.page-header .breadcrumb a:hover {
    opacity: 0.8;
}

.page-header .breadcrumb-item.active {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-custom {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.breadcrumb-custom a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb-custom a:hover {
    opacity: 0.7;
}

.breadcrumb-custom span {
    color: white;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #ffffff;
}

.page-header p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
}




/* Contact Form */
.contact-form {
    background: white;
    padding: 60px 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control,
.form-select {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: #1b7a9e;
    box-shadow: 0 0 0 0.2rem rgba(27, 122, 158, 0.15);
}

.form-control::placeholder {
    color: #999;
}

.form-text {
    font-size: 0.85rem;
    color: #666;
}

.required-field {
    color: #e63946;
}

.products-showcase {
    padding-top: 30px;
}

/* Products Grid */
.products-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
}

.product-card {
    background: white;
    border-radius: 8px;

    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    padding: 0;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

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

.product-card img {
    width: 100%;
    /* height: 250px; */
    object-fit: cover;
    margin-bottom: 0;
}

.product-card h5 {
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.product-card p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-card .btn {
    width: 80%;
}


.product-card .product-hover-card {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10%;
    z-index: 2;
    text-align: left;
}

.product-card .product-hover-card h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #dd6a00;
}


/* Sidebar */
.sidebar {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
}

.sidebar h5 {
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin-bottom: 1rem;
}

.sidebar ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: block;
    padding: 0.5rem 0;
}

.sidebar ul li a:hover,
.sidebar ul li a.active {
    color: #1b7a9e;
    font-weight: 600;
}

/* How to Open Section */
.how-to-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.how-to-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.step-card {
    text-align: center;
    padding: 50px 25px;
    background: linear-gradient(180deg, #e8f2f7 0%, #d4e8f0 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(27, 122, 158, 0.15);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #1b7a9e 0%, #0f5577 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(27, 122, 158, 0.3);
}

.step-card h4 {
    font-size: 1.4rem;
    color: #1b7a9e;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.step-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Privacy Policy Content */
.policy-content {
    background: white;
    padding: 60px 0;
    line-height: 1.8;
}

.policy-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.policy-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #555;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-content ul li {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: #007db3;
    color: white;
    padding: 3rem 0 1rem;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    transition: opacity 0.3s;
    font-weight: 500;
    display: inline-block;
}

footer a:hover {
    opacity: 0.8;
}

.footer-links {
    margin-bottom: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.5rem;
}

.social-icons {
    margin-bottom: 1rem;
}

.social-icons a {
    margin: 0 0.5rem;
    font-size: 1.2rem;
}
.social-icons i {
    font-size: 26px;
}

.social-icons a {
    line-height: 1.2;
    display: inline-block;
    padding: 5px 10px;
}
.footer-bottom {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.footer-bottom p {
    margin: 0;
}
.footer-logo {
    margin-bottom: 30px;
}
.header .navbar .navbar-toggler {
    border: none;
    box-shadow: none;
    font-size: 30px;
}



        /* Header Section */
       

        .sidebar-filters {
            background-color: #f3f3f3;
            padding: 30px;
            border-radius: 8px;
            height: fit-content;
            position: sticky;
            top: 110px;
        }

        .filter-title {
            font-size: 1.2rem;
            color: #636363;
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 10px;
            text-transform: capitalize;
            border-bottom: 1px solid #cfcfcf;
        }

        .filter-list {
            list-style: none;
            padding: 0;
        }

        .filter-list li {
            margin-bottom: 0;
            padding: 5px;
        }

        .filter-list li:hover {
            background-color: #07729E;
            padding: 5px;
            border-radius: 5px;
        }

        .filter-list a {
            color: #666;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s;
            display: block;
            padding: 4px 0;
        }

        .filter-list a:hover
        {
            color: #ffffff;
            /* font-weight: 600; */
            /* padding-left: 8px; */
        }

        .filter-list a.active {
            color: #6ba643;
            /* font-weight: 600; */
            /* padding-left: 8px; */
        }

        /* Product Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 0;
        }

        .product-card {
            border-radius: 8px;
       
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }

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

        .product-image {
            background-color: #ffffff;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 250px;
            border: 1px solid #ccc;
                margin-bottom: 16px;
                border-radius: 8px;
        }

        .product-image img {
            max-width: 100%;
            max-height: 240px;
            object-fit: contain;
        }

        .product-info {
            padding: 0;
        }

        .product-name {
            font-size: 1.1rem;
            color: #333;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .product-type {
            font-size: 0.85rem;
            color: #999;
            text-transform: capitalize;
            margin-bottom: 15px;
        }

        .product-btn {
            background-color: #6ba643;
            color: white;
            border: none;
            padding: 10px 20px;
            font-weight: 600;
            font-size: 0.85rem;
            border-radius: 4px;
            transition: background-color 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
        }

        .product-btn:hover {
            background-color: #5a8f38;
            color: white;
            text-decoration: none;
        }

.search-loaction-box input:focus {
    border-radius: 8px;
    box-shadow: none;
    border-color: #dddddd;
}
.search-loaction-box .btn.btn-light.border {
    border-left: none;
    background: #ffffff;
}
.nearby-search-box {
    display: flex;
    gap: 10px;
    align-items: center;
}
.whitespace-no {
    white-space: nowrap;
}
.bg-theme {
    background-color: #007bb0;
}
.modal-top-img-info img {
    height: 100px;
    object-fit: contain;
}
.modal-header .modal-logo {
    margin-top: -80px;
    width: 200px;
}
.productModal .modal-dialog {
    padding-top: 130px;
}
.store-card {
    background-color: #ffffff;
    text-decoration: none;
}
.store-card img {
    width: 120px;
    height: 40px;
    object-fit: contain;
}
.productModal  .modal-body {
  background: #f7f7f7;
}
.term-of-use {
    
}
.term-of-use p {
    font-size: 14px;
    color: #000000;
}
.term-of-use p a {
    color: inherit;
    text-decoration: none;
}

 /* Product Details Section */
        .product-details-section {
            padding: 60px 0;
            background-color: white;
        }

        .product-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .product-images {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            /* width: 100%; */
        }

        .main-image {
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .main-image img {
            max-width: 100%;
            height: 400px;
            object-fit: contain;
        }

        .thumbnail-images {
            display: flex;
            gap: 1rem;
        }

        .thumbnail-images img {
            width: 80px;
            height: 80px;
            border: 2px solid #e0e0e0;
            border-radius: 4px;
            cursor: pointer;
            transition: border-color 0.3s;
        }

        .thumbnail-images img:hover {
            border-color: #1b7a9e;
        }

        .product-info h2 {
            color: #999;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .product-info h1 {
            font-size: 2.5rem;
            color: #333;
            font-weight: 600;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .product-description {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .product-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem;
            
        }

        .product-actions .shop-btn {
            padding: 12px 30px;
            font-size: 0.9rem;
        }

        .smart-global-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: #333;
        }

        .smart-global-badge img {
            height: 50px;
        }

        /* Benefits Section */
        .benefits-section {
            padding: 60px 0;
            background-color: #f9f9f9;
            border-top: 1px solid #e0e0e0;
        }

        .benefits-section h2 {
            font-size: 2rem;
            color: #666;
            font-weight: 600;
            margin-bottom: 2rem;
        }

        .benefits-list {
            list-style: none;
            padding: 0;
        }

        .benefits-list li {
            color: #666;
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .benefits-list li:before {
            content: '•';
            color: #6ba643;
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }

        /* Safety Section */
        .safety-section {
            padding: 60px 0;
            background-color: white;
        }

        .safety-section h2 {
            font-size: 2rem;
            color: #666;
            font-weight: 600;
            margin-bottom: 2rem;
        }

        .safety-list {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }

        .safety-list li {
            color: #666;
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .safety-list li:before {
            content: '•';
            color: #6ba643;
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }

        .safety-subsection h3 {
            font-size: 0.95rem;
            color: #333;
            font-weight: 600;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }

        /* Related Products Section */
        .related-products {
            padding: 60px 0;
            background-color: #f9f9f9;
            border-top: 1px solid #e0e0e0;
        }

        .related-products h2 {
            font-size: 2rem;
            color: #666;
            font-weight: 600;
            text-align: center;
            margin-bottom: 3rem;
        }

        .related-product-card {
            text-align: center;
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

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

        .related-product-card img {
            width: 100%;
            height: 300px;
            object-fit: contain;
            margin-bottom: 1.5rem;
        }

        .related-product-card h3 {
            font-size: 1.2rem;
            color: #333;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }


        .divider-1 {
            margin: 3rem 0; border: none; border-top: 1px solid #9b9b9b;
        }

        .modal-product-header {
            display: flex;
            align-items: center;
        }
        .modal-product-header .product-img {
            align-self: start;
            flex: 0 0 100px;
            width: 100px;
        }

        .modal-product-header .mph-content {
            flex: 0 0 calc(100% - 100px);
            width: calc(100% - 100px);
            padding-left: 15px;
        }


        
.breadcrumb-section .breadcrumb-item, .breadcrumb-section .breadcrumb-item a {
  color: #333333;
  text-decoration: none;
}
.breadcrumb-section {
  padding: 40px 0;
}

.odorDoctor-support-box {
    border: 1px solid #f3e100;
    padding: 20px;
    border-radius: 15px;
    background: #fdffe4;
    box-shadow: 0 4px 20px #00000012;
}
.odorDoctor-support-box p {
    margin: 0;
}
.odorDoctor-support-box h2 {
    font-size: 24px;
    color: #000000;
}
.custom-file-upload {
    border: 1px solid #e2e6f0;
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-file-upload:hover {
    border-color: #07729e;
    background: #dbf5ff;
}

.custom-file-upload input {
    display: none;
}

.file-icon {
    color: #07729e;
    font-size: 18px;
}

.file-label {
    font-size: 14px;
    color: #4a5670;
}
#sync2 {

}
.thumbnail-img {
    background: #e7e7e7;
    padding: 5px;
    
}
.thumbnail-img img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    
}

#sync1 {
    position: relative;
    z-index: 1;
}
#sync1 .owl-prev ,
#sync1 .owl-next {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    z-index: 99;
    opacity: 0.5;
}
#sync1 .owl-prev {
    left: 0;
}
#sync1 .owl-next {
    right: 0;
}
#sync1 .owl-prev:hover,
#sync1 .owl-next:hover {
    opacity: 1;
    background: #ffffff;
}

.wtbSec {
    padding: 100px 0;
}
.wtbSec_text{
    font-size: 22px;
}

.wtbLogoList {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: center;
}

.wtbLogoList li {
    flex: 0 0 18%;
}
.wtbLogoList img {
    max-height: 230px;
    width: auto;
    display: block;
    max-width: 100%;
    width: 100%;
    object-fit: contain;
    border: 2px solid #ccc;
    height: 200px;
    padding: 15px;
}
/* Responsive */
@media (min-width: 1200px) {
    .hero-section .hero-content {
        padding-right: 15%;
    }
}
@media (max-width: 1399px) {
    .hero-content h1 {
        font-size: 3rem;
    }

}

@media (max-width: 1199px) {
    .hero-section .row {
        min-height: 350px;
    }
    .thumbnail-img img {
        height: 70px;
    }

    .wtbLogoList li {
    flex: 0 0 24%;
}
}
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        margin-left: 0;
        font-size: 0.85rem;
    }
    .navbar-nav .dropdown-menu {
        background-color: #07729e;
        box-shadow: none;
        margin: 0;
        padding-top: 0 !important;
    }
    .navbar-nav .dropdown-item {
        font-size: 0.8rem;
    }
    /* .menu-times {
        display: none;
    } */
    .navbar-toggler.collapsed .menu-times {
        display: none;  
    }
    .navbar-toggler:not(.collapsed) .menu-bars {
        display: none;
    }
    #navbarNav {
        padding-top: 15px;
    }
    .hero-section .row {
        min-height: auto;
    }
       .hero-content h1 {
        font-size: 2rem;
    }
    .how-to-section h2 {
        font-size: 34px;
    }
    .how-to-section {
        padding: 40px 0;
    }
    .hero-section {
        padding-top: 40px;
        padding-bottom: 110px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .thumbnail-img img {
        height: 45px;
    }
.wtbLogoList li {
    flex: 0 0 48%;
}
}
@media (max-width: 767px) {
    .wtbLogoList li {
    flex: 0 0 100%;
}
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.5rem 0;
    }

    .product-card {
        margin-bottom: 2rem;
    }

    .step-card {
    }
    .hero-section .banner-bg {
        position: relative;
        top: 0;
        left: 0;
        height: auto;
        width: 140%;
        margin-left: -40%;
    }
    .hero-section {
        padding-top: 0;
    }
    .hero-section .hero-content {
        padding-top: 30px;
    }
        .how-to-section h2 {
            font-size: 30px;
        }
        .social-icons a {
            margin: 0;
        }
        .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 20px;
            }

            .page-header h1 {
                font-size: 1.8rem;
            }

            .page-header p {
                font-size: 0.9rem;
            }

            .product-image {
                min-height: 220px;
            }
            .product-main {
                grid-template-columns: 1fr;
            }
            .product-details-section {
                padding-top: 40px;
                padding-bottom: 40px;
            }
            .product-info h1 {
                font-size: 2rem;
            }
            .product-info {
                margin-top: 30px;
            }
}
/* 767px */

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .modal-product-header {
        display: block;
    }
    .modal-product-header .product-img,
    .modal-product-header .mph-content {
        flex: 0 0 100%;
        width: 100%;
        padding-left: 0px;
    }
}