/* =========================================================
   CUTEVIBE FINAL DESIGN
   Pink / White Premium Fashion Store
========================================================= */

:root {
    --pink: #ef6f91;
    --pink-dark: #df567b;
    --pink-light: #fff0f4;
    --pink-bg: #fff7f9;

    --lavender: #f1eef9;
    --cream: #fbf5ed;
    --blue-bg: #edf3f8;
    --jeans-bg: #edf2f7;

    --dark: #222126;
    --text: #555159;
    --muted: #898289;

    --border: #eee5e9;
    --white: #ffffff;

    --container: 1140px;

    --shadow:
        0 10px 30px rgba(80, 45, 58, .08);
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family:
        "DM Sans",
        sans-serif;

    color: var(--dark);

    background: #fff;

    overflow-x: hidden;
}

a {
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

img {
    max-width: 100%;
}


/* =========================================================
   TOP BAR
========================================================= */

.cv-topbar {
    height: 29px;

    background:
        linear-gradient(
            90deg,
            #ffd4df,
            #ffe3ea,
            #ffd4df
        );

    color: #28252a;

    font-size: 11px;
}

.cv-topbar-inner {
    height: 29px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;
}

.cv-topbar-inner b {
    font-weight: 400;
    color: #9d7f88;
}


/* =========================================================
   HEADER
========================================================= */

.cv-header {
    background: #fff;

    border-bottom:
        1px solid #f1e9ec;

    position: relative;

    z-index: 100;
}

.cv-navbar {
    min-height: 73px;

    padding: 0;
}


/* LOGO */

.cv-logo,
.cv-footer-logo {
    font-family:
        "Playfair Display",
        serif;

    color: var(--dark);

    font-size: 30px;

    line-height: .9;

    position: relative;

    display: inline-block;
}

.cv-logo::after,
.cv-footer-logo::after {
    content: "♥";

    position: absolute;

    right: -12px;

    top: -7px;

    color: var(--pink);

    font-size: 15px;
}

.cv-logo span,
.cv-footer-logo span {
    color: #b85d68;
}

.cv-logo small,
.cv-footer-logo small {
    display: block;

    margin-top: 7px;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 9px;

    letter-spacing: .8px;

    color: #746b70;
}


/* MENU */

.cv-menu {
    gap: 4px;
}

.cv-menu .nav-link {
    color: #403b40;

    font-size: 12px;

    font-weight: 500;

    padding:
        27px 11px;

    position: relative;

    transition: .2s;
}

.cv-menu .nav-link:hover {
    color: var(--pink);
}

.cv-menu .nav-link.active {
    color: var(--pink);
}

.cv-menu .nav-link.active::after {
    content: "";

    position: absolute;

    left: 10px;
    right: 10px;
    bottom: 17px;

    height: 1px;

    background: var(--pink);
}

.cv-dropdown i {
    font-size: 8px;
    margin-left: 4px;
}


/* NAV ICONS */

.cv-nav-actions {
    display: flex;

    align-items: center;

    gap: 8px;
}

.cv-nav-icon {
    border: 0;

    background: transparent;

    width: 30px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #252229;

    position: relative;

    padding: 0;
}

.cv-nav-icon i {
    font-size: 19px;
}

.cv-nav-icon:hover {
    color: var(--pink);
}

.cv-badge-wrapper span {
    position: absolute;

    top: -4px;
    right: -4px;

    width: 16px;
    height: 16px;

    border-radius: 50%;

    background: var(--pink);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 9px;
}


/* MOBILE TOGGLER */

.cv-toggler {
    border: 0;

    color: var(--pink);

    font-size: 27px;

    padding: 2px 6px;
}

.cv-toggler:focus {
    box-shadow: none;
}


/* =========================================================
   HERO
========================================================= */

.cv-hero {
    position: relative;

    min-height: 370px;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            #fff1f4 0%,
            #fff8fa 45%,
            #f8e9ef 100%
        );
}

