/* =========================================================
   BASIC RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    margin:0;
    padding:0;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar{
    width:100%;
    background-color:#ffe5d9;
    display:flex;
    align-items:flex-start;
    padding:10px 20px;
}

.nav-logo{
    width:120px;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.logo{
    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
    display:block;
}

.logo:hover{
    border:10px solid #0F766E;
}

.content-logo{
    margin-top:8px;
    color:#374151;
    font-size:24px;
    font-family:"Times New Roman",serif;
    font-weight:bold;
}

.nav-introtext{
    flex:1;
    text-align:center;
    margin-top:10px;
}

.nav-introtext p{
    color:black;
    font-size:22px;
    font-family:"Times New Roman",serif;
    font-weight:bold;
}

.nav-menu{
    margin-top:15px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
}

.nav-menu a{
    text-decoration:none;
    color:#374151;
    font-size:18px;
    font-weight:bold;
    padding:8px 12px;
    transition:0.3s;
}

.nav-menu a:hover{
    background-color:#0F766E;
    color:white;
    border-radius:5px;
}


/* =========================================================
   NAVBAR PHONE
========================================================= */

@media (max-width:768px){

    .navbar{
        flex-direction:column;
        align-items:center;
    }

    .nav-introtext{
        margin-top:15px;
    }

    .nav-introtext p{
        font-size:18px;
    }

    .content-logo{
        font-size:20px;
    }

    .nav-menu{
        gap:15px;
    }

    .logo{
        width:80px;
        height:80px;
    }
}


/* =========================================================
   WELCOME SECTION
========================================================= */

.line2{
    width:100%;
    background-color:#d8e2dc;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0;
    padding:20px 0;
    border-radius:10px;
}

.line2-H{
    width:100%;
    text-align:center;
}

.line2 h2{
    color:#374151;
    text-align:center;
    transition:0.3s;
    text-decoration:none;
    font-size:22px;
    font-family:"Times New Roman",serif;
    font-weight:bold;
    margin:0;
}

.line2 p{
    text-align:center;
    color:#374151;
    text-decoration:none;
    font-size:18px;
    transition:0.3s;
    margin:0;
}

.line2 h2:hover{
    background-color:#0F766E;
    color:white;
    border-radius:5px;
}

.line2 p:hover{
    background-color:#0F766E;
    color:white;
    border-radius:5px;
}


/* =========================================================
   SHOP
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.shop{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:30px 15px 50px;
}


/* =========================================================
   HEADING
========================================================= */

.heading{
    text-align:center;
    font-size:38px;
    font-weight:600;
    color:#263238;
    margin-bottom:35px;
    letter-spacing:1px;
}

.heading::after{
    content:"";
    display:block;
    width:70px;
    height:3px;
    background:#0F766E;
    margin:12px auto 0;
    border-radius:10px;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}


/* =========================================================
   CARD
========================================================= */

.card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    position:relative;

    border:1px solid rgba(15,118,110,0.08);

    box-shadow:0 5px 15px rgba(0,0,0,0.08);

    display:flex;
    flex-direction:column;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.card:hover{
    transform:translateY(-7px);

    box-shadow:
        0 15px 30px rgba(15,118,110,0.15);
}


/* =========================================================
   SALE
========================================================= */

.sale{
    position:absolute;
    top:12px;
    left:12px;

    background:#0F766E;
    color:white;

    padding:6px 13px;

    border-radius:20px;

    font-size:12px;
    font-weight:600;

    z-index:20;

    box-shadow:0 4px 10px rgba(0,0,0,0.18);

    transition:0.3s;
}

.card:hover .sale{
    transform:scale(1.05);
}


/* =========================================================
   IMAGE AREA
========================================================= */

/*
   IMPORTANT:
   NO FIXED HEIGHT.
   This prevents large empty spaces.
*/

