@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");

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

h1 {
    font-size: 50px;
    line-height: 64px;
    color: #222;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #222;
}

h4 {
    font-size: 20px;
    color: #222;
}

h6 {
    font-weight: 700;
    font-size: 12px;
}

p {
    font-size: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px;
}

.section-m1 {
    margin: 40px 0;
}

button.normal {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #000;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}

button.white {
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
    border: 1px solid #fff;
    outline: none;
    transition: 0.2s;
}

body {
    width: 100%;
}

/* Header Start */

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #F4FFF9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar form input {
    padding: 6px 15px;
    border-radius: 4px;
    outline: none;
    border: 1px solid #e1e1e1;
}

#navbar form button {
    padding: 6px 15px;
    color: #000;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
    background-color: #088178;
    color: #fff;
}

#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: #088178;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: #088178;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#mobile {
    display: none;
    align-items: center;
}

#close {
    display: none;
}

/* Home Page */

#hero {
    background-image: url('/img/hero03.png');
    background-color: #F4FFF9;
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 25% right 0;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero h1 {
    color: #088178;
}

#hero form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    padding: 10px 10px;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin-top: 1rem;
}

#hero form .search {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #ccc;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

#hero form .search:focus {
    border-color: #088178;
}

#hero form label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    color: #555;
    padding: 5px;
    gap: 5px;
}

#hero form input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 18px;
    border: 2px solid #bbb;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

#hero form input[type="checkbox"]:checked {
    background-color: #088178;
    border-color: #088178;
}

#hero form button {
    background-color: #088178;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#hero form button:hover {
    background-color: #03554e;
    transform: scale(1.05);
}

#hero form button i {
    margin: 0;
}

#hero .price-range {
    margin: 10px 0;
}

#hero .slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#hero .slider-container input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    transition: background 0.3s;
}

#hero .slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #088178;
    cursor: pointer;
    transition: background 0.3s;
}

#hero .slider-container input[type="range"]:hover::-webkit-slider-thumb {
    background: #03554e;
}

#hero .price-labels {
    font-size: 16px;
    color: #555;
    font-weight: bold;
    display: flex;
    justify-content: center;
    gap: 5px;
}


#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#feature .fe-box {
    width: 320px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid #cce7d0;
    border-radius: 4px;
    margin: 15px 0;
}

#feature .fe-box:hover {
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}

#feature .fe-box img {
    width: 100%;
    margin-bottom: 10px;
}

#feature .fe-box h6 {
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: #088178;
    background-color: #fddde4;
}

#feature .fe-box:nth-child(2) h6 {
    background-color: #cdebbc;
}

#feature .fe-box:nth-child(3) h6 {
    background-color: #d1e8f2;
}

#feature .fe-box:nth-child(4) h6 {
    background-color: #cdd4f8;
}

#feature .fe-box:nth-child(5) h6 {
    background-color: #f6dbf6;
}

#feature .fe-box:nth-child(6) h6 {
    background-color: #fff2e5;
}

#product1 {
    text-align: center;
}

#product1 .pro-container {
    display: flex;
    padding-top: 20px;
    flex-wrap: wrap;
    column-gap: 30px;
    justify-content: center;
}

#product1 .pro {
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
}

#product1 .ads-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #FFCC80;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
    z-index: 10;
}

#product1 .pro:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product1 .pro img {
    width: 100%;
    width: 370px;
    height: 270px;
    border-radius: 20px;
}

#product1 .pro .des {
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .des span {
    color: #606063;
    font-size: 12px;
}

#product1 .pro .des h5 {
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 14px;
}

#product1 .pro .des i {
    font-size: 12px;
    color: rgb(243, 181, 25);
}

#product1 .pro .des h4 {
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #088178;
}

footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

footer .logo {
    margin-bottom: 30px;
}

footer h4 {
    font-size: 14px;
    padding-bottom: 20px;
}

footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a {
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin-bottom: 10px;
}

footer .follow {
    margin-top: 20px;
}

footer .follow i {
    color: #465b52;
    padding-right: 4px;
    cursor: pointer;
}

footer .install .row img {
    border: 1px solid #088178;
    border-radius: 6px;
}

footer .install img {
    margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover {
    color: #088178;
}

footer .copyright {
    width: 100%;
    text-align: center;
}

#product1 .pagination {
    text-align: center;
    margin-top: 20px;
}

#product1 .pagination a {
    border-radius: 5px;
    background-color: #088178;
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

#product1 .pagination a:hover {
    background-color: #26a098;
    color: white;
}

#product1 .pagination a.active {
    background-color: #26a098;
    color: white;
    border-color: #088178;
}


/* Start Media Query */