.cv-hero-row {
    min-height: 370px;
}


/* HERO CONTENT */

.cv-hero-content {
    position: relative;

    z-index: 5;

    padding-left: 70px;
}

.cv-hero-label {
    display: inline-block;

    padding:
        5px 10px;

    border-radius: 3px;

    background: #fff;

    color: var(--pink);

    font-size: 11px;

    font-weight: 600;
}

.cv-hero-content h1 {
    margin: 14px 0 15px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 50px;

    line-height: 1.08;

    font-weight: 600;

    letter-spacing: -1px;
}

.cv-hero-content h1 em {
    color: var(--pink);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;

    font-size: 55px;

    margin-left: 3px;
}

.cv-hero-content p {
    margin: 0 0 25px;

    color: #403a3f;

    font-size: 14px;

    line-height: 1.65;
}


/* BUTTONS */

.cv-hero-buttons {
    display: flex;

    gap: 15px;

    align-items: center;
}

.cv-primary-btn,
.cv-secondary-btn {
    min-height: 38px;

    padding:
        0 17px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border-radius: 4px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .2px;

    transition: .25s;
}

.cv-primary-btn {
    background: var(--pink);

    color: #fff;

    box-shadow:
        0 8px 18px
        rgba(239,111,145,.22);
}

.cv-primary-btn:hover {
    background: var(--pink-dark);

    color: #fff;

    transform: translateY(-1px);
}

.cv-secondary-btn {
    color: #39343a;

    background: rgba(255,255,255,.5);

    border:
        1px solid #e6cfd7;
}

.cv-secondary-btn:hover {
    color: var(--pink);

    border-color: var(--pink);
}


/* HERO VISUAL */

.cv-hero-visual {
    position: relative;

    height: 370px;

    display: flex;

    align-items: flex-end;

    justify-content: center;
}

.cv-hero-pink-circle {
    position: absolute;

    width: 390px;

    height: 390px;

    background: #f7cad8;

    border-radius: 50%;

    top: -55px;

    right: 75px;
}

.cv-hero-model {
    position: relative;

    z-index: 2;

    height: 370px;

    width: 500px;

    overflow: hidden;

    border-radius:
        230px 230px 0 0;
}

.cv-hero-model img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    mix-blend-mode: normal;
}

.cv-hero-heart {
    position: absolute;

    z-index: 5;

    left: 35px;

    top: 90px;

    color: var(--pink);

    font-size: 55px;

    font-family:
        "Playfair Display",
        serif;
}


/* FLOWER DECORATIONS */

.cv-flower {
    position: absolute;

    color: #efa0b5;

    opacity: .55;

    z-index: 1;

    font-size: 35px;
}

.cv-flower span {
    display: block;

    line-height: .75;
}

.flower-left {
    left: 10px;
    top: 65px;

    transform: rotate(-25deg);
}

.flower-right {
    right: 20px;
    top: 55px;

    transform: rotate(25deg);
}


/* ARROWS */

.cv-hero-arrow {
    position: absolute;

    z-index: 10;

    width: 38px;
    height: 38px;

    border: 0;

    border-radius: 50%;

    background: #fff;

    color: #222;

    box-shadow:
        0 4px 15px rgba(0,0,0,.08);

    top: 50%;

    transform: translateY(-50%);
}

.cv-hero-prev {
    left: 24px;
}

.cv-hero-next {
    right: 24px;
}


/* DOTS */

.cv-slider-dots {
    position: absolute;

    bottom: 10px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 6px;

    z-index: 10;
}

.cv-slider-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #aaa;
}

.cv-slider-dots span.active {
    background: var(--pink);

    width: 10px;

    border-radius: 10px;
}


/* =========================================================
   CATEGORY
========================================================= */

.cv-category-section {
    padding:
        22px 0 25px;

    background: #fff;
}

