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


html,
body{

    overflow-x:hidden;

    scroll-behavior:auto;

}


body{

    background:#fffaf8;

    font-family:'Nunito',sans-serif;

    color:#332b2b;

    width:100%;

    display:flex;

    justify-content:center;

}



.page{

    width:100%;

    max-width:1100px;

    margin:0 auto;

    padding:30px 20px 60px;

}



/* =====================
   HERO
===================== */

.hero{
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding-bottom:8px;
}

.hero-button{

    display:inline-flex;
    justify-content:center;
    align-items:center;

    background:#e89aaa;
    color:white;

    padding:18px 35px;

    border-radius:50px;

    font-size:18px;
    font-weight:900;

    text-decoration:none;

    transition:.25s ease;

}


.hero-button:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(232,154,170,.35);

}

.hero-text{

    width:100%;

    max-width:650px;

    margin:0 auto;

}



.logo{

    width:110px;

    display:block;

    margin:0 auto 20px;

}



.hero h1{

    font-size:55px;

    font-weight:900;

    line-height:1.05;

    margin-top:20px;

}



.hero h1 span{

    display:block;

    color:#e89aaa;

}



.hero-text p{

    font-size:21px;

    line-height:1.5;

    margin:25px auto;

    max-width:450px;

}



.hero-shop-text{

    margin:12px 0 0;

    font-size:15px;

    color:#777;

    font-weight:700;

}



button{

    background:#e89aaa;

    color:white;

    border:none;

    padding:18px 35px;

    border-radius:50px;

    font-size:18px;

    font-weight:900;

    cursor:pointer;

    transition:.25s ease;

}



button:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(232,154,170,.35);

}



.rating{

    margin-top:15px;

    color:#f5b52c;

    font-size:20px;

}



.rating p{

    color:#555;

    font-size:15px;

    margin-top:5px;

}

/* FREE SECTION */

.free-section{

    margin:45px 0;

    background:#fff;

    border-radius:35px;

    padding:45px 30px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.05);

}

.free-badge{

    display:inline-block;

    background:#fde6ec;

    color:#d97f95;

    padding:10px 20px;

    border-radius:999px;

    font-weight:900;

    margin-bottom:20px;

}

.free-section h2{

    font-size:36px;

    margin-bottom:15px;

}

.free-section p{

    color:#666;

    line-height:1.6;

    max-width:650px;

    margin:auto;

}

.resource-list{

    display:grid;

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

    gap:15px;

    margin:35px auto;

    max-width:700px;

}

.resource-list div{

    background:#fff8fb;

    padding:18px;

    border-radius:18px;

    font-weight:700;

}

.resource-button{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    background:#e89aaa;

    color:white;

    text-decoration:none;

    padding:20px 40px;

    border-radius:999px;

    font-size:20px;

    font-weight:900;

    transition:.25s;

}

.resource-button:hover{

    transform:translateY(-3px);

}

.resource-note{

    margin-top:18px;

    color:#777;

    font-size:15px;

}


/* =====================
   AMAZON FAVORITES
===================== */

.amazon-section{

    margin-top:8px;

    background:linear-gradient(180deg,#fff8fb,#ffffff);

    border-radius:35px;

    padding:28px 25px 40px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

}


.amazon-header{

    width:100%;

    text-align:center;

}



.amazon-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#fde6ec;

    color:#d97f95;

    padding:10px 22px;

    border-radius:999px;

    font-weight:900;

    font-size:14px;

    margin-bottom:18px;

    position:relative;

    animation:badgeFloat 3s ease-in-out infinite;

    box-shadow:0 8px 20px rgba(232,154,170,.25);

}



.amazon-badge::before{

    content:"";

    position:absolute;

    inset:-5px;

    border-radius:999px;

    background:rgba(232,154,170,.25);

    z-index:-1;

    animation:badgePulse 2s ease-in-out infinite;

}



@keyframes badgeFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-5px);

    }

}



@keyframes badgePulse{

    0%{

        transform:scale(1);

        opacity:.5;

    }

    50%{

        transform:scale(1.08);

        opacity:.2;

    }

    100%{

        transform:scale(1);

        opacity:.5;

    }

}



.amazon-header h2{

    font-size:38px;

    font-weight:900;

    margin-bottom:15px;

}



.amazon-header p{

    font-size:18px;

    color:#666;

    max-width:650px;

    margin:auto;

    line-height:1.6;

}



.amazon-grid{

    display:grid;

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

    gap:20px;

    margin:40px auto;

    max-width:900px;

}



.amazon-card{

    background:white;

    border-radius:25px;

    padding:30px 20px;

    min-height:190px;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

    transition:.25s;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

}



.amazon-card:hover{

    transform:translateY(-5px);

}



.amazon-card .icon{

    font-size:42px;

    margin-bottom:15px;

}



.amazon-card h3{

    font-size:21px;

    margin-bottom:10px;

}



.amazon-card p{

    color:#777;

    line-height:1.5;

}



