/* =====================================================
   VARIABLES
===================================================== */

:root {

    --rosa:#D4145A;

    --rosa-claro: #ff3d82;

    --rosa-suave: #fff1f6;

    --morado: #321044;

    --morado-oscuro: #25072f;

    --verde: #c5e900;

    --amarillo: #fff5c9;

    --texto: #211a25;

    --gris: #777;

    --blanco: #fff;

}


/* =====================================================
   GENERAL
===================================================== */

* {
    box-sizing: border-box;
}

body {

    margin: 0;

    font-family: 'DM Sans', sans-serif;

    color: var(--texto);

    background: #fff;

}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}


/* =====================================================
   TOP BAR
===================================================== */

.top-bar {

    background: linear-gradient(
      #D4145A
    );

    color: white;

    padding: 9px 0;

    font-size: 12px;

    font-weight: 500;

}

.top-bar i {

    margin-right: 7px;

    font-size: 14px;

}


/* =====================================================
   NAVBAR
===================================================== */

.navbar-florea {

    background: #fff;

    min-height: 95px;

    border-bottom: 1px solid #f4f4f4;

    z-index: 1000;

}

.logo {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--morado) !important;

}

.logo-icon {

    width: 48px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

}

.logo-icon span {

    font-family: 'Playfair Display', serif;

    font-size: 58px;

    font-style: italic;

    color: var(--rosa);

}

.logo-text {

    font-family: 'Playfair Display', serif;

    letter-spacing: 7px;

    font-size: 26px;

    font-weight: 600;

}

.logo small {

    display: block;

    font-size: 7px;

    letter-spacing: 3px;

    color: var(--rosa);

    text-align: center;

}


.navbar-nav {

    gap: 7px;

}

.nav-link {

    color: #222 !important;

    font-size: 13px;

    font-weight: 500;

    padding: 10px 13px !important;

    transition: .3s;

}

.nav-link:hover {

    color: var(--rosa) !important;

}


.nav-icons {

    display: flex;

    gap: 20px;

    align-items: center;

}

.nav-icons a {

    color: #211a25;

    font-size: 21px;

    position: relative;

    transition: .3s;

}

.nav-icons a:hover {

    color: var(--rosa);

}

.cart-icon span {

    position: absolute;

    top: -8px;

    right: -9px;

    background: var(--rosa);

    color: #fff;

    width: 18px;

    height: 18px;

    border-radius: 50%;

    font-size: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

}




.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 150px;
    height: auto;
    display: block;
    object-fit: contain;
}







/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 500px;

    background:

        radial-gradient(
            circle at 50% 90%,
            rgba(255, 217, 0, .22),
            transparent 30%
        ),

        #fff;

    overflow: hidden;

}

.hero-content {

    padding:

        80px

        20px

        80px

        5%;

    position: relative;

    z-index: 2;

}

.hero-small {

    color: var(--rosa);

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 15px;

}

.hero h1 {

    font-family: 'Playfair Display', serif;

    font-size: clamp(42px, 4.5vw, 65px);

    line-height: 1.08;

    font-weight: 600;

    color: var(--morado);

    margin-bottom: 20px;

}

.hero h1 span {

    display: block;

    color: var(--rosa);

    font-style: italic;

}

.hero h1 strong {

    display: block;

    color: #92c900;

    font-weight: 600;

}

.hero p {

    color: #555;

    max-width: 440px;

    line-height: 1.7;

    font-size: 15px;

    margin-bottom: 28px;

}


.btn-florea {

    display: inline-flex;

    align-items: center;

    gap: 30px;

    background: var(--rosa);

    color: white;

    padding: 15px 22px;

    border-radius: 5px;

    font-size: 12px;

    font-weight: 700;

    transition: .3s;

}

.btn-florea:hover {

    background: var(--morado);

    color: white;

    transform: translateY(-2px);

}


.hero-image {

    height: 500px;

    overflow: hidden;

}

.hero-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

}


/* =====================================================
   BENEFICIOS
===================================================== */

.benefits {

    background: #fffbea;

    padding: 22px 0;

}

.benefit {

    display: flex;

    align-items: center;

    gap: 14px;

    justify-content: center;

    padding: 8px;

}

.benefit-icon {

    width: 45px;

    height: 45px;

    border: 2px solid var(--rosa);

    color: var(--rosa);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 21px;

    flex-shrink: 0;

}

.benefit strong {

    display: block;

    font-size: 13px;

}

.benefit small {

    display: block;

    font-size: 10px;

    color: #777;

    margin-top: 3px;

}


/* =====================================================
   SECCIONES
===================================================== */

