@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Miranda+Sans:ital,wght@0,400..700;1,400..700&family=Noto+Sans+JP:wght@100..900&family=Odor+Mean+Chey&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #eeee;
}

/* navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #eeee;
    padding: 15px;
    box-shadow: 0 2px 2px rgba(172, 167, 167, 0.5);
    position: relative;
}

nav .logo {
    margin-left: 50px;
    font-size: 19px;
    font-family: "Noto Sans JP", sans-serif;
}

ul {
    margin-right: 65px;
    margin-top: 7px;
}

nav ul li {
    list-style: none;
}

ul li a {
    margin-inline: 20px;
    font-size: 17px;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
    position: relative;
    cursor: pointer;
}

ul li a:hover {
    color: #0a6363;
    cursor: pointer;
}

ul li i {
    font-size: 21px;
    cursor: pointer;
}

ul li i:hover {
    color: rgb(11, 114, 114);
}

/* badge */
.badge {
    position: absolute;
    top: 28px;
    right: 77px;
    background-color: #0a6363;
    color: white;
    font-size: 12px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul li #home {
    color: #0e8a8a;
}

/* toggle button */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
    margin-right: 20px;
}

/*  Responsive navbar  */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    ul {
        position: absolute;
        top: 75px;
        right: -64px;
        background: white;
        width: 50%;
        float: left;
        display: none;
        text-align: center;
        padding: 20px 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    ul.active {
        transform: translateX(0);
    }

    ul li {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-top: 20px;
    }

    ul li a {
        display: block;
        font-size: 18px;
        color: white;
        text-align: center;
    }

    ul.active {
        display: block;
    }

    ul li i {
        display: none;
    }

    .badge {
        display: none;
    }
}


/* hero section  */
.main {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.main .mainText {
    margin-top: 120px;
    margin-left: 40px;
}

.mainText h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 27px;
}

.mainText h1 {
    font-size: 55px;
    font-family: "Miranda Sans", sans-serif;
}

.mainText .top {
    color: #0e8a8a;
}

.mainText p {
    margin-top: 12px;
    font-size: 17px;
    line-height: 27px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mainText button {
    width: 150px;
    height: 45px;
    background-color: #0e8a8a;
    color: white;
    border: none;
    outline: none;
    font-size: 18px;
    margin-top: 27px;
}

.mainText button:hover {
    border: 2px solid #0e8a8a;
    background-color: transparent;
    color: #0e8a8a;
}

.main img {
    position: relative;
    right: 60px;
    bottom: 60px;
}


@media (max-width: 992px) {
    .main {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 10px;
    }

    .main .mainText {
        margin: 20px 0;
    }

    .main img {
        position: static;
        width: 50%;
        display: block;
        margin: 10px auto;
    }

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

    .mainText p {
        margin-left: 30px;
        margin-right: 30px;
    }
}


/* Mobile */
@media (max-width: 576px) {
    .main {
        align-items: center;
        gap: 5px;
    }

    .main .mainText {
        margin: 30px 0;
    }

    .main img {
        width: 70%;
        margin: 5px auto;
    }

    .mainText h1 {
        font-size: 30px;
    }

    .mainText h2 {
        font-size: 20px;
    }

    .mainText p {
        font-size: 14px;
    }

    .mainText button {
        width: 130px;
        height: 40px;
        font-size: 16px;
    }

}

/* cards section start */
/* main Heading */
.trend .head {
    text-align: center;
    padding: 33px;
    margin-top: 22px;
    font-size: 19px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
}

.head span {
    color: #0a6363;
}

/* container */
.card {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

/* card */
.card .crd {
    width: 300px;
    height: 500px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
}

/* image */
.crd img {
    width: 85%;
    height: 335px;
    object-fit: cover;
    padding: 22px;
    transition: all 0.2s ease;
}

.crd img:hover {
    transform: scale(0.9);
}

/* text */
.crdText {
    text-align: center;
}

.crdText h1 {
    font-size: 19px;
    margin-bottom: 10px;
    font-family: "Roboto", sans-serif;
    color: #0a6363;
    font-weight: bold;
}

.crdText button {
    padding: 9px 20px;
    border: none;
    border-radius: 3px;
    background-color: #0a6363;
    color: white;
    font-size: 17px;
    margin-top: 11px;
    font-family: "Roboto", sans-serif;
    cursor: pointer;
}

.crdText button:hover {
    background-color: transparent;
    color: #0a6363;
    border: 2px solid #0a6363;
}

.crdText i {
    color: orange;
}


/* blog section start */
.trends .head {
    text-align: center;
    padding: 33px;
    margin-top: 22px;
    font-size: 19px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
}

.head span {
    color: #0a6363;
}

.blog {
    display: flex;
    justify-content: center;
    width: 470px;
    height: 280px;
    background-color: white;
    border-radius: 12px;
    margin-inline: 11px;
    overflow: hidden;
}

.blog img {
    padding: 22px;
    width: 85%;
    transition: all 0.2s ease;
}

.blog img:hover {
    transform: scale(0.9);
}

.blogText {
    padding: 20px;
    margin-top: 15px;
    text-align: left;
}

.blogText h2 {
    color: #0a6363;
    font-family: "Roboto", sans-serif;
    margin-bottom: 15px;
}

.blogText p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-right: 20px;
}

.blogText button {
    padding: 9px 15px;
    background-color: #0a6363;
    color: white;
    font-size: 15px;
    border: none;
    border-radius: 4px;
    margin-top: 15px;
    cursor: pointer;
}

.blogText button:hover {
    background-color: transparent;
    color: #0a6363;
    border: 2px solid #0a6363;
}

/* responsive */
@media (max-width: 992px) {

    .blogText h2 {
        font-size: 18px;
    }

    .blogText {
        margin-top: 20px;
    }

    .blogText p {
        font-size: 15px;
    }

    .blog img {
        height: 200px;
        margin-top: 10px;
    }
}

/* about us */
.about {
    display: none;
}

.aboutus {
    background-color: #16a7a7;
    color: white;
    padding: 50px;
    text-align: center;
}

.aboutus h1 {
    font-size: 33px;
    font-family: "Roboto", sans-serif;
}

.aboutus p {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    margin-top: 10px;
    line-height: 25px;
}

/* main box */
.aboutme {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 750px;
    width: 90%;
    margin: 40px auto;
    background-color: white;
    padding: 40px;
    border-radius: 20px;
}

/* image */
.aboutme img {
    width: 45%;
    max-width: 100%;
    height: 400px;
}

/* text */
.aboutText {
    padding: 20px;
    text-align: center;
}

.aboutText h1 {
    color: #0a6363;
    font-family: sans-serif;
    margin-bottom: 20px;
}

.aboutText p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 17px;
    line-height: 24px;
}

