/* =========================================================
   RESTION
   CLEAN, COLOURFUL AND LIGHTLY GLOSSY WEBSITE STYLES
========================================================= */


/* =========================================================
   BRAND VARIABLES
========================================================= */

:root {
    --restion-white: #ffffff;
    --restion-dark: #303433;
    --restion-text: #6c716f;
    --restion-muted: #949997;

    --restion-green: #9ac32f;
    --restion-green-dark: #76961f;
    --restion-green-light: #d8ebcf;

    --restion-grey: #a7a7a7;
    --restion-grey-dark: #8f8f8f;
    --restion-grey-light: #dedede;

    --restion-blue: #b8dfe2;
    --restion-blue-dark: #91c9ce;

    --restion-purple: #cfc4e6;
    --restion-purple-dark: #b3a4d5;

    --restion-soft-green: #bad9b4;
    --restion-soft-green-dark: #98c391;

    --restion-border: rgba(48, 52, 51, 0.10);

    --restion-shadow-small:
        0 8px 20px rgba(45, 55, 50, 0.08);

    --restion-shadow:
        0 16px 38px rgba(45, 55, 50, 0.11);

    --restion-shadow-large:
        0 24px 55px rgba(45, 55, 50, 0.13);

    --restion-radius-small: 14px;
    --restion-radius: 22px;
    --restion-radius-large: 32px;
    --restion-pill: 999px;

    --restion-transition: all 0.3s ease;
}


/* =========================================================
   GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
}

body.restion-home-page {
    overflow-x: hidden;
    background-color: #ffffff;
    background-image: none;
    color: var(--restion-text);
}

.restion-home-page .main {
    overflow: hidden;
    background-color: #ffffff;
}

.restion-home-page .section {
    position: relative;
    padding: 75px 0;
    background-color: #ffffff;
}

.restion-home-page h1,
.restion-home-page h2,
.restion-home-page h3,
.restion-home-page h4,
.restion-home-page h5,
.restion-home-page h6 {
    color: var(--restion-dark);
}

.restion-home-page p {
    color: var(--restion-text);
}

.restion-home-page a {
    text-decoration: none;
}

.restion-home-page img {
    display: block;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    min-height: 82px;
    border-bottom: 1px solid rgba(48, 52, 51, 0.07);
    background-color: #ffffff;
    box-shadow: 0 5px 22px rgba(35, 45, 40, 0.05);
}

.header .logo img {
    width: auto;
    max-height: 56px;
}

.header .navmenu a {
    color: var(--restion-dark);
    font-weight: 600;
    transition: var(--restion-transition);
}

.header .navmenu a:hover,
.header .navmenu .active {
    color: var(--restion-green-dark);
}

.restion-cart-link {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
}

.restion-cart-link > i {
    font-size: 1.25rem;
}

.restion-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 50%;
    background-color: var(--restion-green);
    color: var(--restion-white);
    font-size: 0.68rem;
    font-weight: 700;
}


/* =========================================================
   HERO
========================================================= */

.restion-home-hero {
    padding-top: 70px;
    padding-bottom: 45px;
    background-color: #ffffff;
}

.restion-hero-logo-wrapper {
    margin-bottom: 35px;
}

.restion-hero-logo {
    width: min(620px, 90%);
    margin: 0 auto;
}


/* =========================================================
   FIVE JAR IMAGES
========================================================= */

.restion-jar-row {
    margin-top: 15px;
}

.restion-jar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    color: var(--restion-dark);
    text-align: center;
    transition: var(--restion-transition);
}

.restion-jar-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 230px;
    margin: 0 auto 16px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid var(--restion-border);
    border-radius: var(--restion-radius);
    background-color: #ffffff;
    box-shadow: var(--restion-shadow-small);
    transition: var(--restion-transition);
}

.restion-jar-image-wrapper img {
    width: 100%;
    height: 260px;
    object-fit: contain;
}

.restion-jar-item span {
    max-width: 165px;
    color: var(--restion-dark);
    font-weight: 700;
    line-height: 1.35;
}

.restion-jar-item:hover {
    transform: translateY(-6px);
}

.restion-jar-item:hover .restion-jar-image-wrapper {
    box-shadow: var(--restion-shadow);
}

.restion-jar-item:hover span {
    color: var(--restion-green-dark);
}


/* =========================================================
   HERO ACTIONS
========================================================= */

.restion-home-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 38px;
}


/* =========================================================
   LIGHTLY GLOSSY BUTTONS
========================================================= */

.restion-glossy-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 28px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--restion-pill);
    color: var(--restion-white);
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(45, 55, 50, 0.12);
    transition: var(--restion-transition);
}

