.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}


body{
    margin: 0px;
    padding: 0px;
    background-color: rgba(255,246 ,246, 1);
}

p ,a{
    font-family: "Poppins", sans-serif;
}

a{
    text-decoration: none;
}

html{
    scroll-behavior: smooth;
}

img{
    width: 100%;
}

#instaIcon{
    width: 150px;
    position: absolute;
    top: 155px;
    left: 40%;
    cursor: pointer;
}

#followText{
    position: absolute;
    top: 168px;
    left: 40.9%;
    transform: rotate(-25deg);
    font-size: 12px;
    color: rgba(252,166,192,1);
    animation: followSpin 1s ease infinite;
}

#nashAboutMeImage{
    width: 350px;
}

@keyframes followSpin{

    0% {
        transform: rotate(-25deg);
    }
    50%{
        transform: rotate(-18deg);
    }
    100%{
        transform: rotate(-25deg);
    }
}

#heartIcon02{
    display: none;
    width: 75px;
    position: absolute;
    top: 375px;
    right: 35%;
}

#mittensIcon{
    display: none;
    position: absolute;
    top: 550px;
    left: 35%;
}

#mobileHeader{
    background-color: rgba(252,166, 192, 1);
    width: 100%;
    color: white;
    text-align: center;
    display: none;
}

#whatsappIcon{
    width: 40px;
    padding: 5px;
}

#orderLink{
    color: white;
    padding: 5px;
    transition: color 0.25s;
    font-size: 14px;
}

#orderLink a{
    margin: 0;
    padding: 0;
}

#hamburgerIcon{
    display: none;
}

#logo{
    text-align: center;
    padding-top: 1%;
}

#logo img{
    width: 400px;
}

#logo p{
    font-size: 14px;
    color: rgba(79, 35, 19, 1);
}

#pcHeader{
    background-color: rgba(252,166, 192, 1);
    width: 100%;
    padding: 15px 0px;
}

#pcOrderDiv{
    display: grid;
    grid-template-areas: "a a";
    background-color: rgba(79,33,16,1);
    width: 20%;
    margin: auto auto;
    /*
    margin-left: 41.5%;
    margin-right: 41.5%;
    */
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    border: 2px solid white; 
    transition: background-color 0.25s;
    transition: border 0.25s;
}

#pcOrderDiv:hover{
    background-color: white;
    border: 2px solid rgba(79,33,16,1); 
}

#pcOrderDiv:hover #orderLink{
    color: rgba(79,33,16,1);
}

#pcMenu{
    display: grid;
    grid-template-areas: "a a a";
    gap: 40px;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(252,166, 192, 1);
    padding-bottom: 10px;
}

#myPromiseLinkPc{
    margin: 0px;
}

#pcMenu p{
    margin: 0px;
    color: white;
    border: 2px solid white;
    border-radius: 5px;
    padding: 2px 8px;
    transition: border 0.2s;
    transition: color 0.2s;
    transition: background-color 0.2s;
}

#mobileMenu{
    display: none;
}

.product{
    text-align: center;
    width: 18%;
    margin: 1% auto;
    border: 2px solid pink;
    border-radius: 10px;
    padding: 20px;
    background-color: white;
}

.productImg{
    border-radius: 10px;
    margin-top: 2px;
    width: 100%;
}

#productHeader{
    color: rgba(79, 35, 19, 1);
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

#productHeader p{
    margin: 0px;
    padding: 0px;
}

#productHeaderAboutMe{
    color: rgba(79, 35, 19, 1);
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin: 0px;
    padding: 0px;
}

#aboutMeHeader{
    margin: 0px;
    padding: 0px;
}

#underlineIcon{
    text-align: center;
    width: 200px;
    padding: 0px;
    margin: 0px;
}

#underlineIconAboutMe{
    text-align: center;
    padding: 0px;
    margin: 0px;
    width: 10%;
}

.productDetails a{
    color: rgba(254, 240,228,255);
    font-size: 10px;
    border-radius: 5px;
    padding: 5px 5px;
    background-color: rgba(190, 95,128,255);
    transition: background-color 0.25s;
    width: 100px;
    text-align: center;
}

.productDetails a:hover{
    background-color: rgba(79, 35, 19, 1);
}

#productTileContainer{
    display: grid;
    grid-template-areas: "name name icon" "qty cost learn";
    gap: 5px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 5px 10px;
    grid-template-columns: auto auto 1fr;;
}

.productTitle{
    font-size: 20px;
    grid-area: name;
    align-self: center;
    text-align: left;
    color: rgba(190, 95,128,1);
}