.cv-section-title {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;
}

.cv-section-title h2 {
    margin: 0;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: .4px;
}

.cv-section-title > span {
    color: var(--pink);

    font-size: 18px;
}

.cv-title-line {
    width: 35px;

    height: 1px;

    background: #f3b2c4;
}

.cv-category-row {
    --bs-gutter-x: 35px;
}

.cv-category {
    display: block;

    text-align: center;

    color: #222;

    transition: .25s;
}

.cv-category-image {
    width: 145px;

    height: 145px;

    margin: 0 auto 8px;

    border-radius: 50%;

    overflow: hidden;

    position: relative;

    display: flex;

    align-items: flex-end;

    justify-content: center;
}

.cv-category-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .35s;
}

.cv-category:hover
.cv-category-image img {
    transform: scale(1.07);
}

.pink-bg {
    background: #fbdce7;
}

.lavender-bg {
    background: #e8e0f2;
}

.blue-bg {
    background: #e5edf5;
}

.cream-bg {
    background: #f5e9da;
}

.jeans-bg {
    background: #e7edf3;
}

.cv-category h3 {
    margin:
        0 0 7px;

    font-size: 12px;

    font-weight: 700;
}

.cv-category-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    height: 25px;

    padding:
        0 13px;

    border-radius: 4px;

    background: var(--pink);

    color: #fff;

    font-size: 9px;

    font-weight: 700;

    transition: .2s;
}

.cv-category:hover .cv-category-btn {
    background: var(--pink-dark);
}


/* =========================================================
   COLLECTION BANNERS
========================================================= */

.cv-collection-section {
    padding:
        0 0 24px;
}

.cv-collection-card {
    min-height: 167px;

    overflow: hidden;

    border-radius: 10px;

    display: flex;

    position: relative;
}

.cv-pink-card {
    background:
        linear-gradient(
            100deg,
            #ffe8ed,
            #ffdfe7
        );
}

.cv-lavender-card {
    background:
        linear-gradient(
            100deg,
            #f0eafa,
            #e9e6f7
        );
}

.cv-collection-content {
    position: relative;

    z-index: 3;

    padding:
        26px 0 20px 24px;

    width: 53%;
}

.cv-collection-content h2 {
    margin: 0;

    color: #d85170;

    font-family:
        "Playfair Display",
        serif;

    font-size: 20px;

    line-height: 1.1;
}

.cv-lavender-card
.cv-collection-content h2 {
    color: #60519b;
}

.cv-collection-content h3 {
    margin:
        3px 0 12px;

    color: #d85170;

    font-family:
        "Playfair Display",
        serif;

    font-size: 17px;

    font-weight: 600;
}

.cv-lavender-card
.cv-collection-content h3 {
    color: #60519b;
}

.cv-collection-content p {
    margin: 0 0 20px;

    color: #353039;

    font-size: 9px;
}

.cv-collection-content a {
    color: #222;

    font-size: 9px;

    font-weight: 700;
}

.cv-collection-content a i {
    margin-left: 5px;
}

.cv-collection-image {
    position: absolute;

    right: 0;
    top: 0;

    width: 51%;
    height: 100%;
}

.cv-collection-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.cv-group-image {
    position: absolute;

    right: 0;
    top: 0;

    width: 55%;
    height: 100%;

    overflow: hidden;
}

.cv-group-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   BENEFITS
========================================================= */

.cv-benefits {
    margin:
        0 auto 22px;

    padding:
        13px 0;

    border:
        1px solid #f2e4e8;

    border-radius: 12px;

    max-width:
        calc(var(--container) - 20px);
}

.cv-benefit {
    min-height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-right:
        1px solid #eee4e8;
}

.cv-benefit:last-child {
    border-right: 0;
}

.cv-benefit-icon {
    width: 32px;
    height: 32px;

    border: 1px solid #f4b4c5;

    color: var(--pink);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 14px;
}