.restion-glossy-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 42%;
    border-radius: var(--restion-pill) var(--restion-pill) 50% 50%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.28),
        rgba(255, 255, 255, 0.06)
    );
    pointer-events: none;
}

.restion-glossy-button:hover {
    color: var(--restion-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(45, 55, 50, 0.16);
}

.restion-glossy-button-green {
    background: linear-gradient(
        180deg,
        #afd642 0%,
        #95bf2d 100%
    );
}

.restion-glossy-button-green:hover {
    background: linear-gradient(
        180deg,
        #a2cd35 0%,
        #83aa24 100%
    );
}

.restion-glossy-button-dark {
    background: linear-gradient(
        180deg,
        #4a4e4c 0%,
        #2e3230 100%
    );
}

.restion-glossy-button-dark:hover {
    background: linear-gradient(
        180deg,
        #3f4341 0%,
        #242725 100%
    );
}

.restion-glossy-button-blue {
    background: linear-gradient(
        180deg,
        #b8dfe2 0%,
        #92c9cd 100%
    );
}

.restion-glossy-button-purple {
    background: linear-gradient(
        180deg,
        #cfc4e6 0%,
        #b3a4d5 100%
    );
}


/* =========================================================
   CATEGORY BLOCKS
========================================================= */

.restion-home-categories {
    padding-top: 35px;
    padding-bottom: 40px;
    background-color: #ffffff;
}

.restion-glossy-category {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--restion-radius);
    color: var(--restion-white);
    text-align: center;
    box-shadow: var(--restion-shadow-small);
    transition: var(--restion-transition);
}

.restion-glossy-category::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 38%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.24),
        rgba(255, 255, 255, 0.03)
    );
    pointer-events: none;
}

.restion-glossy-category span {
    position: relative;
    z-index: 2;
    max-width: 160px;
    color: var(--restion-white);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}

.restion-glossy-category:hover {
    color: var(--restion-white);
    transform: translateY(-5px);
    box-shadow: var(--restion-shadow);
}

.restion-category-grey {
    background: linear-gradient(
        180deg,
        #b5b5b5 0%,
        #9f9f9f 100%
    );
}

.restion-category-blue {
    background: linear-gradient(
        180deg,
        #c4e7e9 0%,
        #acd8db 100%
    );
}

.restion-category-purple {
    background: linear-gradient(
        180deg,
        #d8cfeb 0%,
        #c2b5df 100%
    );
}

.restion-category-green {
    background: linear-gradient(
        180deg,
        #c8e2c3 0%,
        #acd0a6 100%
    );
}

.restion-category-dark {
    background: linear-gradient(
        180deg,
        #a0a0a0 0%,
        #898989 100%
    );
}


/* =========================================================
   PRODUCT SECTIONS
========================================================= */

.restion-product-section {
    padding-top: 35px;
    padding-bottom: 35px;
    background-color: #ffffff;
}

.restion-section-panel {
    position: relative;
    overflow: hidden;
    padding: 60px;
    border: 1px solid rgba(48, 52, 51, 0.08);
    border-radius: var(--restion-radius-large);
    box-shadow: var(--restion-shadow);
}

.restion-section-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.26),
        rgba(255, 255, 255, 0)
    );
    pointer-events: none;
}

.restion-section-panel > .row {
    position: relative;
    z-index: 2;
}

.restion-panel-purple {
    background: linear-gradient(
        135deg,
        #f4f0fa 0%,
        #e4dcf1 100%
    );
}

.restion-panel-blue {
    background: linear-gradient(
        135deg,
        #edf9fa 0%,
        #d5eef0 100%
    );
}

.restion-panel-green {
    background: linear-gradient(
        135deg,
        #eef7ec 0%,
        #d8ead4 100%
    );
}

.restion-panel-grey {
    background: linear-gradient(
        135deg,
        #fafafa 0%,
        #e7e7e7 100%
    );
}


/* =========================================================
   PRODUCT COPY
========================================================= */

.restion-product-copy {
    max-width: 620px;
}

.restion-section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--restion-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.restion-product-copy h2,
.restion-associate-heading h2,
.restion-testimonial-heading h2 {
    margin: 0 0 20px;
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 700;
    line-height: 1.15;
}

.restion-product-copy p {
    margin-bottom: 15px;
    color: var(--restion-text);
    line-height: 1.8;
}

.restion-product-copy .btn {
    margin-top: 12px;
}


/* =========================================================
   PRODUCT IMAGE GROUPS
========================================================= */

.restion-product-image-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: 16px;
}

