* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #222;
    background: #f7f7f7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #111;
}

a {
    font-family: 'Inter', sans-serif;
}

button {
    font-family: 'Inter', sans-serif;
}

input,
select,
textarea {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

p,
span,
label {
    font-family: 'Inter', sans-serif;
}

/* =========================================================
   HERO SECTION - CLEAN FINAL VERSION
========================================================= */

.hero-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0 0 35px;
    background: #f7f7f7;
    overflow: visible;
}

/* Don't disturb Bootstrap carousel functionality */
#homeHeroSlider {
    width: 100%;
    margin: 0;
    padding: 0;
}


/* =========================================================
   HERO BANNER WRAPPER
========================================================= */

.hero-banner-wrapper {
    width: 88%;
    max-width: 1350px;
    height: 520px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 36% 64%;
    align-items: stretch;

    background: #f7f7f7;
    overflow: hidden;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.banner-content-overlay {
    position: relative;

    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    padding: 35px 35px 110px 45px;

    text-align: left;
    color: #111;

    z-index: 2;
}

.banner-content-overlay h1 {
    margin: 0 0 14px;

    font-size: 48px;
    font-weight: 800;
    line-height: 1.08;

    color: #111;
}

.banner-content-overlay p {
    margin: 0 0 8px;

    font-size: 20px;
    line-height: 1.4;

    color: #333;
}

.banner-content-overlay .banner-sub {
    max-width: 470px;

    margin: 0 0 22px;

    font-size: 15px;
    line-height: 1.5;

    color: #666;
}


/* =========================================================
   SHOP NOW
========================================================= */

.btn-shop-now {
    padding: 11px 36px;

    border: none;
    border-radius: 30px;

    background: #ff9900;
    color: #fff;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
    white-space: nowrap;

    transition: 0.3s ease;
}

.btn-shop-now:hover {
    background: #e68a00;
    transform: translateY(-2px);
}


/* =========================================================
   RIGHT IMAGE
========================================================= */

.hero-image-container {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.hero-banner-image {
    display: block;

    width: 100%;
    height: 100%;

    margin: 0;

    object-fit: contain;
    object-position: center;
}


/* =========================================================
   CAROUSEL ARROWS
========================================================= */

#homeHeroSlider .carousel-control-prev,
#homeHeroSlider .carousel-control-next {
    width: 46px;
    height: 46px;

    top: 50%;
    bottom: auto;

    transform: translateY(-50%);

    background: rgba(0, 0, 0, 0.35);

    border-radius: 50%;

    opacity: 0.75;

    z-index: 10;
}

#homeHeroSlider .carousel-control-prev {
    left: 18px;
}

#homeHeroSlider .carousel-control-next {
    right: 18px;
}

#homeHeroSlider .carousel-control-prev:hover,
#homeHeroSlider .carousel-control-next:hover {
    opacity: 1;

    background: rgba(0, 0, 0, 0.6);
}

#homeHeroSlider .carousel-control-prev-icon,
#homeHeroSlider .carousel-control-next-icon {
    width: 18px;
    height: 18px;
}


/* =========================================================
   PRODUCT CARDS CONTAINER
========================================================= */

.hero-products-container {
    position: relative;

    width: 100%;

    z-index: 5;
}

.hero-product-boxes {
    position: relative;

    width: calc(100% - 80px);
    max-width: 1400px;

    margin: -95px auto 0;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   PRODUCT BOX
========================================================= */

.hero-box {
    min-width: 0;
    min-height: 390px;

    padding: 20px;

    display: flex;
    flex-direction: column;

    background: #fff;

    border-radius: 8px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);

    transition: 0.3s ease;
}

.hero-box:hover {
    transform: translateY(-5px);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.hero-box h5 {
    position: relative;

    margin: 0 0 18px;
    padding-bottom: 10px;

    font-size: 24px;
    font-weight: 700;
    line-height: 30px;

    color: #111;
}

.hero-box h5::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 40px;
    height: 3px;

    background: #ff6b6b;

    border-radius: 2px;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.hero-product-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px;

    flex: 1;
}

.hero-product-item {
    min-width: 0;
}

.hero-product-item a {
    color: #111;
    text-decoration: none;
}