.cv-benefit strong {
    display: block;

    font-size: 9px;

    margin-bottom: 3px;
}

.cv-benefit span {
    display: block;

    color: #8d8388;

    font-size: 8px;
}


/* =========================================================
   PRODUCTS
========================================================= */

.cv-products-section {
    padding:
        0 0 28px;
}

.cv-products-heading {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    margin-bottom: 12px;
}

.cv-products-heading h2 {
    margin: 0;

    font-size: 16px;

    font-weight: 700;
}

.cv-products-heading > a {
    color: var(--pink);

    font-size: 9px;

    font-weight: 600;

    padding-top: 4px;
}

.cv-heading-decoration {
    color: var(--pink);

    font-size: 10px;

    margin-top: 2px;
}


/* PRODUCT CARD */

.cv-product-card {
    background: #fff;

    border:
        1px solid #f0e7ea;

    border-radius: 9px;

    overflow: hidden;

    transition: .25s;
}

.cv-product-card:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(80,45,58,.08);
}

.cv-product-image {
    height: 180px;

    position: relative;

    overflow: hidden;

    background: #f7f4f5;
}

.cv-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .35s;
}

.cv-product-card:hover
.cv-product-image img {
    transform: scale(1.04);
}

.cv-product-label {
    position: absolute;

    left: 8px;
    top: 8px;

    z-index: 3;

    padding:
        4px 7px;

    background: var(--pink);

    color: #fff;

    border-radius: 4px;

    font-size: 8px;
}

.cv-wishlist {
    position: absolute;

    right: 8px;
    top: 8px;

    z-index: 4;

    width: 23px;
    height: 23px;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,.92);

    color: #555;

    font-size: 14px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.cv-wishlist.active {
    color: var(--pink);
}

.cv-product-info {
    padding:
        8px 10px 10px;
}

.cv-product-info h4 {
    margin:
        0 0 6px;

    font-size: 9px;

    font-weight: 500;

    color: #29252a;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}

.cv-price {
    display: flex;

    align-items: center;

    gap: 6px;
}

.cv-price strong {
    font-size: 11px;
}

.cv-price del {
    font-size: 8px;

    color: #a49a9f;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.cv-newsletter-section {
    padding:
        0 0 20px;
}

.cv-newsletter {
    min-height: 78px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #ffeef3,
            #fff4f7
        );

    display: flex;

    align-items: center;

    padding:
        12px 65px;

    gap: 15px;
}

.cv-newsletter-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    background: var(--pink);

    color: #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;
}

.cv-newsletter-text {
    min-width: 300px;
}

.cv-newsletter-text h3 {
    margin: 0 0 4px;

    font-size: 13px;

    font-weight: 700;
}

.cv-newsletter-text p {
    margin: 0;

    font-size: 9px;

    color: #665e63;
}

.cv-newsletter-form {
    flex: 1;

    display: flex;

    align-items: center;

    height: 38px;

    background: #fff;

    border-radius: 22px;

    padding: 3px;

    margin-left: auto;
}

.cv-newsletter-form input {
    flex: 1;

    min-width: 0;

    border: 0;

    outline: 0;

    background: transparent;

    padding:
        0 15px;

    font-size: 9px;
}

.cv-newsletter-form button {
    height: 32px;

    padding:
        0 24px;

    border: 0;

    border-radius: 18px;

    background: var(--pink);

    color: #fff;

    font-size: 9px;

    font-weight: 700;
}

.cv-newsletter-heart {
    color: var(--pink);

    font-size: 20px;

    white-space: nowrap;
}


/* =========================================================
   FOOTER
========================================================= */

.cv-footer {
    background:
        #faf7f8;

    padding:
        35px 0 0;

    border-top:
        1px solid #f0e6e9;
}

.cv-footer-logo {
    font-size: 25px;

    margin-bottom: 13px;
}