.restion-product-placeholder {
    position: relative;
    overflow: hidden;
    padding: 12px;
    border: 1px solid var(--restion-border);
    border-radius: var(--restion-radius);
    background-color: #ffffff;
    box-shadow: var(--restion-shadow-small);
    transition: var(--restion-transition);
}

.restion-product-placeholder:nth-child(2) {
    transform: translateY(-22px);
}

.restion-product-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: var(--restion-shadow);
}

.restion-product-placeholder:nth-child(2):hover {
    transform: translateY(-27px);
}

.restion-product-placeholder img {
    width: 100%;
    height: 330px;
    object-fit: contain;
}

.restion-single-product-image {
    overflow: hidden;
    padding: 18px;
    border: 1px solid var(--restion-border);
    border-radius: var(--restion-radius);
    background-color: #ffffff;
    box-shadow: var(--restion-shadow);
}

.restion-single-product-image img {
    width: 100%;
    min-height: 460px;
    border-radius: calc(var(--restion-radius) - 7px);
    object-fit: contain;
}


/* =========================================================
   ASSOCIATE SECTION
========================================================= */

.restion-associate-section {
    background-color: #ffffff;
}

.restion-associate-heading,
.restion-testimonial-heading {
    max-width: 720px;
    margin: 0 auto 40px;
}

.restion-associate-heading p,
.restion-testimonial-heading p {
    margin: 0;
    line-height: 1.8;
}

.restion-associate-map {
    position: relative;
    overflow: hidden;
    padding: 16px;
    border: 1px solid var(--restion-border);
    border-radius: var(--restion-radius-large);
    background-color: #ffffff;
    box-shadow: var(--restion-shadow-large);
}

.restion-associate-map img {
    width: 100%;
    min-height: 440px;
    border-radius: calc(var(--restion-radius-large) - 10px);
    object-fit: cover;
}

.restion-map-action {
    position: absolute;
    right: 35px;
    bottom: 35px;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.restion-simple-testimonials {
    background-color: #ffffff;
}

.restion-simple-testimonials .swiper {
    padding: 10px 5px 58px;
}

.restion-simple-testimonial {
    position: relative;
    height: 100%;
    min-height: 270px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid rgba(48, 52, 51, 0.08);
    border-radius: var(--restion-radius);
    box-shadow: var(--restion-shadow-small);
}

.restion-simple-testimonial::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 24%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.24),
        rgba(255, 255, 255, 0)
    );
    pointer-events: none;
}

.restion-simple-testimonial > * {
    position: relative;
    z-index: 2;
}

.restion-testimonial-purple {
    background: linear-gradient(
        135deg,
        #f4f0fa 0%,
        #e2d9ef 100%
    );
}

.restion-testimonial-blue {
    background: linear-gradient(
        135deg,
        #eefafa 0%,
        #d4edef 100%
    );
}

.restion-testimonial-green {
    background: linear-gradient(
        135deg,
        #eff8ed 0%,
        #d7ead3 100%
    );
}

.restion-testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--restion-green-dark);
}

.restion-simple-testimonial p {
    margin-bottom: 22px;
    color: var(--restion-dark);
    font-size: 1rem;
    line-height: 1.8;
}

.restion-simple-testimonial strong {
    color: var(--restion-dark);
}

.restion-simple-testimonials .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--restion-dark);
    opacity: 0.22;
}

.restion-simple-testimonials .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: var(--restion-pill);
    background-color: var(--restion-green);
    opacity: 1;
}


/* =========================================================
   FOOTER
========================================================= */

.restion-footer {
    position: relative;
    margin-top: 40px;
    padding-top: 70px;
    border-top: 1px solid rgba(48, 52, 51, 0.08);
    background-color: #ffffff;
}

.restion-footer .footer-logo img {
    width: auto;
    max-height: 72px;
}

.restion-footer .widget-heading {
    color: var(--restion-dark);
}

.restion-footer a {
    color: var(--restion-text);
    transition: var(--restion-transition);
}

.restion-footer a:hover {
    color: var(--restion-green-dark);
}

.restion-footer .btn-learn-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 24px;
    overflow: hidden;
    border-radius: var(--restion-pill);
    background: linear-gradient(
        180deg,
        #afd642 0%,
        #95bf2d 100%
    );
    color: var(--restion-white);
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(118, 150, 31, 0.18);
}

.restion-footer .btn-learn-more::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 42%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.24),
        rgba(255, 255, 255, 0)
    );
}

.restion-footer .btn-learn-more:hover {
    color: var(--restion-white);
    transform: translateY(-2px);
}

.restion-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.restion-footer-contact i {
    color: var(--restion-green-dark);
}