.product p{
    margin: 0px;
}

.foodQty{
    grid-area: qty;
    align-self: start;
    text-align: left;
    color: rgba(79, 35, 19, 1);
}

.productCost{
    grid-area: cost;
    justify-self: left;
    align-self: start;
    text-align: left;
    margin: 0;
    padding: 0;
    color: rgba(212, 121,158,255);
}

.learnMore{
    grid-area: learn;
    align-self: center;
    justify-self: end;
    text-align: right;
}


.foodTypeIcon{
    grid-area: icon;
    justify-self: end;
    align-self: center;
    border-radius: 0px;
    width: 20px;
    height: auto;
}

#productDName{
    margin: 0;
    padding: 0;
    margin-top: 20px;
    color: rgba(190, 95,128,1);
}

#productInfo{
    text-align: center;
    border: 2px solid pink; 
    margin: 1% 40%;
    padding: 10px;
    border-radius: 10px;
    background-color: white;
}

#productInfoDetails{
    text-align: left;
}

.productName{
    font-size: 20px;
    margin: 0px;
    padding: 0px 10px;
    color: rgba(190, 95,128,1);
}

.productCostDetails{
    display: grid;
    grid-template-areas: "qty price image";
    grid-template-columns: 25% 10% 60%;
    align-items: center;
    column-gap: 0%;
    width: 100%;
    padding: 0px 10px;
}

.productPrice{
    padding: 0px;
    margin: 0px;
    grid-area: price;
    padding-left: 5px;
    color: rgba(190, 95,128,1);
}

.productQty{
    grid-area: qty;
    padding: 0px;
    margin: 0px;
    color: rgba(81, 32,16,1);
}

.productCostDetails img{
    height: auto;
    width: 10%;
    border-radius: 0px;
    grid-area: image;
    justify-self: right;
}

.productDesc{
    text-align: left;
    padding: 0px 10px;
}

.productDescText{
    color: rgba(81, 32,16,1);
    margin: 2px 0px;
}

.productIngredients{
    color: rgba(212, 121,158,0.8);
    padding: 0px 10px;
}

#ingredientName{
    margin: 0px;
    margin-top: 20px;
    font-style: bold;
    color: rgba(190, 95,128,1);
}

.productIngredients #ingredientDesc{
    color: rgba(81, 32,16,1);
    margin: 0px;
    text-align: left;
}

#productOrderNowButton{
    background-color: rgba(81,32, 16, 1);
    border-radius: 5px;
    color: white;
    text-align:center;
    margin: 10px;
    transition: background-color 0.25s; 
    cursor: pointer;
}

#productOrderNowButton:hover{
    background-color: rgba(190, 95,128,1);
}

#productOrderNowButton a{
    color: white;
}

#productOrderNowButton p{
    color: white;
    margin: 0px;
    padding: 0px;
}

#aboutMe{
    text-align: center;
    padding: 5px;
}

#aboutMe img{
}

#aboutMe p{
    text-align: justify;
    text-justify: inter-word;
    color: rgba(81,32, 16, 1);
    /*
    margin-left: 40%;
    margin-right: 40%;
    */
    margin: 1% auto; 
    width: 20%;
}

#backToHome{
    text-align: center;
    display: block;
    color: rgba(212, 121,158,255);
    text-decoration: none;
    padding: 10px;
}

#backToHome a{
    font-size: 15px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(190, 95, 128, 1);
    border: 1px solid rgba(212, 121,158,255);
    transition: border 0.2s;
    transition: color 0.2s;
}

#backToHome a:hover {
    background-color: white;
    color: rgba(190, 95,128,1);
    border: 1px solid rgba(212, 121,158,255);
}

#backIcon{
    text-align: center;
    padding: 10px;
}

#backIcon img{
    width: 120px;
}

#zainIcon{
    float: right;
    width: 8%;
    padding: 5px;
    margin-right: 40%; 
}

#amuIcon{
    float: left;
    width: 8%;
    padding: 5px;
    margin-left: 40%; 
}

#nashIcon{
    width: 7%;
    padding: 5px;
}

#pinky{
    font-size: 14px;
    padding-left: 10px;
    color: rgba(190, 95,128,1);
    margin: 0px;
    padding: 0px;
    padding-left: 120px;
    font-weight: normal;
}

#withLoveIcon{
    width: 20%;
}

#homeMadeIcon{
    width: 10%;
}

#pcMenu a:hover{
}