.hero-product-item img {
    display: block;

    width: 100%;
    height: 110px;

    object-fit: contain;

    background: #fafafa;

    border-radius: 6px;

    transition: 0.3s ease;
}

.hero-product-item img:hover {
    transform: scale(1.04);
}

.hero-product-item span {
    display: -webkit-box;

    margin-top: 6px;

    overflow: hidden;

    font-size: 14px;
    line-height: 18px;
    font-weight: 500;

    color: #222;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    line-clamp: 2;
}


/* =========================================================
   CATEGORY
========================================================= */

.category-card {
    height: 120px;

    padding: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5f5f5;
    color: #111;

    text-decoration: none;
    text-align: center;

    font-weight: 600;

    border-radius: 6px;

    transition: 0.3s ease;
}

.category-card:hover {
    background: #ebebeb;
    transform: scale(1.02);
}

.hero-link {
    margin-top: 15px;

    color: #007185;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;
}

.hero-link:hover {
    color: #c7511f;
}

/* =========================================================
   LAPTOP
   1200px - 1399px
========================================================= */

@media (max-width: 1399px) {

    .hero-banner-wrapper {
        width: 90%;
        max-width: 1150px;
        height: 460px;

        margin: 0 auto;

        grid-template-columns: 38% 62%;
    }

    .banner-content-overlay {
        padding: 30px 25px 80px 35px;
    }

    .banner-content-overlay h1 {
        font-size: 40px;
    }

    .banner-content-overlay p {
        font-size: 18px;
    }

    .hero-product-boxes {
        width: calc(100% - 60px);

        margin: -75px auto 0;

        gap: 16px;
    }

    .hero-box {
        min-height: 350px;
    }

    .hero-box h5 {
        font-size: 21px;
    }
}


/* =========================================================
   SMALL LAPTOP / TABLET LANDSCAPE
   992px - 1199px
========================================================= */

@media (max-width: 1199px) {

    .hero-banner-wrapper {
        width: 92%;
        max-width: 1000px;
        height: 410px;

        margin: 0 auto;

        grid-template-columns: 40% 60%;
    }

    .banner-content-overlay {
        padding: 25px 20px 55px 25px;
    }

    .banner-content-overlay h1 {
        font-size: 34px;
    }

    .banner-content-overlay p {
        font-size: 16px;
    }

    .banner-content-overlay .banner-sub {
        font-size: 13px;
    }

    .btn-shop-now {
        padding: 9px 27px;
        font-size: 13px;
    }

    .hero-product-boxes {
        width: calc(100% - 40px);

        margin: -50px auto 0;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 16px;
    }

    .hero-box {
        min-height: 320px;
    }
}


/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .hero-section {
        padding-bottom: 25px;
        overflow: hidden;
    }

    .hero-banner-wrapper {
        width: 92%;
        max-width: 850px;
        height: 300px;

        margin: 0 auto;

        display: grid;
        grid-template-columns: 40% 60%;

        align-items: stretch;

        overflow: hidden;
    }


    /* LEFT CONTENT */

    .banner-content-overlay {
        width: 100%;

        padding: 20px 18px 48px 28px;

        display: flex;
        flex-direction: column;

        justify-content: center;
        align-items: flex-start;

        text-align: left;
    }

    .banner-content-overlay h1 {
        margin: 0 0 8px;

        font-size: 27px;
        line-height: 1.05;
    }

    .banner-content-overlay p {
        margin: 0 0 5px;

        font-size: 13px;
        line-height: 1.3;
    }

    .banner-content-overlay .banner-sub {
        width: 100%;
        max-width: 260px;

        margin: 0 0 13px;

        font-size: 10px;
        line-height: 1.35;
    }

    .btn-shop-now {
        padding: 7px 20px;

        font-size: 11px;
    }


    /* RIGHT IMAGE */

    .hero-image-container {
        width: 100%;
        height: 100%;

        display: flex;

        align-items: center;
        justify-content: center;

        overflow: hidden;
    }

    .hero-banner-image {
        display: block;

        width: 100%;
        height: 100%;

        margin: 0;

        object-fit: contain;
        object-position: center;
    }


    /* AMAZON STYLE CARD OVERLAP */

    .hero-product-boxes {
        position: relative;

        width: calc(100% - 24px);

        margin: -55px auto 0;

        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 12px;

        z-index: 5;
    }


    /* CARDS */

    .hero-box {
        min-width: 0;
        min-height: 300px;

        padding: 16px;
    }

    .hero-box h5 {
        margin-bottom: 14px;

        font-size: 19px;
        line-height: 24px;
    }

    .hero-product-item img {
        height: 95px;
    }

    .category-card {
        height: 95px;
    }


    /* ARROWS */

    #homeHeroSlider .carousel-control-prev,
    #homeHeroSlider .carousel-control-next {
        width: 36px;
        height: 36px;

        top: 50%;
    }

    #homeHeroSlider .carousel-control-prev {
        left: 6px;
    }

    #homeHeroSlider .carousel-control-next {
        right: 6px;
    }
}


