@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* -------------------------------
   HEADER BASE
--------------------------------*/
#header {
    box-shadow: none;
    -webkit-box-shadow: none;
}

#_desktop_logo {
    padding-left:0;
}
@media (min-width: 1440px) {
    .container {
        width: 1440px !important;
        max-width: 1440px !important;
    }
}

.header-nav {
    background: #002121;
    padding: 0.5rem 1.25rem;
    display: block;
}

.header-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.header-top .container {
    width: 100% !important;
}

.header-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.header-icons .icon-item a {
    display: flex;
    align-items: center;
    font-size: 18px;
    text-decoration: none;
}

.header-icons svg {
    stroke: #fff;
    fill: #fff;
    width: 18.981px;
    height: 18.981px;
}

#search-toggle {
    cursor: pointer;
    display: flex;
}

.userIcon {
    display: flex;
}

.contactLabel {
    color: #FFF !important;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.header-cart {
    position: relative;
}

.cart-count {
    position: relative;
    background: #002121;
    border: 1px solid #FFF;
    color: #00ff9d;
    font-size: 11px;
    font-weight: bold;
    border-radius: 50%;
    width: 20.79px;
    height: 20.8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-cart .cart-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-cart .cart-count {
    font-size: 14px;
    font-weight: 600;
}

#search-form {
    display: none;
    position: absolute;
    top: 50px;
    right: 20px;
    background: #002121;
    padding: 10px;
    border-radius: 6px;
    z-index: 1000;
}

#search-form input[type="text"] {
    background: #fff;
    border: 1px solid #ccc;
    padding: 5px 10px;
    width: 200px;
    border-radius: 4px;
}

/* -------------------------------
   DESKTOP MENU
--------------------------------*/
.header-categories {
    width: 100%;
}

.header-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.header-menu li {
    white-space: nowrap;
}

.header-menu li a {
    text-decoration: none;
    color: #000 !important;
    font-family: "Plus Jakarta Sans", arial;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
}

.header-menu li a:hover {
    color: #34C759 !important;
}

.dropdownStyle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdownStyle svg {
    fill: #002121;
    width: 16px;
    height: 8px;
}

.separator {
    width: 1px;
    height: 35px;
    flex-shrink: 0;
    opacity: 0.4;
    background: #1C1C1C;
}

/* -------------------------------
   MOBILE MENU (sidebar)
--------------------------------*/
#mobile_top_menu_wrapper {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
}

#mobile_top_menu_wrapper .mobile-panel {
    width: 100%;
    height: 100%;
    background: #fff;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .3s ease;
    box-shadow: 0 0 40px rgba(0, 0, 0, .15);
    position: relative;
    padding: 16px 16px 24px 16px;
}

#mobile_top_menu_wrapper .mobile-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 28px;
    line-height: 1;
    background: transparent;
    border: 0;
    cursor: pointer;
}

#mobile_top_menu_wrapper.open {
    display: flex;
}

#mobile_top_menu_wrapper.open .mobile-panel {
    transform: translateX(0);
}

#_mobile_top_menu {
    background: #fff;
    padding: 10px;
}

#_mobile_top_menu .header-menu {
    list-style: none;
    padding: 0;
    margin: 48px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#_mobile_top_menu .header-menu>li>a {
    display: block;
    padding: 12px 8px;
    text-decoration: none;
    color: #002121;
    font-weight: 600;
}

/* Overlay */
#mobile_menu_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 1040;
}

#mobile_menu_overlay.visible {
    opacity: 1;
    visibility: visible;
}

body.no-scroll {
    overflow: hidden;
}

/* -------------------------------
   RESPONSIVE
--------------------------------*/
@media (max-width: 767.98px) {

    .header-categories,
    .header-nav {
        display: none !important;
    }

    #mobile_top_menu_wrapper {
        display: none;
    }
}

@media (min-width: 768px) {
    #menu-toggle {
        display: none !important;
    }

    #mobile_top_menu_wrapper,
    #mobile_menu_overlay {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

@media (max-width: 1199px) {
    .header-categories .header-menu {
        flex-direction: column;
    }

    .header-categories .header-menu>li {
        width: 100%;
    }
}

#_mobile_top_menu li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}


/* SUBMENU BASE */
.header-menu .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
    z-index: 999;
}

.header-menu .submenu li a {
    display: block;
    padding: 8px 12px;
    color: #002121;
    font-weight: 400;
    text-decoration: none;
}

.header-menu .submenu li a:hover {
    background: #f5f5f5;
    color: #34C759;
}

