/* ================================================
   VARIABLES
================================================ */

:root {

    --pink: #e94f93;
    --pink-dark: #cf3478;
    --pink-light: #fff0f7;
    --pink-soft: #fff7fa;
    --cream: #fffaf8;

    --dark: #432d36;
    --gray: #786b71;

    --gold: #d9a441;

    --white: #ffffff;

    --shadow:
        0 15px 45px rgba(180, 70, 120, .12);
}


/* ================================================
   RESET
================================================ */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        "DM Sans",
        sans-serif;

    color: var(--dark);

    background:
        radial-gradient(
            circle at 10% 10%,
            #ffe8f2,
            transparent 25%
        ),

        radial-gradient(
            circle at 90% 30%,
            #ffe5f1,
            transparent 25%
        ),

        var(--cream);

    overflow-x: hidden;

}


img {

    width: 100%;

    display: block;

}


a {

    text-decoration: none;

    color: inherit;

}


button {

    font-family: inherit;

    cursor: pointer;

    border: none;

}


/* ================================================
   FONDO DECORATIVO
================================================ */

body::before {

    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;

    opacity: .45;

    background-image:

        radial-gradient(
            #f7b6d0 1px,
            transparent 1px
        );

    background-size: 35px 35px;

    z-index: -1;

}


/* ================================================
   ELEMENTOS FLOTANTES
================================================ */

.floating-decoration {

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: 2;

    overflow: hidden;

}


.float-item {

    position: absolute;

    opacity: .45;

    user-select: none;

}


.gift {

    font-size: 35px;

    animation:
        floatingGift 7s ease-in-out infinite;

}


.gift-1 {

    left: 3%;

    top: 28%;

}


.gift-2 {

    right: 4%;

    top: 65%;

    animation-delay: 2s;

}


.flower {

    font-size: 30px;

    animation:
        flowerFloat 8s ease-in-out infinite;

}


.flower-1 {

    left: 5%;

    bottom: 20%;

}


.flower-2 {

    right: 5%;

    bottom: 35%;

}


/* ================================================
   ANIMACIONES
================================================ */

@keyframes floatingGift {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(-8deg);

    }

    50% {

        transform:
            translateY(-30px)
            rotate(8deg);

    }

}


@keyframes flowerFloat {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(0deg);

    }

    50% {

        transform:
            translateY(-35px)
            rotate(15deg);

    }

}


@keyframes heroFloat {

    0%,
    100% {

        transform:
            rotate(2deg)
            translateY(0);

    }

    50% {

        transform:
            rotate(2deg)
            translateY(-12px);

    }

}


@keyframes miniFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-10px);

    }

}


@keyframes whatsappPulse {

    0% {

        box-shadow:
            0 0 0 0
            rgba(37,211,102,.4);

    }

    70% {

        box-shadow:
            0 0 0 15px
            rgba(37,211,102,0);

    }

    100% {

        box-shadow:
            0 0 0 0
            rgba(37,211,102,0);

    }

}


/* ================================================
   CONTAINER
================================================ */

.container {

    width:
        min(1180px, 92%);

    margin: auto;

}


/* ================================================
   HEADER
================================================ */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 82px;

    background:
        rgba(255,255,255,.93);

    backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid #f7dce8;

    z-index: 1000;

    transition: .3s;

}


.header.scrolled {

    box-shadow:
        0 8px 35px
        rgba(100,30,60,.10);

}