.restion-footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.restion-footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--restion-border);
    border-radius: 50%;
    background-color: #ffffff;
    color: var(--restion-dark);
    box-shadow: var(--restion-shadow-small);
}

.restion-footer-socials a:hover {
    background-color: var(--restion-green);
    color: var(--restion-white);
    transform: translateY(-3px);
}

.restion-footer-bottom {
    margin-top: 50px;
    padding: 24px 0;
    border-top: 1px solid rgba(48, 52, 51, 0.10);
}

.restion-footer-bottom p {
    font-size: 0.86rem;
}

.restion-company-details {
    color: var(--restion-muted);
}

.restion-footer-separator {
    margin: 0 8px;
}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

#whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 110px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #25d366;
    color: var(--restion-white);
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.28);
    transition: var(--restion-transition);
}

#whatsapp-button i {
    font-size: 1.75rem;
}

#whatsapp-button:hover {
    color: var(--restion-white);
    transform: translateY(-4px) scale(1.04);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .restion-section-panel {
        padding: 48px;
    }

    .restion-product-placeholder img {
        height: 290px;
    }

}


/* =========================================================
   TABLET AND MOBILE
========================================================= */

@media (max-width: 991px) {

    .restion-home-page .section {
        padding: 62px 0;
    }

    .restion-home-hero {
        padding-top: 55px;
    }

    .restion-hero-logo {
        width: min(540px, 90%);
    }

    .restion-section-panel {
        padding: 42px;
    }

    .restion-product-copy {
        max-width: 100%;
    }

    .restion-product-image-group {
        max-width: 720px;
        margin: 15px auto 0;
    }

    .restion-single-product-image {
        max-width: 720px;
        margin: 0 auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .header {
        min-height: 74px;
    }

    .header .logo img {
        max-height: 48px;
    }

    .restion-home-page .section {
        padding: 52px 0;
    }

    .restion-home-hero {
        padding-top: 45px;
        padding-bottom: 30px;
    }

    .restion-hero-logo-wrapper {
        margin-bottom: 25px;
    }

    .restion-jar-image-wrapper {
        max-width: 190px;
        padding: 12px;
    }

    .restion-jar-image-wrapper img {
        height: 215px;
    }

    .restion-home-actions .btn {
        width: 100%;
    }

    .restion-glossy-category {
        min-height: 120px;
    }

    .restion-section-panel {
        padding: 30px 24px;
        border-radius: 24px;
    }

    .restion-product-copy h2,
    .restion-associate-heading h2,
    .restion-testimonial-heading h2 {
        font-size: 2.15rem;
    }

    .restion-product-image-group {
        gap: 9px;
    }

    .restion-product-placeholder {
        padding: 7px;
    }

    .restion-product-placeholder img {
        height: 215px;
    }

    .restion-product-placeholder:nth-child(2) {
        transform: translateY(-12px);
    }

    .restion-product-placeholder:nth-child(2):hover {
        transform: translateY(-16px);
    }

    .restion-single-product-image img {
        min-height: 340px;
    }

    .restion-associate-map {
        padding: 10px;
        border-radius: 24px;
    }

    .restion-associate-map img {
        min-height: 330px;
        border-radius: 16px;
    }

    .restion-map-action {
        position: static;
        padding: 18px 8px 8px;
        text-align: center;
    }

    .restion-map-action .btn {
        width: 100%;
    }

    .restion-simple-testimonial {
        min-height: auto;
        padding: 26px;
    }

    .restion-footer {
        padding-top: 55px;
    }

    .restion-footer-bottom,
    .restion-footer-bottom .text-md-end {
        text-align: center !important;
    }

    .restion-footer-separator {
        display: none;
    }

    .restion-company-details {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    #whatsapp-button {
        right: 14px;
        bottom: 90px;
        width: 54px;
        height: 54px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .restion-hero-logo {
        width: 94%;
    }

    .restion-jar-image-wrapper img {
        height: 190px;
    }

    .restion-jar-item span {
        font-size: 0.88rem;
    }

    .restion-product-image-group {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .restion-product-placeholder,
    .restion-product-placeholder:nth-child(2) {
        transform: none;
    }

    .restion-product-placeholder:hover,
    .restion-product-placeholder:nth-child(2):hover {
        transform: translateY(-4px);
    }

    .restion-product-placeholder img {
        height: 310px;
    }

    .restion-section-panel {
        padding: 28px 20px;
    }

    .restion-product-copy h2,
    .restion-associate-heading h2,
    .restion-testimonial-heading h2 {
        font-size: 1.95rem;
    }

}