#pcMenu p:hover{
    border: 2px solid rgba(81,32, 16, 1);
    border-radius: 5px;
    color: rgba(81,32, 16, 1);
    background-color: white;
}

#footerInsta a{
    color: white;
}

#footerInsta{
    margin-top: 5px;
    margin-bottom: 30px;
    height: auto;
    text-align: center;
    background-color: rgba(81,32, 16, 1);
    width: 14%;
    margin: 0.5% auto;
    /*
    margin-left: 43%;
    margin-right: 43%;
    */
    color: white;
    border-radius: 10px;
    transition: background-color 0.25s;
}

#footInstaButton{
    margin: 0;
    padding: 5px 10px;
}

#footerInsta:hover {
    background-color: rgba(190, 95,128,1);
}

#footerInstaLogo{
    margin-top: 10px;
}

#footerInstaLogo a{
    display: grid;
    grid-template-areas: "a a";
    grid-template-columns: 60% 40%;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 15%;
    margin: auto auto;
    /*
    margin-left: 42.5%;
    margin-right: 42.5%;
    */
}

#footerInstaIcon{
    width: 70%;
    justify-self: center;
}

#followWriteUp{
    justify-self: right;
    margin: 0px;
    padding: 0px;
    font-size: 10px;
    color: rgba(81,32, 16, 1);
}


@media (max-width: 1700px){
    .product{
        width: 20%;
    }

    .productDetails a{
        width: 70px;
    }
}


@media (max-width: 1500px){
    #pcOrderDiv{
        width: 25%;
    }

    #instaIcon{
        left: 37%;
    }

    #followText{
        left: 38%;
    }

    #aboutMe p{
        width: 30%;
    }
    #zainIcon{
        margin-right: 35%;
    }
    #amuIcon{
        margin-left: 35%;
    }
}

@media (max-width: 1280px){

    .product{
        width: 25%;
        padding: 10px;
    }

    #pcOrderDiv{
        width: 28%;
    }

    #aboutMe p{
        width: 40%;
    }

    #instaIcon{
        left: 35%;
    }

    #followText{
        left: 36%;
    }

    #zainIcon{
        margin-right: 30%;
    }

    #amuIcon{
        margin-left: 30%;
    }
    #nashIcon{
        width: 10%;
    }

    #footerInsta{
        width: 22%;
    }

    #footerInstaLogo a{
        width:20%;
    }
    
}

@media (max-width: 1024px)
{

    #nashAboutMeImage{
        width: 40%;
    }

    .productDetails a{
        font-size: 9px;
        width: 80px;
    }

    #productDesc{
        padding-left: 10%; 
        padding-right: 10%;
    }

    #pcOrderDiv{
        width: 35%;
        /*
        margin-left: 350px;
        margin-right: 350px;
        */
    }

    #instaIcon{
        left: 28%;
    }

    #followText{
        left: 28%;
    }

    .product{
        margin: 2% auto;
        width: 30%;
        padding: 15px;
    }

    .productImg{
        min-width: 50%;
    }

    #footerInsta{
        width:30%;
    }

    #footerInstaLogo a{
        width: 30%;
    }

    #aboutMe p{
        width: 40%;
    }

    #zainIcon{
        width: 16%;
        margin-right: 30%;
    }

    #nashIcon{
        width: 16%;
        padding: 5px;
    }

    #amuIcon{
        width: 16%;
        margin-left: 30%; 
    }

    #withLoveIcon{
        width: 34%;
    }

    #productInfo{
        margin: 1% 25%;
    }

    #productOrderNowButton{
        padding: 5px;
    }

    .foodTypeIcon{
        min-width: 25px;
    }
}
@media (max-width: 840px)
{
    #pcOrderDiv{
        width: 50%;
    }
    .product{
        margin: 3% auto;
        width: 40%;
        padding: 10px;
    }
}

@media (max-width: 768px)
{
    .product{
        margin: 4% auto;
        width: 55%;
        padding: 10px;
    }

    #footerInstaLogo a{
        width: 50%;
    }
}