.amazon-button{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    background:#ff9900;

    color:white;

    padding:20px 45px;

    border-radius:999px;

    font-size:20px;

    font-weight:900;

    text-decoration:none;

    box-shadow:0 12px 30px rgba(255,153,0,.35);

    transition:.25s;

}



.amazon-button:hover{

    transform:scale(1.04);

}



.amazon-note{

    margin-top:18px;

    font-size:15px;

    color:#777;

}

/* =====================
   AMAZON DEALS FACEBOOK SECTION
===================== */


.deal-section{

    margin:45px 0;

    background:linear-gradient(180deg,#fff8fb,#ffffff);

    border-radius:35px;

    padding:35px 30px 40px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.05);

}



.deal-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#fff0d9;

    color:#e58a00;

    padding:10px 22px;

    border-radius:999px;

    font-weight:900;

    font-size:14px;

    margin-bottom:18px;

    position:relative;

    animation:badgeFloat 3s ease-in-out infinite;

    box-shadow:0 8px 20px rgba(229,138,0,.25);

}



.deal-badge::before{

    content:"";

    position:absolute;

    inset:-5px;

    border-radius:999px;

    background:rgba(229,138,0,.20);

    z-index:-1;

    animation:badgePulse 2s ease-in-out infinite;

}



.deal-section h2{

    font-size:36px;

    font-weight:900;

    margin-bottom:15px;

}



.deal-description{

    color:#666;

    line-height:1.6;

    max-width:650px;

    margin:0 auto 30px;

}



.deal-button{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    background:#1877f2;

    color:white;

    text-decoration:none;

    padding:20px 45px;

    border-radius:999px;

    font-size:20px;

    font-weight:900;

    box-shadow:0 12px 30px rgba(24,119,242,.25);

    transition:.25s ease;

}



.deal-button:hover{

    transform:translateY(-3px);

}



.deal-note{

    margin-top:18px;

    margin-bottom:0;

    font-size:15px;

    color:#777;

}



/* =====================
   FEATURES
===================== */


.features{

    display:grid;

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

    gap:20px;

    margin:50px 0;

}



.features div{

    background:white;

    padding:30px 20px;

    border-radius:25px;

    text-align:center;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    min-height:220px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}



.features span{

    font-size:35px;

    margin-bottom:15px;

}



.features strong{

    font-size:18px;

}



.features p{

    margin-top:8px;

    color:#777;

}





/* =====================
   FOOTER
===================== */


footer{

    margin-top:40px;

    background:#fff0f4;

    border-radius:25px;

    padding:25px 20px;

    text-align:center;

}



.footer-logo img{

    width:55px;

    margin-bottom:10px;

}



footer h3{

    font-size:20px;

    font-weight:900;

    margin-bottom:8px;

}



footer p{

    color:#777;

    font-size:14px;

    line-height:1.4;

}



.footer-links{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

    margin:15px 0;

}



.footer-links a{

    text-decoration:none;

    color:#332b2b;

    font-size:14px;

    font-weight:700;

}



.social-links{

    display:flex;

    justify-content:center;

    gap:10px;

    margin-bottom:15px;

}



.social-links a{

    text-decoration:none;

    background:white;

    padding:8px 14px;

    border-radius:50px;

    color:#e89aaa;

    font-size:13px;

    font-weight:800;

}



.footer-bottom{

    border-top:1px solid #f2dce2;

    padding-top:12px;

}



.footer-bottom p{

    margin:4px;

    font-size:12px;

}

/* =====================
   PAGE LOAD ANIMATION
===================== */

.hero-text .logo{

    opacity:0;

    animation:
    fadeUp .8s ease .2s forwards,
    floatLogo 4s ease-in-out 1s infinite;

}



.hero h1{

    opacity:0;

    animation: fadeUp .8s ease .4s forwards;

}



.hero-text > p{

    opacity:0;

    animation: fadeUp .8s ease .6s forwards;

}



.hero-button{

    opacity:0;

    animation: fadeUp .8s ease .8s forwards;

}



.rating{

    opacity:0;

    animation: fadeUp .8s ease 1s forwards;

}



@keyframes fadeUp{


    from{

        opacity:0;

        transform:translateY(20px);

    }


    to{

        opacity:1;

        transform:translateY(0);

    }

}


/* =====================
   MOBILE
===================== */


@media(max-width:750px){


    .page{

        padding:25px 16px 50px;

    }


    .hero h1{

        font-size:40px;

    }


    .hero-text p{

        font-size:18px;

    }


    .hero-button{

        width:100%;

    }


    .amazon-section{

        padding:35px 20px;

    }


    .amazon-header h2{

        font-size:30px;

    }


    .amazon-grid{

        grid-template-columns:1fr;

    }


    .amazon-button{

        width:100%;

        padding:18px 15px;

        font-size:17px;

    }


    .features{

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

        gap:15px;

    }


    .features div{

        min-height:180px;

    }


    .footer-links{

        flex-direction:column;

        gap:10px;

    }

}

@media(max-width:750px){

    .resource-list{

        grid-template-columns:1fr;

    }

    .resource-button{

        width:100%;

        font-size:18px;

    }

}