/* DESKTOP → hover abre */
@media (min-width: 768px) {
    .header-menu>.has-submenu {
        position: relative;
    }

    .header-menu>.has-submenu:hover>.submenu {
        display: block;
    }
}

/* MOBILE → clique abre/fecha submenu */
@media (max-width: 767px) {
    .header-menu {
        flex-direction: column;
    }

    .header-menu .submenu {
        position: static;
        box-shadow: none;
        padding-left: 12px;
    }

    .header-menu .has-submenu.open>.submenu {
        display: block;
    }
}

@media (max-width: 1199px) {
    .header-menu li ul {
        display: none;
        flex-direction: column;
        padding-left: 15px;
        margin-top: 5px;
    }

    ul.submenu {
        display: none;
    }

    ul.submenu.open {
        display: block;
    }
}

.page-index #wrapper {
    background-color: #FFF !important;
}

.page-header {
    text-align: center;
}

.page-cms {}

.page-cms-1 {
    padding: 60px !important;
    font-family: Plus Jakarta Sans;
}

.page-cms-1,
.page-cms-5 {
    h1 {
        color: #46e144 !important;
        font-family: Plus Jakarta Sans;
        font-weight: 700;
        font-size: 26px;
        line-height: 38px;
        letter-spacing: 0.1px;
    }

    h2 {
        font-family: Plus Jakarta Sans;
        font-weight: 600;
        font-size: 20px;
        line-height: 30px;
    }

    p {
        font-family: Plus Jakarta Sans;
        font-weight: 400;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 30px;
        letter-spacing: 0.1px;
    }
}

/* Carousel */
.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    bottom: 35px;
}

.carousel-indicators span {
    width: 40px !important;
    height: 4px !important;
    background-color: #ccc;
    border-radius: 2px;
    margin: 0 4px !important;
    cursor: pointer;
}

.carousel .carousel-item {
    text-align: center;
}

.carousel .carousel-item figure {
    position: relative;
}

.carousel .carousel-inner {
    height: auto;
    border-radius: 18px;
}

.carousel-indicators span.active {
    background-color: #00b140;
}

.carousel .carousel-indicators {
    display: flex !important;
}

.carousel-inner .display-1 {
    font-family: Plus Jakarta Sans;
    font-weight: 800 !important;
    font-size: 55px !important;
    line-height: 54px !important;
    vertical-align: bottom;
    color: #fff;
}

.caption-description p {
    font-family: Plus Jakarta Sans;
    font-weight: 400;
    font-size: 20px !important;
    line-height: 39px;
    vertical-align: bottom;
}

.carousel .carousel-item .caption {
    position: absolute;
    top: 100px;
    left: unset;
    max-width: 500px;
    color: #fff;
    text-align: left;
}

/* Banner Button */
.banner-btn {
    margin-top: 20px;
}

#header .header-top {
    padding: 1.25rem 1.25rem;
}

.header-nav .container {
    width: 100% !important;
}

.btn-comprar {
    display: inline-block;
    background: radial-gradient(45.91% 85.94% at 55.4% 14.06%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.032) 100%), radial-gradient(66.76% 121.06% at 22.73% 20.31%, rgba(226, 241, 45, 0.2) 18.63%, rgba(226, 241, 45, 0.186) 100%)
        /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
        , radial-gradient(92.56% 151.44% at 33.52% -15.63%, #E0E342 0%, rgba(35, 173, 140, 0.58) 85.15%)
        /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
        , radial-gradient(35.8% 316.2% at 82.39% 55.47%, #41FF48 0%, #00BCB1 100%)
        /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
        , #030303;
    box-shadow: -10px -20px 50px rgba(250, 255, 0, 0.2), -20px -20px 50px rgba(14, 14, 15, 0.5), 10px 20px 80px rgba(30, 233, 50, 0.3), inset 0px 0px 10px rgba(255, 255, 255, 0.6);
    border-radius: 56px;
    color: #fff;
    font-weight: bold;
    padding: 12px 30px;
    text-decoration: none;
}

.btn-comprar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
    color: #fff;
}

/* Banner Info Box */
.banner-info-box {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 40px;
    padding: 10px 20px;
    min-width: 260px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
}

.info-item p {
    font-family: Plus Jakarta Sans;
    margin: 0;
    line-height: 29px;
    font-weight: 800;
    color: #333;
    font-size: 17px;
    padding-left: 15px;
}

.info-item img {
    width: 60px !important;
    height: 60px !important;
}

.info-item .highlight {
    color: #00c853;
}