@media (max-width: 500px)
{

    #mobileHeader{
        width: 100%;
        position: fixed;
        display: grid;
        grid-template-areas: "panel icon";
        grid-template-columns: auto auto;
        align-items: center;
        z-index: 1000;
        padding: 0px;
        margin: 0px;
    }

    #whatsappIcon{
        z-index: 1001;
        padding: 10px;
    }

    #mobileOrderPanel{
        display: grid;
        grid-template-areas: "icon text ";
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    #mobileOrderPanel p{
        color: white;
        margin: 0px;
        padding: 5px;
        grid-area: text;
        align-self: center;
    }

    #mobileOrderPanel a{
        color: white;
        margin: 0px;
        padding: 5px;
        grid-area: icon;
        align-self: center;
    }

    #orderLink{
        background-color: rgba(79,33,16,1);
        padding: 0px;
        padding-right: 17%;
        
        height: 100%;

        margin: 0px;

        color: white;
        border-radius:0px 50px 50px 0px;
        text-align: left;
        font-size: 16px;
        font-weight: bold;
        grid-area: panel;
        align-self: center;
    }


    #hamburgerIcon{
        display: block;
        grid-area: icon;
        width: 75%;
        justify-self: center;
    }

    #logo{
        padding: 10px;
    }

    #logo img{
        width: 90%;
        padding-top: 20%;
    }

    #logo p{
        font-size: 14px;
    }

    .product{
        text-align: left;
    }

    .productImg{
        border-radius: 10px;
        text-align: center;
        max-width: 100%;
        margin-top: 0px;
    }

    .product p{
        /*color: rgba(212, 121,158,255);*/
        margin: 0px;
    }

    .foodQty{
        align-self: center;
    }

    .productCost{
        justify-self: start;
        align-self: center;
    }

    .productTitle{
        font-size: 25px;
    }

    .productDesc{
        padding: 20px 0%;
    }

    .productName{
        font-size: 25px;
        padding: 0px;
    }

    .productIngredients{
        padding: 0px;
    }

    #productOrderNowButton{
        padding: 5px;
        margin: 5px 0px;
    }

    #aboutMe p{
        width: 80%;
    }

    #mobileMenu{
        display: block;
        background-color: rgba(252,166, 192, 1);
        color: white;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        font-size: 18px;
        text-align: center;
        margin-top: 17%;

        transform: translateY(-150%);
        opacity: 0;

        transition: 
        transform 0.4s ease, 
        opacity 0.2s ease;

        z-index: 900;
    }

    #mobileMenu.open{
        transform: translateY(-6.5%);
        opacity: 100%;
    }

    #mobileMenu a{
        color: white;
    }

    #mobileMenu p{
        padding: 10px;
        margin-left: 10%;
        margin-right: 10%;
        border: 2px solid white;
        border-radius: 10px;
    }

    #pcMenu{
        display: none;
    }

    #backToHome{
        display: block;
        color: rgba(212, 121,158,255);
        text-decoration: none;
        padding: 10px;
    }


    #backIcon{
        text-align: center;
        display:block;
    }

    #backIcon img{
        text-align: center;
        padding: 5px 10px;
    }

    .productCostDetails{
        padding: 0px;
    }

    .productCostDetails img{
        margin-left: 100px;
        max-height: 75%;
    }

    #pcHeader{
        display: none;
    }

    #underlineIcon{
    width: 50%;
    }

    #instaIcon{
        width: 30%;
        top: 10%;
        left: 30px;
    }

    #followText{
        position: absolute;
        top: 10%;
        left: 9%;
        transform: rotate(-25deg);
        font-size: 12px;
        color: rgba(252,166,192,1);
    }

    #heartIcon02{
        width: 12%;
        top: 375px;
        right: 30px;
    }

    #mittensIcon{
        top: 390px;
        left: -50px;
    }
    
    .product{
        /*margin: 5% 5%;*/
        width: 80%;
        margin: 3% auto;
        padding: 10px;
    }

    .foodTypeIcon{
        width: 25px;
    }

    #underlineIconAboutMe{
        width: 50%;
    }

    #zainIcon{
        margin: 0px;
        width: 30%;
        padding: 20px;
        margin: 0px;
    }

    #nashAboutMeImage{
        width: 70%;
    }

    #amuIcon{
        width: 40%;
        padding: 20px;
        margin: 0px;
    }

    #nashIcon{
        width: 30%;
        margin: 0px;
        padding: 5px;
    }

    #homeMadeIcon{
        width: 50%;
    }

    #withLoveIcon{ 
        width: 90%;
    }

    #productInfo{
        margin: 5% 5%;
    }

    #ingredientName{
        margin-top: 3px;
        padding: 0px;
    }

    #productDName{
        margin-top: 3px;
    }

    #footerInsta{
        width: 50%;
    }

    #footerInstaLogo a{
        width: 60%;
    }
    #footerInstaIcon{
        width:90%; 
    }

    .productDetails a{
        font-size: 10px;
        width: 70px;
    }

}

@media (max-width: 360px){
    .product{
        width: 90%;
    }
}