.nav-container {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* ================================================
   LOGO
================================================ */

.logo {

    display: flex;

    align-items: center;

    gap: 8px;

}


.icon-logo {

    width: 40px !important;

    height: 40px !important;

    border-radius: 50%;

    overflow: hidden;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff;

}


.icon-logo img {

    width: 100% !important;

    height: 100% !important;

    object-fit: cover;

    display: block;

}


.logo-text {

    display: flex;

    flex-direction: column;

    line-height: .9;

}


.logo-text strong {

    font-family:
        "Playfair Display";

    color: var(--pink);

    font-size: 23px;

    font-style: italic;

}


.logo-text span {

    color: #a87992;

    font-family:
        "Playfair Display";

}


/* ================================================
   NAV
================================================ */

.nav {

    display: flex;

    gap: 28px;

}


.nav-link {

    font-size: 14px;

    transition: .3s;

}


.nav-link:hover,
.nav-link.active {

    color: var(--pink);

}


/* ================================================
   NAV ACTIONS
================================================ */

.nav-actions {

    display: flex;

    align-items: center;

    gap: 18px;

}


.whatsapp-button {

    background:
        var(--pink);

    color: white;

    padding:
        12px 22px;

    border-radius:
        30px;

    font-weight: 600;

    transition: .3s;

}


.whatsapp-button:hover {

    transform:
        translateY(-3px);

    background:
        var(--pink-dark);

}


.instagram {

    color:
        #e1306c;

    font-size: 21px;

}


.tiktok {

    color:
        #e1306c;

    font-size: 21px;

}


.menu-button {

    display: none;

    background: none;

    font-size: 25px;

    color: var(--dark);

}


/* ================================================
   HERO
================================================ */

.hero {

    position: relative;

    min-height: 780px;

    margin-top: 82px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 80% 30%,
            #ffd9e9,
            transparent 30%
        ),

        radial-gradient(
            circle at 20% 80%,
            #ffe2ef,
            transparent 30%
        ),

        #fff8fb;

}


.hero::before {

    content: "";

    position: absolute;

    width: 550px;

    height: 550px;

    border-radius: 50%;

    background:
        #ffe6f0;

    right: -150px;

    top: -150px;

}


.hero::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    border-radius: 50%;

    background:
        #fff0f6;

    left: -100px;

    bottom: -100px;

}


.hero-container {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 50px;

    position: relative;

    z-index: 3;

}


.hero-content {

    padding-left: 30px;

}


.hero-label {

    color: var(--pink);

    font-size: 13px;

    letter-spacing: 2px;

    font-weight: 700;

}


.hero h1 {

    font-family:
        "Playfair Display";

    font-style: italic;

    font-size:
        clamp(48px, 5vw, 72px);

    line-height: 1.02;

    margin:
        20px 0;

}


.hero h1 span {

    color:
        var(--pink);

    display: block;

}


.hero p {

    max-width: 570px;

    color: var(--gray);

    font-size: 17px;

    line-height: 1.7;

}


.hero-buttons {

    display: flex;

    gap: 15px;

    margin-top: 30px;

}


.main-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    background:
        var(--pink);

    color: white;

    padding:
        15px 28px;

    border-radius:
        30px;

    font-weight: 600;

    box-shadow:
        0 12px 30px
        rgba(233,79,147,.25);

    transition: .3s;

}


.main-button:hover {

    transform:
        translateY(-4px);

}


.second-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border:
        1px solid var(--pink);

    color:
        var(--pink);

    padding:
        15px 28px;

    border-radius:
        30px;

    transition: .3s;

}


.second-button:hover {

    background:
        var(--pink);

    color:
        white;

}


.hero-features {

    display: flex;

    gap: 25px;

    margin-top: 35px;

}


.hero-features div {

    display: flex;

    align-items: center;

    gap: 7px;

    font-size: 12px;

}


.hero-features i {

    color:
        var(--pink);

}


/* ================================================
   HERO IMAGE
================================================ */

.hero-products {

    position: relative;

    height: 570px;

    display: grid;

    place-items: center;

}


.hero-circle {

    position: absolute;

    width: 470px;

    height: 470px;

    border-radius: 50%;

    background:
        #ffdce9;

    border:
        15px solid #ffeaf2;

}


.hero-image-card {

    width: 390px;

    height: 480px;

    position: relative;

    z-index: 2;

    border-radius:
        200px 200px 30px 30px;

    overflow: hidden;

    border:
        10px solid white;

    box-shadow:
        0 30px 70px
        rgba(130,50,90,.18);

    transform:
        rotate(2deg);

    animation:
        heroFloat 5s ease-in-out infinite;

}