/* Voucher Steps */
.voucher-steps {
    background: #f8f9fa;
    padding: 60px 0px;
    text-align: center;
    border-radius: 12px;
    margin: 40px auto;
}

.voucher-steps .steps-subtitle {
    font-family: Plus Jakarta Sans;
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.voucher-steps .steps-title {
    font-family: Plus Jakarta Sans;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1b1b1b;
}

.voucher-steps .steps-title span {
    color: #2ecc71;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.step {
    max-width: 260px;
    margin: 0 auto;
}

.step-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.step-icon img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #0a4024;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #3edf3d;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.step h3 {
    font-family: Plus Jakarta Sans;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.step p {
    font-family: Plus Jakarta Sans;
    font-size: 18px;
    color: #555;
    line-height: 1.5;
}

/* Store Points */
.store-points {
    padding: 60px 0px;
    margin: 40px auto;
}

.store-points .subtitle {
    font-family: Plus Jakarta Sans;
    font-size: 18px;
    text-transform: uppercase;
    color: #777;
    font-weight: 400;
    margin-bottom: 12px;
}

.store-points h2 {
    font-family: Plus Jakarta Sans;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.store-points h2 span {
    color: #2ecc71;
}

.store-points p {
    font-family: Plus Jakarta Sans;
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.store-points .features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.store-points .features li {
    font-family: Plus Jakarta Sans;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.store-points .features li .icon-check {
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
}

.store-points .btn-green {
    font-family: Plus Jakarta Sans;
    display: inline-block;
    background: #C9F269;
    color: #002121;
    font-size: 20px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 15px;
    text-decoration: none;
    transition: background 0.3s;
}

.store-points .btn-green:hover {
    background: #27ae60;
}

.store-points .image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Voucher Benefits */
.voucher-benefits {
    background: #FAFAFA;
    border-radius: 12px;
    padding: 60px 0px;
    text-align: center;
}

.voucher-benefits .subtitle {
    font-family: Plus Jakarta Sans;
    font-size: 18px;
    color: #181818;
    margin-bottom: 10px;
}

.voucher-benefits .title {
    font-family: Plus Jakarta Sans;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #181818;
}

.voucher-benefits .title span {
    color: #2ecc71;
}

.voucher-benefits .intro {
    font-family: Plus Jakarta Sans;
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 22px;
    font-weight: 400;
}

.benefits-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.benefit {
    text-align: center;
}

.benefit-icon img {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
}

.benefit h3 {
    font-family: Plus Jakarta Sans;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.benefit h3 span {
    color: #2ecc71;
}

.voucher-benefits .note {
    font-family: Plus Jakarta Sans;
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    max-width: 720px;
    margin: 0 auto 25px;
    line-height: 22px;
}

.voucher-benefits .btn-green {
    display: inline-block;
    background: #C9F269;
    color: #002121;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.voucher-benefits .btn-green:hover {
    background: #C9F269;
}

.product-reference {
    font-family: Plus Jakarta Sans;
}

/* === Newsletter Banner === */
.newsletter-banner {
    background: #f4f6f5;
    border-radius: 12px;
    margin: 40px auto !important;
    padding: 48px 32px;
    max-width: 1440px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .10);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.newsletter-banner .nb-wrap {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: center;
}

.newsletter-banner .nb-left img {
    width: 100%;
    height: auto;
    display: block;
}

.newsletter-banner .nb-right h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
    color: #000;
}

.newsletter-banner .nb-right h2 span {
    color: #37E06A;
}

.nb-form input {
    width: 75%;
    padding: 16px 18px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.nb-form button {
    padding: 16px 24px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    background: #1F8F5B;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    transition: filter 0.2s;
}

.nb-form button:hover {
    filter: brightness(0.95);
}

.newsletter-banner .disclaimer {
    margin-top: 12px;
    font-size: 13px;
    color: #444;
}

.newsletter-banner .disclaimer a {
    text-decoration: none;
    font-weight: 600;
    color: #000;
}

/* Footer */
.footer-container {
    background: #002D2D;
    padding: 50px 0 10px;
}

.footer-container p strong {
    color: #fff !important;
    font-size: 16px;
    line-height: 200%;
}

.footer-address p {
    color: #7a8c8c;
    font-size: 16px;
    font-weight: 500;
    line-height: 200%;
}

.footer-logo {
    width: 100%;
    margin-bottom: 12px;
}

.site-footer {
    background-color: #002D29;
    color: #fff;
    font-size: 14px;
    padding: 40px 0 20px;
}

.footer-tagline {
    font-family: Plus Jakarta Sans;
    font-weight: 700;
    font-size: 24px;
    line-height: 160%;
    color: #fff !important;
}

.footer-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #00A84F;
    text-align: start;
}

.footer-title-map {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #46E144;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #fff !important;
    text-decoration: none;
}

.footer-links a:hover {
    color: #00A84F;
}

.footer-social {
    margin: 10px 0;
}

.footer-social a {
    display: inline-block;
    margin: 0 6px;
    color: #fff;
    font-size: 20px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #00A84F;
}

.award-img {
    max-width: 190px;
    margin-top: 20px;
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.footer-bottom {
    font-size: 13px;
    color: #bbb;
    display: flex;
    justify-content: space-between;
}

.footer-bottom-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.footer-bottom-links a {
    color: #bbb;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgb(30, 212, 90);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon i {
    font-size: 18px;
    color: rgb(0, 75, 24);
}

.text-center {
    text-align: center;
}

.products-section-title h2 {
    font-family: Plus Jakarta Sans;
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
}

.products-section-title h2 span {
    color: #5DE55B;
    font-family: Plus Jakarta Sans;
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
}

.products-section-title span {
    font-family: Plus Jakarta Sans;
    font-weight: 400;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 25.6px;
    text-align: center;

}

.custom-container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

#carousel .carousel-item img {
    display: block;
    width: 100%;
}

/* Hide default image on mobile */
@media (max-width: 767px) {
    #carousel .carousel-item img {
        display: none;
    }

    #carousel .carousel-item {
        background-size: cover;
        background-position: center;
        height: 715px;
    }

    #carousel .carousel-item:nth-child(1) {
        background-image: url('/themes/child_classic1/assets/img/mobile-banner1.png');
    }

    #carousel .carousel-item:nth-child(2) {
        background-image: url('/themes/child_classic1/assets/img/mobile-banner2.png');
    }

    #carousel .carousel-item:nth-child(3) {
        background-image: url('/themes/child_classic1/assets/img/mobile-banner3.png');
    }

    #carousel .carousel-item:nth-child(4) {
        background-image: url('/themes/child_classic1/assets/img/mobile-banner4.png');
    }

    #carousel .carousel-item:nth-child(5) {
        background-image: url('/themes/child_classic1/assets/img/mobile-banner5.png');
    }

    #carousel .carousel-item:nth-child(6) {
        background-image: url('/themes/child_classic1/assets/img/mobile-banner6.png');
    }

    #carousel .carousel-item:nth-child(7) {
        background-image: url('/themes/child_classic1/assets/img/mobile-banner7.png');
    }

    .carousel {
        padding-bottom: 0px;
    }

    .carousel .carousel-item figure {
        width: 100%;
    }
}

