@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Roboto Condensed", sans-serif;
    /* border: 1px red solid ; */
}

:root {
    --primary-color: #212121;
    --secondary-color: #f2bd12;
    --eye-ball: #fffdf7;
    --hint-yellow: #fcf1cc;
    --pure-white: #fff;
}

body {
    background: var(--eye-ball);
}

a {
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--primary-color);
}

.flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

li {
    list-style: none;
}

.between {
    justify-content: space-between;
}

.gap-2 {
    gap: 2rem;
}

.gap-3 {
    gap: 3rem;
}

.wrapper {
    max-width: 1400px;
    margin: auto;
    padding-inline: 1.5rem;

}

img {
    max-width: 100%;
    height: auto;
    margin: auto;
    display: block;
}

.p-top {
    padding-top: 10rem;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-half {
    margin-top: .5rem;
}

.m-auto {
    margin: auto;
}

.mt-one-half {
    margin-top: 1.5rem;
}

.navbar {
    min-height: 14vh;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    border-radius: 1rem;
    font-size: 1.1rem;
    color: var(--pure-white);
    font-weight: bold;
    box-shadow: rgba(0, 0, 0, 0.1) 2px 1px;
    transition: .3s ease-in-out;
}

.btn:hover {
    background: #000;
}

.cart-icon {
    position: relative;
    font-size: 1.3rem;
    cursor: pointer;
}

.cart-value {
    position: absolute;
    top: 50%;
    right: -10%;
    font-size: .85rem;
    width: 20px;
    aspect-ratio: 1;
    border-radius: 100vw;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
    line-height: 20px;
}

.desktop-action .hamburger {
    font-size: 1.5rem;
    display: none;

}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.hero-section {
    min-height: calc(100vh - 14vh);
}

.content, .image-container,.services-card {
    flex: 1;
    flex-basis: 300px;
}

h1 {
    font-size: 5.6vw;
    color: var(--primary-color);
}

h1 span {
    color: var(--secondary-color)
}

p {
    font-size: 1.25rem;
    color: gray;
    line-height: 1.8rem;
    font-weight: 400;
}

.para {
    margin-block: 2rem;
    max-width: 550px;
}

.social-icon {
    background: var(--hint-yellow);
    width: 3rem;
    aspect-ratio: 1;
    border-radius: 1rem;
    font-size: 1.2rem;
    text-align: center;
    line-height: 3rem;
    box-shadow: rgba(0, 0, 0, 0.1) 2px 1px;
    transition: .3s ease-in-out;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--pure-white);
}


h5 {
    font-size: 1.2rem;
    letter-spacing: 1rem;
    color: var(--secondary-color);
    text-transform: uppercase;
}

h2 {
    font-size: 3.7rem;
    text-transform: capitalize;
    color: var(--primary-color);
}

h3 {
    font-size: 2rem;
    text-transform: capitalize;
    color: var(--primary-color);
}

.services-card h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.order-card {
    flex: 1;
    flex-basis: 300px;
    padding: 0 1rem 2rem 1rem;
    background: var(--pure-white);
    border: .1rem solid var(--secondary-color);
    box-shadow: rgba(0, 0, 0, 0.09) 8px 8px 8px,
        rgba(0, 0, 0, 0.09) 8px 8px 8px inset;
    border-radius: 2rem;
}

.order-card img {
    width: 12rem;
    filter: drop-shadow(rgba(0, 0, 0, 0.3) 0 10px 10px);
    margin-top: 10px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
 .order-card h4{
    font-size: 1.8rem;
    color: var(--primary-color);
    padding-top: 1.3rem;
} 
h4 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.order-card .price {
    font-size: 1.7rem;
    color: var(--secondary-color);
    padding: 1.3rem 0 2rem 0;
}

/* card tab styles */
.cart-tab {
    background: var(--hint-yellow);
    position: fixed;
    inset: 0 -500px 0 auto;
    width: 25rem;
    padding-block: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99;
    box-shadow: rgba(0, 0, 0, 0.3) -10px -10px 20px;
    transition: .3s ease-in-out;
}
.cart-tab-active {
    inset: 0 0 0 auto;
    transition: .3s ease-in-out;
}

.cart-list {
    flex: 1;
    width: 100%;
    margin-top: 1.5rem;
    overflow: auto;
}
.cart-list::-webkit-scrollbar{
width: 0;
}
.total-container {
    width: 100%;
    background: var(--secondary-color);
    text-align: center;
    margin-block: 1rem;
    padding-block: 1rem;
}

.total-container h4 {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 400;
}

.btn-container .btn {
    background: var(--primary-color);
    transition: .3s ease-in-out;
}

.btn-container .btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: .7rem 1rem;
    transition: all .5s ease-in-out;
    
}
.item-slide-out{
    transform: translateX(50%);
}
.item:nth-child(even) {
    background: var(--eye-ball);
}
.item .item-image img {
    width: 5rem;
}
.item h4{
    font-size: 1.3rem;
    color: var(--primary-color);
}
.item .item-total{
    font-weight: 400;
    margin-top: .3rem;
}