.hero-image-card img {

    height: 100%;

    object-fit: cover;

}


.mini-card {

    position: absolute;

    z-index: 4;

    background: white;

    padding: 14px 18px;

    border-radius: 15px;

    display: flex;

    align-items: center;

    gap: 10px;

    box-shadow:
        0 15px 40px
        rgba(100,40,70,.12);

    animation:
        miniFloat 4s ease-in-out infinite;

}


.mini-card span {

    font-size: 25px;

}


.mini-card strong {

    display: block;

    font-size: 12px;

}


.mini-card small {

    color: var(--gray);

    font-size: 10px;

}


.mini-card-one {

    left: 0;

    bottom: 90px;

}


.mini-card-two {

    right: -15px;

    top: 110px;

    animation-delay: 1s;

}


/* ================================================
   GOOGLE REVIEW
================================================ */

.google-review {

    position: absolute;

    right: 35px;

    bottom: 25px;

    z-index: 5;

    background: white;

    padding:
        15px 22px;

    border-radius:
        16px;

    box-shadow:
        var(--shadow);

    text-align: center;

}


.google-review strong {

    color:
        #4285f4;

}


.google-review b {

    display: block;

    font-size: 22px;

}


.google-review span {

    color:
        #f58bb9;

    letter-spacing: 3px;

}


.google-review small {

    display: block;

    color: var(--gray);

    font-size: 10px;

}


/* ================================================
   BENEFITS
================================================ */

.benefits {

    background: white;

    padding: 35px 0;

}


.benefits-container {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 40px;

}


.benefit {

    display: flex;

    align-items: center;

    gap: 12px;

}


.benefit-icon {

    min-width: 52px;

    height: 52px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background:
        var(--pink-light);

    font-size: 22px;

}


.benefit strong {

    display: block;

    font-size: 14px;

}


.benefit span {

    color: var(--gray);

    font-size: 11px;

}


/* ================================================
   SECTIONS
================================================ */

.section {

    padding: 100px 0;

}


.section-heading {

    text-align: center;

    margin-bottom: 50px;

}


.section-heading > span {

    color:
        var(--pink);

    font-weight: 700;

    font-size: 12px;

    letter-spacing: 1px;

}


.section-heading h2 {

    font-family:
        "Playfair Display";

    font-size:
        clamp(35px,4vw,48px);

    margin-top: 10px;

}


.section-heading h2 em {

    color:
        var(--pink);

}


.section-heading p {

    color:
        var(--gray);

    margin-top: 10px;

}


/* ================================================
   CATALOGO
================================================ */

.catalog {

    background:
        rgba(255,248,251,.75);

}


/* ================================================
   CATEGORIAS
================================================ */

.categories {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 35px;

}


.category {

    background: white;

    color: var(--dark);

    border:
        1px solid #f4d9e5;

    padding:
        10px 20px;

    border-radius: 30px;

    transition: .3s;

    font-size: 13px;

}


.category:hover,
.category.active {

    background:
        var(--pink);

    color: white;

    border-color:
        var(--pink);

    transform:
        translateY(-2px);

}


/* ================================================
   PRODUCTOS
================================================ */

.products-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 25px;

}


.product {

    background: white;

    border-radius: 26px;

    overflow: hidden;

    border: 1px solid #f7dce8;

    box-shadow:
        0 10px 40px
        rgba(100,40,70,.06);

    transition: .4s;

}


.product:hover {

    transform:
        translateY(-8px);

    box-shadow:
        var(--shadow);

    border-color: #f3c4db;

}


.product-photo {

    height: 260px;

    position: relative;

    overflow: hidden;

    background:
        #fff7fa;

}


.product-photo::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(233,79,147,.10),
            transparent 45%
        );

    pointer-events: none;

}