.cv-footer-logo small {
    font-size: 7px;
}

.cv-footer p {
    max-width: 260px;

    color: #746c71;

    font-size: 9px;

    line-height: 1.6;

    margin-bottom: 12px;
}

.cv-social {
    display: flex;

    gap: 7px;
}

.cv-social a {
    width: 25px;
    height: 25px;

    border:
        1px solid #e5dce0;

    background: #fff;

    color: #5e565b;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 11px;

    transition: .2s;
}

.cv-social a:hover {
    background: var(--pink);

    color: #fff;

    border-color: var(--pink);
}

.cv-footer h4 {
    margin:
        2px 0 14px;

    font-size: 9px;

    font-weight: 700;
}

.cv-footer ul {
    list-style: none;

    padding: 0;

    margin: 0;
}

.cv-footer li {
    margin-bottom: 7px;
}

.cv-footer li a,
.cv-contact li {
    color: #736a70;

    font-size: 9px;

    line-height: 1.4;
}

.cv-footer li a:hover {
    color: var(--pink);
}

.cv-contact li {
    display: flex;

    gap: 6px;

    align-items: flex-start;
}

.cv-contact i {
    color: var(--pink);

    font-size: 10px;
}

.cv-footer-bottom {
    margin-top:
        28px;

    padding:
        12px 0;

    border-top:
        1px solid #e8dfe3;

    display: flex;

    justify-content: center;

    gap: 30px;

    color: #8d8388;

    font-size: 8px;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.cv-back-top {
    position: fixed;

    right: 20px;
    bottom: 20px;

    width: 35px;
    height: 35px;

    border: 0;

    border-radius: 50%;

    background: var(--pink);

    color: #fff;

    display: none;

    align-items: center;

    justify-content: center;

    z-index: 999;

    box-shadow:
        0 7px 20px
        rgba(239,111,145,.25);
}

.cv-back-top.show {
    display: flex;
}


/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 1199px) {

    .cv-hero-content {
        padding-left: 35px;
    }

    .cv-hero-content h1 {
        font-size: 45px;
    }

    .cv-hero-content h1 em {
        font-size: 50px;
    }

    .cv-hero-pink-circle {
        right: 25px;
    }

    .cv-category-image {
        width: 130px;
        height: 130px;
    }

    .cv-category-row {
        --bs-gutter-x: 15px;
    }

}


/* =========================================================
   RESPONSIVE MOBILE MENU
========================================================= */