/* =========================================================
   MOBILE
   481px - 767px
========================================================= */

@media (min-width: 481px) and (max-width: 767px) {

    .hero-section {
        margin: 0 !important;

        padding-top: 0 !important;
        padding-bottom: 20px !important;

        overflow: hidden;
    }

    #homeHeroSlider {
        width: 100%;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* HERO */

    .hero-banner-wrapper {
        width: 100%;
        height: 235px;

        margin: 0 auto;

        display: grid;

        grid-template-columns: 41% 59%;

        align-items: stretch;

        overflow: hidden;
    }


    /* LEFT CONTENT */

    .banner-content-overlay {
        width: 100%;

        padding: 10px 7px 35px 14px;

        display: flex;
        flex-direction: column;

        justify-content: center;
        align-items: flex-start;

        text-align: left;
    }

    .banner-content-overlay h1 {
        margin: 0 0 6px;

        font-size: 20px;
        line-height: 1.05;

        font-weight: 800;
    }

    .banner-content-overlay p {
        margin: 0 0 4px;

        font-size: 10px;
        line-height: 1.25;
    }

    .banner-content-overlay .banner-sub {
        width: 100%;
        max-width: 170px;

        margin: 0 0 9px;

        font-size: 8px;
        line-height: 1.3;
    }

    .btn-shop-now {
        padding: 6px 15px;

        font-size: 9px;

        border-radius: 20px;
    }


    /* RIGHT IMAGE */

    .hero-image-container {
        width: 100%;
        height: 100%;

        display: flex;

        align-items: center;
        justify-content: center;

        overflow: hidden;
    }

    .hero-banner-image {
        display: block;

        width: 100%;
        height: 100%;

        margin: 0;

        object-fit: contain;
        object-position: center;
    }


    /* AMAZON STYLE CARD OVERLAP */

    .hero-product-boxes {
        position: relative;

        width: calc(100% - 12px);

        margin: -38px auto 0;

        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 8px;

        z-index: 5;
    }


    /* CARDS */

    .hero-box {
        min-width: 0;
        min-height: auto;

        padding: 11px;
    }

    .hero-box h5 {
        margin-bottom: 10px;

        font-size: 16px;
        line-height: 20px;
    }

    .hero-product-grid {
        gap: 7px;
    }

    .hero-product-item img {
        height: 72px;
    }

    .hero-product-item span {
        font-size: 10px;
        line-height: 13px;
    }

    .category-card {
        height: 68px;

        font-size: 10px;
    }

    .hero-link {
        margin-top: 9px;

        font-size: 10px;
    }


    /* ARROWS */

    #homeHeroSlider .carousel-control-prev,
    #homeHeroSlider .carousel-control-next {
        width: 28px;
        height: 28px;

        top: 50%;

        z-index: 10;
    }

    #homeHeroSlider .carousel-control-prev {
        left: 3px;
    }

    #homeHeroSlider .carousel-control-next {
        right: 3px;
    }

    #homeHeroSlider .carousel-control-prev-icon,
    #homeHeroSlider .carousel-control-next-icon {
        width: 12px;
        height: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
   381px - 480px
========================================================= */