.product-photo img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    transition: .5s;

}


.product:hover img {

    transform:
        scale(1.1);

}


.product-photo > span {

    position: absolute;

    top: 15px;

    left: 15px;

    background:
        white;

    color:
        var(--pink);

    padding:
        7px 12px;

    border-radius: 20px;

    font-size: 11px;

}


.product-body {

    padding: 20px 22px 24px;

}


.product-body small {

    display: inline-block;

    background:
        var(--pink-light);

    color:
        var(--pink);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    padding:
        5px 12px;

    border-radius: 20px;

    margin-bottom: 12px;

}


.product-body h3 {

    font-family:
        "Playfair Display";

    font-size: 23px;

    margin-top: 2px;

    color:
        var(--dark);

}


.product-body p {

    color:
        var(--gray);

    font-size: 13px;

    margin:
        8px 0 16px;

}


.product-footer {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 10px;

}


.product-footer strong {

    color:
        var(--pink-dark);

}


.product-footer .price-block {

    display: flex;

    flex-direction: column;

    gap: 2px;

}


.price-block .detail {

    color:
        var(--pink-dark);

    font-weight: 700;

}


.price-block .wholesale {

    color:
        var(--gray);

    font-size: 12px;

}


.product-footer button {

    margin-left: auto;

    background:
        var(--pink-light);

    color:
        var(--pink);

    padding:
        9px 18px;

    border-radius:
        20px;

    font-weight: 700;

    transition: .3s;

}


.product-footer button:hover {

    background:
        var(--pink);

    color: white;

    box-shadow:
        0 8px 20px
        rgba(233,79,147,.35);

}


/* ================================================
   NOSOTROS
================================================ */

.about {

    background:
        white;

}


.about-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;

}


.about-photo {

    position: relative;

}


.about-photo img {

    height: 500px;

    object-fit: cover;

    border-radius:
        30px;

}


.about-badge {

    position: absolute;

    bottom: 30px;

    right: -25px;

    background:
        var(--pink);

    color: white;

    padding:
        20px;

    border-radius:
        20px;

    text-align: center;

}


.about-badge strong {

    display: block;

    font-size: 30px;

}


.about-badge span {

    font-size: 12px;

}


.pink-title {

    color:
        var(--pink);

    font-weight: 700;

    font-size: 12px;

}


.about-text h2 {

    font-family:
        "Playfair Display";

    font-size:
        clamp(38px,4vw,52px);

    line-height: 1.1;

    margin:
        15px 0;

}


.about-text h2 em {

    color:
        var(--pink);

}


.about-text > p {

    color:
        var(--gray);

    line-height: 1.8;

}


.about-list {

    margin:
        30px 0;

}


.about-list div {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 15px;

}


.about-list i {

    width: 40px;

    height: 40px;

    display: grid;

    place-items: center;

    background:
        var(--pink-light);

    color:
        var(--pink);

    border-radius: 50%;

}


/* ================================================
   GALERIA
================================================ */

.gallery {

    background:
        #fff7fa;

}


.gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    grid-auto-rows:
        270px;

    gap: 15px;

}


.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 20px;

    padding: 16px;

    background:
        #fff;

}


.gallery-item.big {

    grid-column:
        span 2;

    grid-row:
        span 2;

}


.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}


.gallery-item:hover img {

    transform:
        scale(1.08);

}


.gallery-item div {

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    padding: 25px;

    color: white;

    background:
        linear-gradient(
            transparent,
            rgba(40,20,30,.75)
        );

}


.gallery-item div strong {

    display: block;

    font-family:
        "Playfair Display";

    font-size: 22px;

}


.gallery-item div span {

    font-size: 11px;

}


/* ================================================
   TESTIMONIOS
================================================ */

.testimonials {

    background:
        white;

}


.testimonials-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 25px;

}


.testimonial {

    background:
        #fff8fb;

    padding:
        30px;

    border:
        1px solid #f7dce8;

    border-radius:
        22px;

}