@media (max-width: 991px) {

    .cv-navbar {
        min-height: 68px;
    }

    .cv-menu {
        padding-top: 15px;
    }

    .cv-menu .nav-link {
        padding: 10px 8px;
    }

    .cv-menu .nav-link.active::after {
        display: none;
    }

    .cv-nav-actions {
        padding:
            12px 0 15px;

        justify-content: center;

        border-top:
            1px solid #f2e8eb;

        margin-top: 10px;
    }


    /* HERO */

    .cv-hero,
    .cv-hero-row {
        min-height: auto;
    }

    .cv-hero {
        padding-top: 45px;
    }

    .cv-hero-content {
        padding:
            0 25px 35px;

        text-align: center;
    }

    .cv-hero-content h1 {
        font-size: 45px;
    }

    .cv-hero-content h1 em {
        font-size: 49px;
    }

    .cv-hero-buttons {
        justify-content: center;
    }

    .cv-hero-visual {
        height: 390px;
    }

    .cv-hero-model {
        height: 390px;
    }

    .cv-hero-pink-circle {
        width: 380px;
        height: 380px;
        right: 50%;
        transform: translateX(50%);
    }

    .cv-hero-heart {
        left: 13%;
    }


    /* CATEGORY */

    .cv-category-image {
        width: 140px;
        height: 140px;
    }


    /* BENEFITS */

    .cv-benefit {
        margin-bottom: 15px;

        border-right: 0;
    }


    /* NEWSLETTER */

    .cv-newsletter {
        padding:
            15px 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cv-topbar {
        height: auto;

        min-height: 28px;
    }

    .cv-topbar-inner {
        height: auto;

        min-height: 28px;

        padding:
            5px 10px;

        font-size: 8px;

        gap: 5px;
    }


    .cv-logo {
        font-size: 25px;
    }

    .cv-logo small {
        font-size: 7px;
    }


    /* HERO */

    .cv-hero {
        padding-top: 35px;
    }

    .cv-hero-content {
        padding:
            0 15px 25px;
    }

    .cv-hero-content h1 {
        font-size: 40px;
    }

    .cv-hero-content h1 em {
        font-size: 43px;
    }

    .cv-hero-content p {
        font-size: 11px;
    }

    .cv-hero-visual {
        height: 340px;
    }

    .cv-hero-model {
        width: 90%;
        height: 340px;
    }

    .cv-hero-pink-circle {
        width: 310px;
        height: 310px;
        top: -30px;
    }

    .cv-hero-arrow {
        width: 31px;
        height: 31px;
    }

    .cv-hero-prev {
        left: 8px;
    }

    .cv-hero-next {
        right: 8px;
    }

    .flower-left,
    .flower-right {
        display: none;
    }


    /* CATEGORY */

    .cv-category-section {
        padding-top: 20px;
    }

    .cv-category-image {
        width: 115px;
        height: 115px;
    }

    .cv-category h3 {
        font-size: 10px;
    }

    .cv-category-btn {
        height: 22px;
        padding: 0 9px;
        font-size: 7px;
    }


    /* BANNERS */

    .cv-collection-card {
        min-height: 145px;
    }

    .cv-collection-content {
        padding:
            20px 0 15px 17px;
    }

    .cv-collection-content h2 {
        font-size: 16px;
    }

    .cv-collection-content h3 {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .cv-collection-content p {
        font-size: 7px;
        margin-bottom: 12px;
    }

    .cv-collection-content a {
        font-size: 7px;
    }


    /* BENEFITS */

    .cv-benefits {
        margin-left: 10px;
        margin-right: 10px;
    }

    .cv-benefit {
        justify-content: flex-start;

        padding-left: 15px;
    }

    .cv-benefit-icon {
        width: 29px;
        height: 29px;
        font-size: 12px;
    }

    .cv-benefit strong {
        font-size: 8px;
    }

    .cv-benefit span {
        font-size: 7px;
    }


    /* PRODUCTS */

    .cv-products-section {
        padding-left: 8px;
        padding-right: 8px;
    }

    .cv-product-image {
        height: 190px;
    }

    .cv-product-info h4 {
        font-size: 8px;
    }

    .cv-price strong {
        font-size: 10px;
    }


    /* NEWSLETTER */

    .cv-newsletter {
        flex-wrap: wrap;

        padding:
            15px;

        gap: 10px;
    }

    .cv-newsletter-icon {
        width: 43px;
        height: 43px;

        font-size: 18px;
    }

    .cv-newsletter-text {
        min-width: 0;

        flex: 1;
    }

    .cv-newsletter-text h3 {
        font-size: 10px;
    }

    .cv-newsletter-text p {
        font-size: 7px;
    }

    .cv-newsletter-form {
        width: 100%;

        flex-basis: 100%;

        margin-top: 5px;
    }

    .cv-newsletter-heart {
        display: none;
    }


    /* FOOTER */

    .cv-footer {
        padding-top: 30px;
    }

    .cv-footer-bottom {
        flex-direction: column;

        text-align: center;

        gap: 5px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .cv-category-image {
        width: 100px;
        height: 100px;
    }

    .cv-product-image {
        height: 170px;
    }

    .cv-hero-content h1 {
        font-size: 35px;
    }

    .cv-hero-content h1 em {
        font-size: 38px;
    }

}