@media (max-width: 1699px) {
    #product1 .pro img {
        width: 100%;
    }

    #hero form {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    #hero form .search {
        flex: 0.7;
    }

    #hero form button {
        flex: 0.3;
    }
}

@media (max-width:1099px) {
    .section-p1 {
        padding: 40px 40px;
    }

    #header form {
        flex-direction: column;
        /* Stack items vertically */
        align-items: flex-start;
    }

    #header input.search {
        width: 100%;
        /* Full width */
        margin-bottom: 10px;
        /* Add space between input and button */
    }

    #header button {
        width: 100%;
        /* Make button full width */
    }

    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: #F4FFF9;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.01);
        padding: 80px 0 0 10px;
        transition: 0.3s;
    }

    #navbar.active {
        right: 0px;
    }

    #navbar li a {
        font-size: 24px;
    }

    #navbar li {
        margin-bottom: 25px;
    }

    #mobile {
        display: flex;
        align-items: center;
    }

    #mobile i {
        color: #1a1a1a;
        font-size: 40px;
        padding-left: 20px;
    }

    #close {
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: #222;
        font-size: 40px;
    }

    #lg-bag {
        display: none;
    }

    #header img {
        width: 30%;
    }

    #hero {
        height: 70vh;
        padding: 0 80px;
        background-position: top 30% right 70%;
    }

    #hero h4 {
        font-size: 24px;
    }

    #hero h2 {
        color: #088178;
    }

    #hero p {
        color: #088178;
        font-size: 20px;
    }

    #feature {
        justify-content: center;
    }

    #feature .fe-box {
        width: 290px;
        margin: 15px 15px;
    }

    #product1 .pro-container {
        justify-content: center;
    }

    #product1 .pro {
        width: 40%;
        margin: 15px;
    }

    #product1 .pro img {
        width: 100%;
        height: 240px;
    }

    #product1 .pagination a {
        padding: 8px 12px;
        font-size: 14px;
    }

    #newsletter .form {
        width: 70%;
    }

    #hero form {
        flex-direction: column;
        align-items: stretch;
    }

    #hero form .search {
        width: 100%;
        margin-bottom: 10px;
    }

    #hero form button {
        width: 100%;
    }

    #hero .slider-container {
        width: 100%;
    }
}

@media (max-width:799px) {

    #header input.search {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }

    #header button {
        width: 100%;
        padding: 12px 20px;
    }

    #mobile i {
        font-size: 24px;
    }

    #close {
        font-size: 24px;
    }

    #hero {
        height: 70vh;
        padding: 0 80px;
        background-position: top 30% right 30%;
    }

    #feature .fe-box {
        width: 250px;
    }

    #product1 .pro {
        margin: 15px;
    }

    #product1 .pro img {
        width: 100%;
        height: 210px;
    }

    #product1 .pagination a {
        padding: 6px 10px;
        font-size: 12px;
    }

    #hero form .search {
        padding: 8px 12px;
    }

    #hero form button {
        padding: 12px 20px;
        font-size: 16px;
    }

    #hero .slider-container input[type="range"] {
        height: 5px;
    }

    #hero .price-labels {
        font-size: 14px;
    }
}

@media (max-width: 477px) {

    .section-p1 {
        padding: 20px;
    }

    #header {
        padding: 10px 30px;
    }

    #header input.search {
        width: 100%;
        /* Full width */
        padding: 14px;
        /* Increase padding */
        font-size: 16px;
        /* Increase font size */
    }

    #header button {
        width: 100%;
        /* Make button full width */
        padding: 14px 25px;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 32px;
    }

    #hero {
        padding: 0 20px;
        background-position: 55%;
    }

    #feature {
        justify-content: space-between;
    }

    #feature .fe-box {
        width: 155px;
        margin: 0 0 15px 0;
    }

    #product1 .pro {
        width: 100%;
    }

    #product1 .pro img {
        width: 100%;
    }

    #product1 .pagination {
        margin-top: 15px;
    }

    #product1 .pagination a {
        padding: 5px 8px;
        font-size: 11px;
        margin: 0 3px;
    }

    #newsletter {
        padding: 40px 20px;
    }

    #newsletter .form {
        width: 100%;
    }

    footer .copyright {
        text-align: start;
    }

    #hero form .search {
        font-size: 14px;
        padding: 6px 10px;
    }

    #hero form button {
        font-size: 14px;
        padding: 10px 18px;
    }

    #hero .price-labels {
        font-size: 12px;
    }
}

@media (max-width:344px) {
    #feature .fe-box {
        width: 140px;
    }

    #hero form .search {
        font-size: 12px;
        padding: 5px 8px;
    }

    #hero form button {
        font-size: 12px;
        padding: 8px 15px;
    }

    #hero .price-range {
        font-size: 12px;
    }

    #hero .slider-container input[type="range"] {
        height: 4px;
    }
}