.item .detail{
    flex: 2;
}
.quantity-btn{
    background: var(--primary-color);
    color: var(--pure-white);
    width: 1.7rem;
    aspect-ratio: 1;
    border-radius: 100vw;
    text-align: center;
    line-height: 1.7rem;
}
.quantity-value{
    font-size: 1.2rem;
    font-weight: 400;
    margin-inline: .6rem;
}

.review-container {
    width: 650px;
    max-width: 100%;
    flex: 1;
}

.swiper {
    width: 100%;
    height: 100%;
}

.profile {
    width: 4rem;
    aspect-ratio: 1;
    border-radius: 100vw;
    overflow: hidden;

}

.profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fa-star {
    color: var(--secondary-color)
}

.arrow {
    width: 2.5rem;
    aspect-ratio: 1;
    border-radius: 100vw;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
    line-height: 2.5rem;
}

.app-container {
    background: var(--hint-yellow);
    padding: 3rem 6rem;
    border-radius: 3rem;

}

.app-container .content h2 {
    font-size: 4.5rem;
    margin-right: 10px;
}

.app-container .image-container img {
    width: 25rem;
}

.input-container {
    width: 43rem;
    max-width: 100%;
    padding: .8rem;
    background: var(--pure-white);
    box-shadow: rgba(0, 0, 0, 0.1) 0 5px 8px;
    border-radius: 2rem;
    margin: 4rem auto 0 auto;

}

input[type="email"] {
    flex: 1;
    height: 7vh;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    padding-left: 1rem;
}

input[type="email"]:focus {
    outline: none;
}

.footer-container {
    margin-top: 10rem;
    padding-block: 4rem;
    background: var(--hint-yellow);
}

.footer-container .flex {
    align-items: flex-start;
}

.footer-wrapper {
    flex: 1;
    flex-basis: 150px;
}

.footer-wrapper:nth-child(1) {
    flex: 2;
    flex-basis: 300px;
}

.footer-wrapper .social-icon {
    background: var(--pure-white);
}

.footer-wrapper .social-icon:hover {
    background: var(--primary-color);
    color: var(--pure-white);
}

.footer-link {
    color: gray;
    font-size: 1.1rem;
    transition: .3s ease-in-out;

}

.footer-link:hover {
    color: var(--primary-color);
}




















































@media screen and (max-width: 780px) {

    /* header styles */
    .navlist,
    .desktop-action .btn {
        display: none;
    }

    .desktop-action .hamburger {
        display: block;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        position: absolute;
        top: 20%;
        left: -100%;
        transform: translateX(-50%);
        width: 20rem;
        padding: 2rem;
        background: var(--pure-white);
        border: .1rem solid var(--secondary-color);
        box-shadow: rgba(0, 0, 0, 0.09) 8px 8px 8px, rgba(0, 0, 0, 0.09) 8px 8px 8px inset;
        border-radius: 2rem;
        transition: .5s ease-in-out;

    }

    .mobile-menu-active {
        left: 50%;
        transform: translateX(-50%);

    }

    /* section styles */
    /* hero styling */
    h1 {
        font-size: 3.6rem;

    }

    .content {
        padding-top: 3rem;
    }

    .gap-2 {
        gap: 1.4rem
    }

    .gap-4 {
        gap: 4rem;
    }

    /* section 1 */
    h2 {
        font-size: 3rem;
    }

    /* section 4 */
    .app-container {
        padding: 2.2rem;
    }

    .app-container .content h2 {
        font-size: 2.3rem;
    }
}