@media (min-width: 381px) and (max-width: 480px) {

    .hero-section {
        margin: 0 !important;

        padding-top: 0 !important;
        padding-bottom: 18px !important;

        overflow: hidden;
    }

    #homeHeroSlider {
        width: 100%;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* HERO */

    .hero-banner-wrapper {
        width: 100%;
        height: 215px;

        margin: 0;

        display: grid;

        grid-template-columns: 42% 58%;

        align-items: stretch;

        overflow: hidden;
    }


    /* LEFT CONTENT */

    .banner-content-overlay {
        width: 100%;

        padding: 8px 5px 30px 11px;

        display: flex;
        flex-direction: column;

        justify-content: center;
        align-items: flex-start;

        text-align: left;
    }

    .banner-content-overlay h1 {
        margin: 0 0 5px;

        font-size: 17px;
        line-height: 1.05;

        font-weight: 800;
    }

    .banner-content-overlay p {
        margin: 0 0 3px;

        font-size: 9px;
        line-height: 1.2;
    }

    .banner-content-overlay .banner-sub {
        width: 100%;
        max-width: 145px;

        margin: 0 0 7px;

        font-size: 7px;
        line-height: 1.25;
    }

    .btn-shop-now {
        padding: 5px 12px;

        font-size: 8px;

        border-radius: 18px;
    }


    /* RIGHT IMAGE */

    .hero-image-container {
        width: 100%;
        height: 100%;

        display: flex;

        align-items: center;
        justify-content: center;

        overflow: hidden;
    }

    .hero-banner-image {
        display: block;

        width: 100%;
        height: 100%;

        margin: 0;

        object-fit: contain;
        object-position: center;
    }


    /* AMAZON STYLE OVERLAP */

    .hero-product-boxes {
        position: relative;

        width: calc(100% - 10px);

        margin: -35px auto 0;

        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 7px;

        z-index: 5;
    }


    /* CARDS */

    .hero-box {
        min-width: 0;
        min-height: auto;

        padding: 9px;
    }

    .hero-box h5 {
        margin-bottom: 10px;

        font-size: 14px;
        line-height: 18px;
    }

    .hero-product-grid {
        gap: 7px;
    }

    .hero-product-item img {
        height: 60px;
    }

    .hero-product-item span {
        font-size: 9px;
        line-height: 12px;
    }

    .category-card {
        height: 58px;

        font-size: 9px;
    }

    .hero-link {
        margin-top: 8px;

        font-size: 9px;
    }


    /* ARROWS */

    #homeHeroSlider .carousel-control-prev,
    #homeHeroSlider .carousel-control-next {
        width: 26px;
        height: 26px;

        top: 50%;
    }

    #homeHeroSlider .carousel-control-prev {
        left: 2px;
    }

    #homeHeroSlider .carousel-control-next {
        right: 2px;
    }

    #homeHeroSlider .carousel-control-prev-icon,
    #homeHeroSlider .carousel-control-next-icon {
        width: 11px;
        height: 11px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   <= 380px
   Samsung Galaxy 360px
========================================================= */