.section {

    padding: 55px 0;

}

.products-section {

    padding-top: 25px;

}

.section-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;

}

.section-header h2 {

    font-size: 16px;

    font-weight: 700;

    color: var(--morado);

    margin: 0;

}

.section-header a {

    color: var(--rosa);

    font-size: 12px;

    font-weight: 600;

}

.section-header i {

    margin-left: 5px;

}


/* =====================================================
   CATEGORIAS
===================================================== */

.category-card {

    display: block;

    background: white;

    border-radius: 10px;

    overflow: hidden;

    border: 1px solid #eee;

    box-shadow: 0 4px 15px rgba(0,0,0,.04);

    transition: .3s;

}

.category-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(255,0,97,.15);

}

.category-image {

    height: 165px;

    overflow: hidden;

}

.category-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .4s;

}

.category-card:hover img {

    transform: scale(1.07);

}

.category-info {

    padding: 13px;

}

.category-info strong {

    display: block;

    color: #24152c;

    font-size: 12px;

    margin-bottom: 7px;

}

.category-info span {

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: var(--rosa);

    font-size: 10px;

    font-weight: 600;

}


/* =====================================================
   PRODUCTOS
===================================================== */

.product-card {

    background: white;

    border-radius: 9px;

    overflow: hidden;

    border: 1px solid #eee;

    transition: .3s;

}

.product-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(0,0,0,.1);

}

.product-image {

    height: 330px;

    position: relative;

    background: #f7f7f7;

    overflow: hidden;

}

.product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .4s;

}

.product-card:hover .product-image img {

    transform: scale(1.04);

}

.product-badge {

    position: absolute;

    z-index: 2;

    top: 12px;

    left: 12px;

    background: var(--rosa);

    color: white;

    padding: 6px 10px;

    border-radius: 20px;

    font-size: 10px;

    font-weight: 600;

}

.badge-green {

    background: #9cc900;

}

.badge-orange {

    background: #ff9d00;

}

.product-body {

    padding: 16px;

}

.product-body h3 {

    font-size: 14px;

    font-weight: 700;

    margin: 0 0 5px;

}

.product-body p {

    color: #777;

    font-size: 11px;

    margin-bottom: 8px;

}

.rating {

    color: #ffae00;

    font-size: 12px;

}

.rating span {

    color: #777;

    margin-left: 5px;

}