.stars {

    color:
        #f18bb9;

    letter-spacing: 3px;

}


.testimonial p {

    color:
        var(--gray);

    line-height: 1.7;

    margin:
        20px 0;

}


.testimonial strong {

    display: block;

}


.testimonial > span {

    color:
        var(--gray);

    font-size: 11px;

}


/* ================================================
   STEPS
================================================ */

.steps {

    background:
        #fff4f8;

}


.steps-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 25px;

    text-align: center;

}


.step-number {

    color:
        var(--pink);

    font-weight:
        700;

}


.step-icon {

    width: 80px;

    height: 80px;

    margin:
        12px auto 18px;

    border-radius: 50%;

    background:
        white;

    display: grid;

    place-items: center;

    font-size: 28px;

    box-shadow:
        var(--shadow);

}


.step p {

    color:
        var(--gray);

    font-size: 13px;

    margin-top: 8px;

}


/* ================================================
   CTA
================================================ */

.cta {

    position: relative;

    overflow: hidden;

    padding:
        100px 20px;

    text-align: center;

    color: white;

    background:
        linear-gradient(
            135deg,
            #e83e89,
            #f49ac0
        );

}


.cta-content {

    position: relative;

    z-index: 3;

}


.cta h2 {

    font-family:
        "Playfair Display";

    font-size:
        clamp(40px,5vw,60px);

    margin:
        15px 0;

}


.cta h2 em {

    color:
        #ffe1ee;

}


.cta-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 30px;

    background:
        white;

    color:
        var(--pink);

    padding:
        15px 28px;

    border-radius:
        30px;

    font-weight:
        700;

    transition: .3s;

}


.cta-button:hover {

    transform:
        translateY(-4px);

}


.cta-decoration {

    position: absolute;

    font-size: 100px;

    left: 8%;

    top: 30px;

    opacity: .15;

    animation:
        floatingGift 6s infinite;

}


.cta-decoration-two {

    left: auto;

    right: 8%;

}


/* ================================================
   FOOTER
================================================ */

.footer {

    background:
        #392c33;

    color:
        white;

}


.footer-grid {

    padding:
        70px 0;

    display: grid;

    grid-template-columns:
        2fr 1fr 1.5fr 1fr;

    gap: 50px;

}


.footer-logo {

    display: flex;

    align-items: center;

    gap: 10px;

}


.footer-icon-logo {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    overflow: hidden;

    flex-shrink: 0;

}


.footer-icon-logo img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.footer-logo strong {

    display: block;

    color:
        #ff82b6;

    font-family:
        "Playfair Display";

    font-size: 22px;

}


.footer-logo span {

    display: block;

    color:
        #d6aabd;

    font-family:
        "Playfair Display";

    font-size: 15px;

}


.footer-grid > div > p {

    color:
        #c8bbc0;

    font-size: 13px;

    line-height: 1.7;

    margin:
        20px 0;

}


.footer-grid h3 {

    margin-bottom:
        18px;

}


.footer-grid a {

    display: block;

    color:
        #c8bbc0;

    font-size: 13px;

    margin-bottom:
        10px;

}


.footer-grid a:hover {

    color:
        #ff82b6;

}


.footer-grid i {

    color:
        #ff82b6;

}


.social-footer {

    display: flex;

    gap: 10px;

}


.social-footer a {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.1);

    display: grid;

    place-items: center;

}


.footer-button {

    background:
        var(--pink);

    color:
        white !important;

    padding:
        11px 18px;

    border-radius:
        25px;

    text-align:
        center;

    margin-top:
        15px;

}


/* ================================================
   FOOTER BOTTOM
================================================ */

.footer-bottom {

    border-top:
        1px solid rgba(255,255,255,.1);

    padding:
        20px 5%;

    display: flex;

    justify-content:
        space-between;

    color:
        #a999a0;

    font-size:
        11px;

}


/* ================================================
   WHATSAPP
================================================ */