@media (max-width: 380px) {

    .hero-section {
        margin: 0 !important;

        padding-top: 0 !important;
        padding-bottom: 18px !important;

        overflow: hidden;
    }

    #homeHeroSlider {
        width: 100%;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* =====================================================
       HERO
    ===================================================== */

    .hero-banner-wrapper {
        width: 100%;
        height: 205px;

        margin: 0;

        display: grid;

        /* Better text/image balance */
        grid-template-columns: 42% 58%;

        align-items: stretch;

        overflow: hidden;
    }


    /* =====================================================
       LEFT CONTENT
    ===================================================== */

    .banner-content-overlay {
        width: 100%;

        padding: 8px 4px 32px 10px;

        display: flex;
        flex-direction: column;

        justify-content: center;
        align-items: flex-start;

        text-align: left;
    }

    .banner-content-overlay h1 {
        margin: 0 0 5px;

        font-size: 16px;
        line-height: 1.05;

        font-weight: 800;
    }

    .banner-content-overlay p {
        margin: 0 0 3px;

        font-size: 8.5px;
        line-height: 1.25;
    }

    .banner-content-overlay .banner-sub {
        width: 100%;
        max-width: 140px;

        margin: 0 0 7px;

        font-size: 7px;
        line-height: 1.25;
    }

    .btn-shop-now {
        padding: 5px 12px;

        font-size: 8px;
        line-height: 1.2;

        border-radius: 15px;
    }


    /* =====================================================
       RIGHT IMAGE
    ===================================================== */

    .hero-image-container {
        width: 100%;
        height: 100%;

        display: flex;

        align-items: center;
        justify-content: center;

        overflow: hidden;
    }

    .hero-banner-image {
        display: block;

        width: 100%;
        height: 100%;

        margin: 0;

        object-fit: contain;
        object-position: center;
    }

    .hero-product-boxes {
        position: relative;

        width: calc(100% - 10px);
        margin: -38px auto 0;

        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 6px;

        z-index: 5;
    }

    .hero-box {
        min-width: 0;
        min-height: auto;

        padding: 8px;

        border-radius: 7px;
    }

    .hero-box h5 {
        margin: 0 0 9px;

        padding-bottom: 7px;

        font-size: 13px;
        line-height: 17px;
    }

    .hero-box h5::after {
        width: 38px;
        height: 2px;
    }

    .hero-product-grid {
        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 6px;
    }

    .hero-product-item {
        min-width: 0;
    }

    .hero-product-item img {
        display: block;

        width: 100%;
        height: 54px;

        object-fit: contain;
    }

    .hero-product-item span {
        margin-top: 4px;

        font-size: 8.5px;
        line-height: 11px;
    }

    .category-card {
        height: 54px;

        font-size: 9px;
    }

    .hero-link {
        margin-top: 8px;

        font-size: 9px;
    }
    #homeHeroSlider .carousel-control-prev,
    #homeHeroSlider .carousel-control-next {
        width: 26px;
        height: 26px;

        top: 50%;

        z-index: 10;
    }

    #homeHeroSlider .carousel-control-prev {
        left: 2px;
    }

    #homeHeroSlider .carousel-control-next {
        right: 2px;
    }

    #homeHeroSlider .carousel-control-prev-icon,
    #homeHeroSlider .carousel-control-next-icon {
        width: 11px;
        height: 11px;
    }
}


.hero-link:focus-visible,
.category-card:focus-visible {
    outline: 2px solid #ff6b6b;
    outline-offset: 2px;
}


@media (prefers-reduced-motion: reduce) {

    .hero-section *,
    .hero-section *::before,
    .hero-section *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* =========================================================
   FULL WIDTH PREMIUM GRADIENTS
========================================================= */

#homeHeroSlider .banner-ugreen {
    background: linear-gradient(
        90deg,
        #f7faf8 0%,
        #edf4ef 50%,
        #e3eee7 100%
    );
}

#homeHeroSlider .banner-70mai {
    background: linear-gradient(
        90deg,
        #fafbfc 0%,
        #eef1f5 50%,
        #e4e9ef 100%
    );
}

#homeHeroSlider .banner-joyroom {
    background: linear-gradient(
        90deg,
        #f7fbff 0%,
        #eaf3fb 50%,
        #dcebf8 100%
    );
}

#homeHeroSlider .banner-toocki {
    background: linear-gradient(
        90deg,
        #fcfaf7 0%,
        #f5eee6 50%,
        #eadfd3 100%
    );
}


/* IMPORTANT */
#homeHeroSlider .hero-banner-wrapper {
    background: transparent !important;
}


/* =========================================================
   COOKIE CONSENT
========================================================= */

.cookie-consent {
    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 99999;

    padding: 16px 24px;

    background: #ffffff;

    border-top: 1px solid #dfe3e8;

    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);

    display: none;
}


/* Show banner */

.cookie-consent.show {
    display: block;
}


/* Inner layout */