/* ========== Common Responsive ========== */
@media (max-width: 992px) {
    .giftcard-item {
        width: 50% !important;
        min-width: auto !important;
    }

    .steps-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .store-points .row {
        flex-direction: column;
        padding: 15px;
    }

    .store-points .content {
        margin-bottom: 30px;
        width: 100%
    }

    .benefits-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .nb-form input {
        width: 100%;
        margin-bottom: 10px;
    }

    .newsletter-banner .nb-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nb-form {
        flex-direction: column;
    }

    .nb-form button {
        width: 100%;
    }

    .store-points .features li {
        padding-left: 30px;
    }

    .banner-info-box {
        display: none
    }

    .carousel .carousel-inner {
        border-radius: 0px;
        margin-bottom: 0px;
    }

    .carousel .carousel-item .caption .display-1 {
        color: #fff !important;
        text-align: left;
        word-wrap: break-word;
        width: 80%;
    }

    .carousel .carousel-item .caption {
        position: absolute;
        bottom: 30px !important;
        left: 15px !important;
        max-width: none !important;
        color: #fff !important;
        margin: 0 !important;
    }

    .caption-description p {
        font-family: Plus Jakarta Sans;
        color: #fff !important;
        margin-bottom: 5px;
        width: 80%;
        text-align: left;
    }

    .benefits-wrapper {
        padding: 20px;
    }

    .banner-btn {
        margin-top: 95px;
    }
}