.image{
    width:100%;

    background:#f7faf9;

    overflow:hidden;

    display:block;

    line-height:0;
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.image img{
    width:100%;
    height:auto;

    max-width:100%;

    display:block;

    object-fit:contain;

    cursor:pointer;

    transition:transform 0.5s ease;
}


/* IMAGE HOVER */

.card:hover .image img{
    transform:scale(1.025);
}


/* =========================================================
   PRODUCT TITLE
========================================================= */

.card h3{
    padding:14px 12px 8px;

    font-size:15px;
    font-weight:500;

    line-height:23px;

    color:#263238;

    min-height:70px;

    transition:color 0.3s ease;
}

.card:hover h3{
    color:#0F766E;
}


/* =========================================================
   PRICE
========================================================= */

.price{
    padding:0 12px 12px;

    font-size:20px;

    font-weight:600;

    color:#0F766E;
}

.price span{
    margin-left:8px;

    font-size:15px;

    color:#999;

    text-decoration:line-through;

    font-weight:400;
}


/* =========================================================
   SHOP / WHATSAPP BUTTON
========================================================= */

.whatsapp-btn{
    width:calc(100% - 24px);

    margin:0 12px 16px;

    padding:12px;

    border:none;

    border-radius:8px;

    background:burlywood;

    color:white;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;

    margin-top:auto;
}

.whatsapp-btn:hover{
    background:#1faa50;

    transform:translateY(-3px);

    box-shadow:0 7px 15px rgba(37,211,102,0.25);
}


/* =========================================================
   SLIDER
========================================================= */

.product-slider{
    position:relative;
}


/* =========================================================
   SLIDER BUTTONS
========================================================= */

.product-slider button{
    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:30px;
    height:46px;

    border:none;

    background:rgba(0,0,0,0.35);

    color:white;

    font-size:25px;

    cursor:pointer;

    z-index:10;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:6px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.slider-left{
    left:7px;
}

.slider-right{
    right:7px;
}

.product-slider button:hover{
    background:#0F766E;

    transform:translateY(-50%) scale(1.08);
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (min-width:768px){

    .shop{
        padding:35px 20px 55px;
    }

    .heading{
        font-size:40px;
    }

    .products{
        grid-template-columns:repeat(3,1fr);
        gap:22px;
    }

    .card h3{
        font-size:16px;
        line-height:24px;
        min-height:80px;
    }

    .price{
        font-size:22px;
    }

    .price span{
        font-size:16px;
    }

    .whatsapp-btn{
        font-size:16px;
        padding:13px;
    }

    .sale{
        font-size:13px;
        padding:7px 14px;
    }
}


/* =========================================================
   DESKTOP
========================================================= */

@media screen and (min-width:1200px){

    .shop{
        max-width:1400px;
        padding:45px 25px 65px;
    }

    .heading{
        font-size:46px;
        margin-bottom:45px;
    }

    .products{
        grid-template-columns:repeat(4,1fr);
        gap:25px;
    }

    .card{
        border-radius:16px;
    }

    .card h3{
        font-size:17px;
        line-height:26px;
        min-height:90px;
    }

    .price{
        font-size:24px;
    }

    .price span{
        font-size:17px;
    }

    .whatsapp-btn{
        padding:14px;
        font-size:17px;
        border-radius:8px;
    }

    .sale{
        font-size:14px;
        padding:8px 16px;
    }
}


/* =========================================================
   FOOTER
========================================================= */

.foot-panel3{
    background-color:#222f3d;
    color:white;
    height:70px;
    text-align:center;
}

.foot-panel3 a{
    font-size:0.8rem;
}

.copyright{
    text-align:center;
}


/* =========================================================
   FULL PRODUCT IMAGE
========================================================= */

.full-image-box{
    display:none;

    position:fixed;

    z-index:99999;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.9);

    align-items:center;
    justify-content:center;
}

.full-image-box img{
    max-width:95%;
    max-height:90%;

    object-fit:contain;
}

.full-image-close{
    position:absolute;

    top:15px;
    right:25px;

    color:white;

    font-size:40px;

    cursor:pointer;

    z-index:100000;
}

.image img{
    cursor:pointer;
}