.whatsapp-float {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 62px;

    height: 62px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        #25d366;

    color: white;

    font-size: 30px;

    z-index: 999;

    box-shadow:
        0 10px 30px
        rgba(37,211,102,.3);

    animation:
        whatsappPulse 2s infinite;

}


/* ================================================
   TABLET
================================================ */

@media(max-width: 900px) {


    .nav {

        position: absolute;

        top: 82px;

        left: 0;

        right: 0;

        background: white;

        flex-direction: column;

        padding: 25px;

        align-items: center;

        transform:
            translateY(-150%);

        transition: .4s;

        box-shadow:
            0 10px 30px rgba(0,0,0,.1);

    }


    .nav.open {

        transform:
            translateY(0);

    }


    .nav-actions {

        display: none;

    }


    .menu-button {

        display: block;

    }


    .hero-container {

        grid-template-columns:
            1fr;

        text-align: center;

    }


    .hero-content {

        padding: 50px 0 0;

    }


    .hero p {

        margin: auto;

    }


    .hero-buttons {

        justify-content:
            center;

    }


    .hero-features {

        justify-content:
            center;

    }


    .hero-products {

        height: 480px;

    }


    .benefits-container {

        grid-template-columns:
            repeat(2,1fr);

    }


    .products-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .gallery-grid {

        grid-template-columns:
            repeat(3,1fr);

        grid-auto-rows:
            230px;

    }


    .gallery-item.big {

        grid-column:
            span 2;

        grid-row:
            span 1;

    }


    .about-grid {

        grid-template-columns:
            1fr;

    }


    .testimonials-grid {

        grid-template-columns:
            1fr;

    }


    .steps-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .footer-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .categories {

        overflow-x:
            auto;

        flex-wrap:
            nowrap;

        -webkit-overflow-scrolling:
            touch;

        scrollbar-width:
            none;

    }

    .categories::-webkit-scrollbar {

        display: none;

    }

}


/* ================================================
   MOBILE
================================================ */