@media (max-width: 768px) {

    /*#carousel.carousel.slide {*/
    /*    width: 100%;*/
    /*    left: 7px;*/
    /*}*/
    .carousel-indicators {
        bottom: 4px;
    }

    .products-section-title h2 {
        font-size: 24px;
    }

    .products-section-title h2 span {
        font-size: 24px;
    }

    .products-section-title span {
        font-size: 10px;
    }

    .footer-tagline,
    .footer-address,
    .footer-col,
    .footer-title {
        text-align: center !important;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .voucher-steps .steps-title {
        font-size: 26px;
    }

    .steps-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step h3 {
        font-size: 18px;
    }

    .step p {
        font-size: 14px;
    }

    .store-points h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .store-points p,
    .store-points .features li {
        font-size: 15px;
    }

    .store-points .btn-green {
        font-size: 16px;
        padding: 10px 20px;
    }

    /* Voucher benefits block */
    .benefits-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .voucher-benefits .title {
        font-size: 26px;
        line-height: 1.3;
    }

    .voucher-benefits .intro,
    .voucher-benefits .note {
        font-size: 14px;
        line-height: 1.4;
    }

    .banner-info-box {
        display: none;
    }
}


.product-container {
    h1 {
        font-family: Plus Jakarta Sans;
        font-weight: 800;
        font-size: 44px;
        line-height: 56px;
    }

    .current-price-value {
        font-family: Plus Jakarta Sans;
        font-weight: 600;
        font-size: 34px;
        leading-trim: NONE;
        line-height: 32px;
        letter-spacing: 0.15px;
        color: #1ED760;
    }

    .discount-percentage {
        background: #1ED760;
    }

    .product-description {
        font-family: Plus Jakarta Sans;
        font-weight: 400;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 24px;
        letter-spacing: 0px;
    }

    .product-flag,
    .add-to-cart {
        background: #1ED760;
    }

    .product-flags li.product-flag.discount,
    .product-flags li.product-flag.discount-amount,
    .product-flags li.product-flag.discount-percentage {
        background: #1ED760;
    }

    .social-sharing {
        align-items: flex-start;
        flex-direction: column;
    }

    .social-sharing span {
        font-family: Plus Jakarta Sans;
        font-weight: 800;
        font-size: 18px;
        line-height: 35px;

    }

    .social-sharing i {
        font-size: 18px;
        color: #1ED760;
    }

    .social-sharing ul {
        padding-left: 0px;
    }

    .social-sharing li a {
        overflow: unset;
        text-indent: unset;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-item a {
        font-family: Plus Jakarta Sans;
        font-weight: 800;
        font-style: ExtraBold;
        font-size: 18px;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 0%;

    }

    .tabs .nav-tabs .nav-link.active,
    .tabs .nav-tabs .nav-link:hover {
        border: 0;
        border-bottom: #1ED760 3px solid;
    }

    .tabs .nav-tabs .nav-link.active {
        color: #1ED760;
        font-weight: 800;
    }

    .product-description p {
        font-family: Plus Jakarta Sans;
        font-weight: 500;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0px;

    }

    .blockreassurance_product {
        font-family: Plus Jakarta Sans;
    }

    .blockreassurance_product span {
        font-size: 16px;
        font-weight: bold;
    }

    .product-images>li.thumb-container .thumb.selected,
    .product-images>li.thumb-container .thumb:hover {
        border-bottom: #1ED760 3px solid;
    }

    .comments-nb {
        font-family: Plus Jakarta Sans;
        font-weight: 600;
        font-style: SemiBold;
        font-size: 14px;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 0%;

    }

    .product-comment-list-item {
        font-family: Plus Jakarta Sans;
        font-weight: 400;
        font-size: 14px;
        leading-trim: NONE;
        line-height: 22px;
    }
}

.giftcard-item .card-wrapper {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 12px;
    text-align: center;
    position: relative;
    transition: transform .2s ease;
}

.giftcard-item .card-wrapper:hover {
    transform: translateY(-4px);
    
}

.giftcard-item .product-image img {
    max-width: 100%;
    border-radius: 12px;
}

.giftcard-item .buy-overlay {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.giftcard-item:hover .thumbnail-top img {
    opacity: 0.7;
}


.giftcard-item:hover .buy-overlay {
    display: block;
    opacity: 1;
}

.giftcard-item .btn-buy {
    background: #00c853;
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.giftcard-item .card-info {
    margin-top: 8px;
    background-color: #fff;
    border-color: #fff;
}

.giftcard-item .product-name {
    margin-bottom: 4px;
    font-family: Plus Jakarta Sans;
    font-weight: bold !important;
    font-size: 15px !important;
    line-height: 21px;

}

.giftcard-item .product-price {
    font-family: Plus Jakarta Sans;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 30px;
    text-align: center;
    vertical-align: middle;
    color: #1ED760;
    font-weight: bold;
}

.products article .wishlist-button-add {
    left: 0;
    right: unset;
}