/* Tablet */
@media (max-width: 768px) {
    .aboutus {
        padding: 40px 20px;
    }

    .aboutme {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .aboutme img {
        width: 80%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .aboutus h1 {
        font-size: 26px;
    }

    .aboutme {
        padding: 20px 15px;
    }

    .aboutme img {
        width: 100%;
    }

    .aboutText h1 {
        font-size: 22px;
    }
}


/* contact us  */
.contact {
    display: none;
}

.contactus {
    background-color: #16a7a7;
    color: white;
    padding: 50px;
    text-align: center;
}

.contactus h1 {
    font-size: 33px;
    font-family: "Roboto", sans-serif;
}

.contactus p {
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    margin-top: 10px;
}

/* main box */
.contactme {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 750px;
    width: 90%;
    margin: 40px auto;
    background-color: white;
    padding: 40px;
    border-radius: 20px;
}

/* image */
.contactme img {
    width: 45%;
    height: 400px;
    max-width: 100%;
}

/* text */
.contactText {
    padding: 20px;
    text-align: center;
}

.contactText h1 {
    color: #0a6363;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 20px;
}

.contactText p {
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    margin-top: 8px;
}

/* Tablet */
@media (max-width: 768px) {
    .contactus {
        padding: 40px 20px;
    }

    .contactme {
        flex-direction: column;
        /* stack */
        text-align: center;
        padding: 30px 20px;
    }

    .contactme img {
        width: 70%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .contactus h1 {
        font-size: 26px;
    }

    .contactme {
        padding: 20px 15px;
    }

    .contactme img {
        width: 100%;
    }

    .contactText h1 {
        font-size: 22px;
    }
}


/* newsletter section */
.letter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: white;
    background-color: #16a7a7;
    padding: 60px 50px;
    margin-top: 40px;
}

/* text */
.letterText {
    max-width: 500px;
}

.letterText h1 {
    font-size: 33px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 10px;
}

.letterText p {
    font-family: "Roboto", sans-serif;
    line-height: 22px;
    font-size: 16px;
}

/* input */
.inp {
    display: flex;
    margin-top: 15px;
}

.inp input {
    width: 330px;
    max-width: 100%;
    height: 33px;
    padding: 5px 10px;
    outline: none;
    border-radius: 4px;
    border: none;
}

.inp input:focus {
    border: 2px solid #0a6363;
    box-shadow: 0 0 10px #0a6363;
}

.inp button {
    width: 90px;
    height: 42px;
    background-color: #1c7a7a;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}


/* Tablet */
@media (max-width: 768px) {
    .letter {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .letterText h1 {
        font-size: 26px;
    }

    .inp {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .inp {
        flex-direction: column;
        width: 100%;
    }

    .inp input {
        width: 100%;
    }

    .inp button {
        width: 100%;
    }
}

/* product cart */
.cart {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 5%;
    padding: 20px;
}

/* image */
.cart img {
    width: 380px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* text */
.cartText {
    padding: 15px;
    margin-top: 10px;
    font-family: "Roboto", sans-serif;
    max-width: 400px;
}

.cartText h2 {
    margin-top: 18px;
}

.cartText h1 {
    font-family: "Cinzel", serif;
}

.cartText .price {
    margin-top: 18px;
    font-weight: bold;
    color: #0a6363;
}

.cartText p {
    margin-top: 15px;
    line-height: 1.5;
}

/* buttons */
.cartText button {
    padding: 10px 20px;
    background-color: rgb(255, 89, 0);
    color: white;
    border: none;
    font-size: 18px;
    margin: 10px 10px 0 0;
    border-radius: 5px;
    cursor: pointer;
}

.cartText button:hover {
    background-color: rgb(218, 81, 8);
}

.cartText .back {
    padding: 10px 25px;
    background-color: #0e8a8a;
    color: white;
    border: none;
    font-size: 18px;
    margin-top: 10px;
}

.cartText .back:hover {
    background-color: #0a6363;
}

/* Tablet */
@media (max-width: 768px) {
    .cart {
        flex-direction: column;
        text-align: center;
    }

    .cart img {
        width: 80%;
    }

    .cartText {
        max-width: 100%;
    }

    .cartText h1 {
        font-size: 29px;
    }

    .cartText h2 {
        font-size: 23px;
    }

    .cartText .price {
        font-size: 18px;
    }

    .cartbtn button {
        display: block;
        width: 100%;
    }

    .back {
        display: block;
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .cart img {
        width: 100%;
    }

    .cartText h2 {
        font-size: 20px;
    }

    .cartText button,
    .cartText .back {
        width: 100%;
        font-size: 16px;
    }
}

/* readmore and read less  */
#hidetext {
    display: none;
}

#hiddentext {
    display: none;
}

/* buy now form */
/* blur */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 99;
}

/* Form  */
.buy-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    padding: 25px 30px;
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 100;
    transition: 0.3s;
}

/* active */
.buy-form.active {
    display: block;
    transform: translate(-50%, -50%) scale(1);
}

/* inputs */
.buy-form input {
    width: 90%;
    margin-top: 10px;
    padding: 12px;
    border-radius: 6px;
    outline: none;
    border: 1px solid #0a6363;
}

.buy-form input:focus {
    box-shadow: 0 0 8px rgb(11, 114, 114);
}

.buy-form h2 {
    text-align: center;
    color: #0e8a8a;
    font-size: 29px;
    font-family: "Roboto", sans-serif;
}

.qtyBox {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    gap: 10px;
}

.qtyBox button {
    padding: 6px 12px;
    border: none;
    background: #16a7a7;
    color: white;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.qtyBox button:hover {
    background: #0e8a8a;
}

.qtyBox input {
    width: 60px;
    text-align: center;
    padding: 6px 6px;
    margin-bottom: 9px;
    border-radius: 6px;
    border: 1px solid #0a6363;
    outline: none;
    text-align: center;
}

.qtyBox input:focus {
    box-shadow: 0 0 8px rgb(11, 114, 114);
}


/* btn */
.btns {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.btns button {
    padding: 9px 12px;
    border: none;
    background: #16a7a7;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.btns button:hover {
    background: #0e8a8a;
}

/* arrow scroll to top */
.arrow {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}

.arrow img {
    width: 45px;
    height: 45px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.arrow img:hover {
    transform: scale(1.1);
}

/* Tablet */
@media (max-width: 768px) {
    .arrow {
        right: 15px;
        bottom: 15px;
    }

    .arrow img {
        width: 40px;
        height: 40px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .arrow {
        right: 10px;
        bottom: 10px;
    }

    .arrow img {
        width: 35px;
        height: 35px;
    }
}


/* footer  */
.footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #eeee;
    color: black;
    padding: 50px 80px;
    gap: 30px;
}


.footer .footerText {
    min-width: 200px;
    margin-left: 30px;
}

/* heading */
.footerText h2 {
    font-family: "Roboto", sans-serif;
    margin-bottom: 15px;
    color: #0a6363;
    font-size: 20px;
    border-bottom: 2px solid #0a6363;
    display: inline-block;
    padding-bottom: 5px;
}

/* text */
.footerText p {
    margin-top: 10px;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

/* hover effect */
.footerText p:hover {
    color: #0a6363;
    transform: translateX(5px);
}

/* responsive  */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .footerText {
        width: 90%;
        margin-bottom: 20px;
    }
}


@media (max-width: 480px) {
    .footer {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .footerText {
        flex: 1 1 100%;
    }

    .footerText h2 {
        border-bottom: none;
    }

    .footerText p:hover {
        transform: none;
    }
}