@media(max-width: 600px) {


    .header {

        height: 70px;

    }


    .nav {

        top: 70px;

    }


    .logo-text strong {

        font-size: 18px;

    }


    .logo-text span {

        font-size: 12px;

    }


    .icon-logo {

        width: 35px !important;

        height: 35px !important;

    }


    .hero {

        margin-top: 70px;

        padding-bottom: 30px;

        min-height: auto;

    }


    .hero h1 {

        font-size: 34px;

    }


    .hero p {

        font-size: 13px;

        line-height: 1.5;

    }


    .hero-label {

        font-size: 11px;

        letter-spacing: 1.5px;

    }


    .hero-buttons {

        flex-direction:
            row;

        gap: 10px;

        padding:
            0 10px;

    }


    .main-button,
    .second-button {

        width: auto;

        flex: 1;

        padding:
            12px 16px;

        font-size:
            13px;

    }


    .hero-features {

        flex-direction:
            row;

        flex-wrap:
            wrap;

        justify-content:
            center;

        gap:
            12px;

        margin-top:
            20px;

    }


    .hero-features div {

        font-size:
            10px;

        gap:
            4px;

    }


    .hero-products {

        transform:
            scale(.60);

        margin-top:
            -80px;

        margin-bottom:
            -80px;

    }


    .hero-circle {

        width: 350px;

        height: 350px;

    }


    .hero-image-card {

        width: 280px;

        height: 360px;

    }


    .mini-card-one {

        bottom:
            60px;

    }


    .google-review {

        transform:
            scale(.65);

        right:
            10px;

        bottom:
            5px;

    }


    .mini-card-two {

        display: none;

    }


    .benefits-container {

        grid-template-columns:
            repeat(2,1fr);

        gap:
            15px;

    }


    .benefit {

        justify-content:
            center;

        gap:
            8px;

    }


    .benefit-icon {

        min-width:
            40px;

        height:
            40px;

        font-size:
            18px;

    }


    .benefit strong {

        font-size:
            12px;

    }


    .benefit span {

        font-size:
            10px;

    }


    .section {

        padding:
            50px 0;

    }


    .section-heading {

        padding:
            0 15px;

        margin-bottom:
            30px;

    }


    .section-heading h2 {

        font-size:
            36px;

    }


    .categories {

        padding:
            0 10px;

        gap: 8px;

        overflow-x:
            auto;

        flex-wrap:
            nowrap;

        justify-content:
            flex-start;

        -webkit-overflow-scrolling:
            touch;

        scrollbar-width:
            none;

        padding-bottom:
            8px;

    }

    .categories::-webkit-scrollbar {

        display: none;

    }


    .category {

        font-size:
            13px;

        padding:
            12px 18px;

        flex-shrink:
            0;

    }


    .products-grid {

        grid-template-columns:
            repeat(2,1fr);

        gap:
            12px;

        align-items:
            stretch;

    }


    .product {

        display:
            flex;

        flex-direction:
            column;

    }


    .product-photo {

        height:
            160px;

    }


    .product-body {

        padding:
            12px 14px 16px;

        display:
            flex;

        flex-direction:
            column;

        flex:
            1;

    }


    .product-body h3 {

        font-size:
            16px;

    }


    .product-body p {

        font-size:
            11px;

        margin:
            5px 0 10px;

        display:
            -webkit-box;
        -webkit-line-clamp:
            2;
        -webkit-box-orient:
            vertical;
        overflow:
            hidden;

        flex:
            1;

    }


    .product-body small {

        font-size:
            9px;

        padding:
            3px 8px;

    }


    .product-footer {

        flex-direction:
            column;

        align-items:
            stretch;

        gap:
            8px;

        margin-top:
            auto;

    }


    .product-footer strong {

        font-size:
            13px;

    }


    .product-footer button {

        margin-left:
            0;

        width:
            100%;

        padding:
            10px;

        font-size:
            12px;

    }


    .about-grid {

        gap:
            45px;

    }


    .about-photo img {

        height:
            380px;

    }


    .about-badge {

        right:
            10px;

        bottom:
            15px;

    }


    .gallery-grid {

        grid-template-columns:
            repeat(2,1fr);

        grid-auto-rows:
            200px;

        gap:
            10px;

    }


    .gallery-item.big {

        grid-column:
            span 2;

        grid-row:
            span 1;

    }


    .steps-grid {

        grid-template-columns:
            1fr;

    }


    .footer-grid {

        grid-template-columns:
            1fr;

        gap:
            35px;

    }


    .footer-bottom {

        flex-direction:
            column;

        gap:
            10px;

        text-align:
            center;

    }


    .floating-decoration {

        opacity:
            .6;

    }


    .float-item {

        font-size:
            25px;

    }


    .whatsapp-float {

        width:
            55px;

        height:
            55px;

        right:
            18px;

        bottom:
            18px;

        font-size:
            26px;

    }

}

/* ================================================
   EXTRA SMALL (320px)
=============================================== */

@media(max-width: 380px) {

    .hero h1 {

        font-size: 28px;

    }

    .hero p {

        font-size: 12px;

    }

    .hero-buttons {

        flex-direction:
            column;

    }

    .main-button,
    .second-button {

        width:
            100%;

        flex:
            none;

    }

    .categories {

        gap: 6px;

    }

    .category {

        padding:
            10px 14px;

        font-size:
            12px;

        flex-shrink:
            0;

    }

    .gallery-grid {

        grid-template-columns:
            1fr;

        grid-auto-rows:
            220px;

    }

    .gallery-item.big {

        grid-column:
            span 1;

        grid-row:
            span 1;

    }

    .products-grid {

        gap:
            10px;

    }

    .product-photo {

        height:
            140px;

    }

    .product-body h3 {

        font-size:
            14px;

    }

    .hero-products {

        transform:
            scale(.50);

        margin-top:
            -100px;

        margin-bottom:
            -100px;

    }

}