.product-bottom {

    margin-top: 13px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.product-bottom strong {

    font-size: 17px;

}

.product-bottom del {

    color: #aaa;

    display: block;

    font-size: 10px;

}

.cart-button {

    border: none;

    background: var(--rosa);

    color: white;

    width: 38px;

    height: 38px;

    border-radius: 50%;

    transition: .3s;

}

.cart-button:hover {

    background: var(--morado);

    transform: scale(1.08);

}


/* =====================================================
   BANNER
===================================================== */

.promo-banner {

    min-height: 300px;

    position: relative;

    overflow: hidden;

    background:

        linear-gradient(
            90deg,
            #2c0639 0%,
            #4b0c52 50%,
            #650a55 100%
        );

    color: white;

}

.promo-image {

    position: absolute;

    right: 0;

    top: 0;

    width: 60%;

    height: 100%;

    background-image:

        linear-gradient(
            90deg,
            #2c0639,
            transparent 40%
        ),

        url('../img/banner.jpg');

    background-size: cover;

    background-position: center;

}

.promo-content {

    position: relative;

    z-index: 2;

    padding: 55px 5%;

}

.promo-content span {

    color: #d7f000;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

}

.promo-content h2 {

    font-family: 'Playfair Display', serif;

    font-size: 40px;

    margin: 10px 0;

}

.promo-content em {

    display: block;

    color: #d9ef00;

}

.promo-content p {

    font-size: 13px;

}

.promo-button {

    display: inline-flex;

    gap: 25px;

    background: #cfff00;

    color: #28132e;

    padding: 14px 20px;

    font-size: 11px;

    font-weight: 800;

    border-radius: 5px;

    margin-top: 8px;

}

.promo-button:hover {

    background: white;

    color: var(--morado);

}


/* =====================================================
   VALUES
===================================================== */

.values {

    padding: 25px 0;

    background: white;

    border-bottom: 1px solid #eee;

}

.value {

    display: flex;

    gap: 15px;

    align-items: center;

    justify-content: center;

}

.value i {

    color: var(--rosa);

    font-size: 29px;

}

.value:nth-child(2) i {

    color: #b2db00;

}

.value strong {

    display: block;

    font-size: 12px;

}

.value small {

    color: #777;

    font-size: 10px;

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    background:

        linear-gradient(
            135deg,
            #280632,
            #430c4c
        );

    color: white;

    padding-top: 55px;

}

.footer-logo {

    font-family: 'Playfair Display', serif;

    font-size: 25px;

    letter-spacing: 7px;

}

.footer-logo span {

    color: #cfff00;

    font-style: italic;

}

.footer > .container-fluid > .row {

    padding-bottom: 45px;

}

.footer small {

    color: #ff1c72;

    font-size: 7px;

    letter-spacing: 3px;

}

.footer p {

    color: #ddd;

    font-size: 11px;

    line-height: 1.8;

    margin-top: 15px;

    max-width: 270px;

}

.footer h5 {

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 18px;

}

.footer ul {

    padding: 0;

    margin: 0;

    list-style: none;

}

.footer li {

    margin-bottom: 9px;

}

.footer li a {

    color: #ddd;

    font-size: 11px;

    transition: .3s;

}

.footer li a:hover {

    color: #cfff00;

}

.socials {

    display: flex;

    gap: 15px;

    margin-top: 20px;

}

.socials a {

    color: white;

    font-size: 17px;

}

.socials a:hover {

    color: #cfff00;

}

.footer-phone {

    color: #cfff00;

    font-size: 11px;

    margin-top: 18px;

}

.footer-phone i {

    margin-right: 6px;

}

.footer form input {

    height: 45px;

    border: none;

    border-radius: 5px;

    margin-bottom: 10px;

    font-size: 11px;

    padding: 0 15px;

}

.footer form button {

    width: 100%;

    height: 45px;

    border: none;

    border-radius: 5px;

    background: var(--rosa);

    color: white;

    font-size: 11px;

    font-weight: 700;

}

.footer form button:hover {

    background: #cfff00;

    color: var(--morado);

}


/* =====================================================
   COPYRIGHT
===================================================== */

.copyright {

    background: #ff005c;

    padding: 13px 0;

    font-size: 10px;

}

.payment {

    margin-left: 22px;

    font-weight: 800;

    font-size: 13px;

}


/* =====================================================
   DROPDOWN
===================================================== */

.dropdown-menu {

    border: none;

    box-shadow:

        0 10px 30px rgba(0,0,0,.1);

    border-radius: 8px;

    padding: 8px;

}

.dropdown-item {

    font-size: 12px;

    padding: 9px 13px;

}

.dropdown-item:hover {

    background: var(--rosa-suave);

    color: var(--rosa);

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .navbar-nav {

        margin-top: 15px;

    }

    .nav-icons {

        margin: 15px 0;

    }

    .hero-content {

        padding:

            55px

            30px;

    }

    .hero-image {

        height: 400px;

    }

    .benefit {

        justify-content: flex-start;

    }

}


@media (max-width: 767px) {

    .top-bar {

        font-size: 9px;

    }

    .top-bar .col-md-4 {

        padding: 3px;

    }

    .top-bar .col-md-4:nth-child(2) {

        display: none;

    }

    .navbar-florea {

        min-height: 75px;

    }

    .logo-text {

        font-size: 20px;

    }

    .logo-icon span {

        font-size: 45px;

    }

    .hero {

        min-height: auto;

    }

    .hero-content {

        padding: 45px 25px 30px;

    }

    .hero h1 {

        font-size: 42px;

    }

    .hero-image {

        height: 330px;

    }

    .benefits {

        padding: 15px 0;

    }

    .benefit {

        margin-bottom: 10px;

    }

    .benefit-icon {

        width: 36px;

        height: 36px;

        font-size: 17px;

    }

    .benefit strong {

        font-size: 10px;

    }

    .benefit small {

        font-size: 8px;

    }

    .section {

        padding: 40px 0;

    }

    .category-image {

        height: 150px;

    }

    .product-image {

        height: 300px;

    }

    .promo-banner {

        min-height: 430px;

    }

    .promo-image {

        width: 100%;

        height: 230px;

        top: auto;

        bottom: 0;

        background-image:

            linear-gradient(
                0deg,
                #2c0639,
                transparent
            ),

            url('../img/banner.jpg');

    }

    .promo-content {

        padding: 45px 25px;

    }

    .promo-content h2 {

        font-size: 34px;

    }

    .value {

        justify-content: flex-start;

        margin-bottom: 18px;

    }

    .footer {

        padding-top: 40px;

    }

    .copyright {

        text-align: center;

    }

    .copyright .text-md-end {

        margin-top: 10px;

        text-align: center !important;

    }

    .payment {

        margin: 0 6px;

    }

}