.cookie-consent-inner {
    width: 100%;
    max-width: 1320px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   TEXT
========================================================= */

.cookie-consent-text {
    max-width: 800px;
}

.cookie-consent-text h3 {
    margin: 0 0 5px;

    color: #111827;

    font-size: 16px;
    font-weight: 700;
}

.cookie-consent-text p {
    margin: 0;

    color: #4b5563;

    font-size: 13px;
    line-height: 1.6;
}

.cookie-consent-text a {
    color: #0866e8;

    font-weight: 600;

    text-decoration: none;
}

.cookie-consent-text a:hover {
    text-decoration: underline;
}


/* =========================================================
   BUTTONS
========================================================= */

.cookie-consent-actions {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}

.cookie-btn {
    min-height: 42px;

    padding: 10px 18px;

    border-radius: 5px;

    font-family: inherit;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


/* Reject */

.cookie-btn-reject {
    background: #ffffff;

    color: #1f2937;

    border: 1px solid #cfd5dd;
}

.cookie-btn-reject:hover {
    background: #f5f6f8;

    border-color: #aeb6c1;
}


/* Accept */

.cookie-btn-accept {
    background: #0866e8;

    color: #ffffff;

    border: 1px solid #0866e8;
}

.cookie-btn-accept:hover {
    background: #0758c9;

    border-color: #0758c9;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .cookie-consent-inner {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }

    .cookie-consent-actions {
        width: 100%;

        justify-content: flex-end;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

    .cookie-consent {
        padding: 18px 15px;
    }

    .cookie-consent-text h3 {
        font-size: 15px;
    }

    .cookie-consent-text p {
        font-size: 12.5px;
        line-height: 1.55;
    }

    .cookie-consent-actions {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }

    .cookie-btn {
        width: 100%;

        padding: 10px 12px;

        font-size: 12px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .cookie-consent-actions {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   SHOP BY CATEGORY
========================================================= */

.category-section {
    width: 100%;
    padding: 50px 0 60px;
    background: #f7f7f7;
}


/* =========================================================
   CONTAINER
========================================================= */

.category-section .container {
    width: 100%;
    max-width: 1400px !important;

    margin: 0 auto;

    padding-left: 24px !important;
    padding-right: 24px !important;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.category-section .section-header {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;

    gap: 15px;
}

.category-section .section-header h2 {
    margin: 0;

    font-size: 30px;
    line-height: 1.2;

    font-weight: 700;

    color: #0d4b57;
}

.category-section .section-header a {
    display: inline-flex;
    align-items: center;

    text-decoration: none;

    color: #007185;

    font-size: 15px;
    font-weight: 600;

    white-space: nowrap;

    transition: color 0.25s ease;
}

.category-section .section-header a:hover {
    color: #c7511f;
}

.category-section .section-header a i {
    font-size: 12px;
}


/* =========================================================
   CATEGORY GRID
========================================================= */

.category-section .category-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   CATEGORY CARD
========================================================= */

.category-section .category-card {
    position: relative;

    min-width: 0;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border-radius: 10px;

    overflow: hidden;

    text-decoration: none;

    color: #111;

    border: 1px solid #eeeeee;

    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.category-section .category-card:hover {
    transform: translateY(-5px);

    border-color: #dddddd;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);

    color: #111;

    text-decoration: none;
}


/* =========================================================
   CATEGORY IMAGE
========================================================= */

.category-section .category-card-image {
    width: 100%;

    height: 210px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f8f8f8;

    overflow: hidden;
}

.category-section .category-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 12px;

    transition: transform 0.3s ease;
}

.category-section .category-card:hover
.category-card-image img {
    transform: scale(1.05);
}


/* =========================================================
   CATEGORY CONTENT
========================================================= */

.category-section .category-card-content {
    width: 100%;

    padding: 15px 16px 17px;

    display: flex;
    flex-direction: column;

    gap: 7px;
}

.category-section .category-card-content h3 {
    margin: 0;

    font-size: 18px;
    line-height: 1.3;

    font-weight: 700;

    color: #111;

    overflow: hidden;

    display: -webkit-box;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    line-clamp: 2;
}


/* =========================================================
   SHOP NOW
========================================================= */

.category-section .category-card-link {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    gap: 6px;

    color: #007185;

    font-size: 14px;
    font-weight: 600;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.category-section .category-card:hover
.category-card-link {
    color: #c7511f;

    gap: 9px;
}

.category-section .category-card-link i {
    font-size: 11px;
}


/* =========================================================
   NO CATEGORIES
========================================================= */

.category-section .no-categories {
    width: 100%;

    padding: 30px;

    margin: 0;

    text-align: center;

    background: #ffffff;

    border-radius: 10px;

    color: #777;

    font-size: 15px;
}


/* =========================================================
   LARGE TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .category-section {
        padding: 45px 0 55px;
    }

    .category-section .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .category-section .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 18px;
    }

    .category-section .category-card-image {
        height: 190px;
    }

    .category-section .category-card-content h3 {
        font-size: 17px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .category-section {
        padding: 40px 0 50px;
    }

    .category-section .container {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .category-section .section-header {
        margin-bottom: 20px;
    }

    .category-section .section-header h2 {
        font-size: 27px;
    }

    .category-section .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 15px;
    }

    .category-section .category-card-image {
        height: 165px;
    }

    .category-section .category-card-image img {
        padding: 10px;
    }

    .category-section .category-card-content {
        padding: 13px 14px 15px;
    }

    .category-section .category-card-content h3 {
        font-size: 16px;
    }

    .category-section .category-card-link {
        font-size: 13px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .category-section {
        padding: 35px 0 45px;
    }

    .category-section .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .category-section .section-header {
        margin-bottom: 18px;
    }

    .category-section .section-header h2 {
        font-size: 24px;
    }

    .category-section .section-header a {
        font-size: 13px;
    }

    .category-section .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 13px;
    }

    .category-section .category-card-image {
        height: 150px;
    }

    .category-section .category-card-image img {
        padding: 8px;
    }

    .category-section .category-card-content {
        padding: 11px 12px 13px;

        gap: 5px;
    }

    .category-section .category-card-content h3 {
        font-size: 15px;
        line-height: 1.25;
    }

    .category-section .category-card-link {
        font-size: 12px;
    }

    .category-section .category-card-link i {
        font-size: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .category-section {
        padding: 30px 0 40px;
    }

    .category-section .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .category-section .section-header {
        margin-bottom: 15px;
    }

    .category-section .section-header h2 {
        font-size: 21px;
    }

    .category-section .section-header a {
        font-size: 12px;
    }

    .category-section .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .category-section .category-card {
        border-radius: 8px;
    }

    .category-section .category-card-image {
        height: 125px;
    }

    .category-section .category-card-image img {
        padding: 6px;
    }

    .category-section .category-card-content {
        padding: 9px 10px 11px;
    }

    .category-section .category-card-content h3 {
        font-size: 14px;
        line-height: 18px;
    }

    .category-section .category-card-link {
        font-size: 11px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .category-section {
        padding: 25px 0 35px;
    }

    .category-section .container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .category-section .section-header h2 {
        font-size: 19px;
    }

    .category-section .section-header a {
        font-size: 11px;
    }

    .category-section .category-grid {
        gap: 8px;
    }

    .category-section .category-card-image {
        height: 110px;
    }

    .category-section .category-card-image img {
        padding: 5px;
    }

    .category-section .category-card-content {
        padding: 8px;
    }

    .category-section .category-card-content h3 {
        font-size: 13px;
        line-height: 17px;
    }

    .category-section .category-card-link {
        font-size: 10px;
    }
}

/* =========================================================
   FINAL FIX - SHOP BY CATEGORY IMAGES
========================================================= */

.category-section .category-card {
    height: auto !important;
    min-height: 0 !important;

    padding: 0 !important;

    display: flex !important;
    flex-direction: column !important;

    overflow: hidden !important;
}

.category-section .category-card-image {
    width: 100% !important;
    height: 210px !important;

    min-height: 210px !important;

    flex: 0 0 210px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #f8f8f8 !important;

    overflow: hidden !important;
}

.category-section .category-card-image img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    max-width: 100% !important;
    max-height: 100% !important;

    object-fit: contain !important;

    padding: 12px !important;

    opacity: 1 !important;
    visibility: visible !important;
}

.category-section .category-card-content {
    flex: 0 0 auto !important;

    width: 100% !important;

    padding: 15px 16px 17px !important;

    background: #fff !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .category-section .category-card-image {
        height: 190px !important;
        min-height: 190px !important;
        flex-basis: 190px !important;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .category-section .category-card-image {
        height: 165px !important;
        min-height: 165px !important;
        flex-basis: 165px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .category-section .category-card-image {
        height: 150px !important;
        min-height: 150px !important;
        flex-basis: 150px !important;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .category-section .category-card-image {
        height: 125px !important;
        min-height: 125px !important;
        flex-basis: 125px !important;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .category-section .category-card-image {
        height: 110px !important;
        min-height: 110px !important;
        flex-basis: 110px !important;
    }

}