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

body {
    font-family: Arial, sans-serif;
    background: #031513;
    color: white;
}


/* NAVBAR */

.navbar {
    height: 72px;

    display: flex;
    align-items: center;

    padding: 0 6%;

    background: #031513;

    border-bottom: 1px solid #123d38;
}

.logo {
    font-size: 27px;
    font-weight: bold;

    line-height: 22px;
}

.logo span {
    color: #00e6c3;
}

.logo small {
    display: block;

    font-size: 8px;
    letter-spacing: 4px;

    margin-top: 7px;

    color: #ddd;
}


.navbar nav {
    display: flex;

    gap: 38px;

    margin-left: 13%;
}

.navbar nav a {
    color: white;

    text-decoration: none;

    font-size: 15px;

    padding: 27px 0 22px;
}

.navbar nav a:hover,
.navbar nav a.active {
    color: #00e6c3;

    border-bottom: 2px solid #00e6c3;
}


.nav-right {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 25px;
}


.search {
    width: 310px;
    height: 40px;

    border: 1px solid #17645c;

    border-radius: 25px;

    display: flex;
    align-items: center;

    padding: 0 15px;
}

.search input {
    width: 100%;

    background: transparent;

    border: none;
    outline: none;

    color: white;
}

.search input::placeholder {
    color: #999;
}

.search i {
    color: #00e6c3;
}


.icon {
    color: white;

    font-size: 20px;

    text-decoration: none;
}

.icon:hover {
    color: #00e6c3;
}



/* HERO */

.hero {
    height: 430px;

    position: relative;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 12, 11, 0.85),
            rgba(0, 12, 11, 0.25)
        ),
        url("../image/welcome-background2.png");

    background-size: cover;

    background-position: center;

    border-bottom: 1px solid #123d38;
}


.hero-content {
    position: absolute;

    left: 8%;

    top: 50%;

    transform: translateY(-50%);
}


.small-heading {
    color: #00e6c3;

    font-size: 13px;

    letter-spacing: 5px;

    margin-bottom: 22px;
}


.hero h1 {
    font-size: 55px;

    line-height: 1.05;

    margin-bottom: 20px;
}

.hero h1 span {
    color: #00e6c3;
}


.hero-text {
    color: #ddd;

    font-size: 16px;

    line-height: 1.6;

    margin-bottom: 25px;
}


.shop-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    width: 200px;

    height: 52px;

    border: 2px solid #00e6c3;

    border-radius: 30px;

    color: white;

    text-decoration: none;

    letter-spacing: 3px;

    font-size: 13px;

    box-shadow: 0 0 15px rgba(0, 230, 195, 0.35);
}

.shop-button:hover {
    background: #00e6c3;

    color: #001513;
}



/* SERVICES */

.services {
    min-height: 90px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    padding: 15px 7%;

    background: #041c19;

    border-bottom: 1px solid #123d38;
}


.service {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    border-right: 1px solid #19443f;
}

.service:last-child {
    border-right: none;
}

.service i {
    color: #00e6c3;

    font-size: 27px;
}

.service h3 {
    font-size: 14px;

    margin-bottom: 5px;
}

.service p {
    color: #999;

    font-size: 12px;
}



/* SECTIONS */

.section {
    width: 88%;

    margin: auto;

    padding: 35px 0 10px;
}


.section-heading {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 20px;
}


.section-heading h2 {
    font-size: 27px;
}

.section-heading h2 span {
    color: #00e6c3;
}

.section-heading a {
    color: #00e6c3;

    text-decoration: none;

    font-size: 14px;
}



/* CATEGORY */

.category-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}


.category-card {
    height: 190px;

    position: relative;

    overflow: hidden;

    border: 1px solid #17645c;

    border-radius: 9px;

    text-decoration: none;

    background: #061d1b;
}


.category-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.3s;
}

.category-card:hover img {
    transform: scale(1.04);
}


.card-name {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    padding: 15px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    background: linear-gradient(
        transparent,
        rgba(0, 10, 9, 0.95)
    );

    color: white;

    font-weight: bold;
}

.card-name b {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #00e6c3;

    border-radius: 50%;

    color: #00e6c3;
}



/* PRODUCTS */

.featured-section {
    padding-bottom: 40px;
}


.product-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}


.product-card {
    min-height: 145px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 10px;

    background: #061d1b;

    border: 1px solid #10443e;

    border-radius: 9px;

    position: relative;
}


.product-card > img {
    width: 120px;
    height: 110px;

    object-fit: contain;

    background: #031311;

    border: 1px solid #17645c;

    border-radius: 7px;
}


.product-details {
    padding-right: 35px;
}

.product-details h3 {
    font-size: 14px;

    line-height: 1.4;

    margin-bottom: 15px;
}

.product-details p {
    color: #00e6c3;

    font-size: 17px;

    font-weight: bold;
}


.product-button {
    position: absolute;

    right: 12px;
    bottom: 12px;

    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #00e6c3;

    border-radius: 50%;

    color: #00e6c3;

    text-decoration: none;
}



/* FOOTER */

.footer {
    min-height: 110px;

    padding: 25px 7%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-top: 1px solid #123d38;

    background: #031513;
}


.footer-brand h2 {
    font-size: 25px;
}

.footer-brand h2 span {
    color: #00e6c3;
}

.footer-brand p {
    color: #999;

    font-size: 9px;

    letter-spacing: 4px;

    margin-top: 7px;
}


.footer-social {
    display: flex;

    gap: 18px;
}

.footer-social i {
    font-size: 18px;

    color: white;
}


.footer-right {
    color: #ddd;

    font-size: 10px;

    letter-spacing: 4px;

    text-align: right;
}


.copyright {
    padding: 12px 7%;

    color: #777;

    font-size: 11px;

    border-top: 1px solid #0c302c;
}



/* MOBILE */

@media (max-width: 900px) {

    .navbar nav {
        gap: 15px;

        margin-left: 5%;
    }

    .search {
        width: 180px;
    }

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

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

}


@media (max-width: 600px) {

    .navbar {
        height: auto;

        padding: 15px 5%;

        flex-wrap: wrap;

        gap: 15px;
    }

    .navbar nav {
        order: 3;

        width: 100%;

        justify-content: center;
    }

    .nav-right {
        gap: 12px;
    }

    .search {
        display: none;
    }

    .hero {
        height: 500px;
    }

    .hero h1 {
        font-size: 40px;
    }

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

    .service {
        padding: 12px;

        border-bottom: 1px solid #19443f;
    }

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

    .footer {
        flex-direction: column;

        gap: 20px;

        text-align: center;
    }

    .footer-right {
        text-align: center;
    }

}