/*-----------------*/
/*--- F O N T S ---*/
/*-----------------*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*-------------------------------------------*/
/*--- S I T E W I D E   C O N S T A N T S ---*/
/*-------------------------------------------*/

:root {
    /*--- standard colours ---*/
    --black: 0, 0, 0;
    --grey-875: 32, 32, 32;
    --grey-750: 64, 64, 64;
    --grey-625: 96, 96, 96;
    --grey-500: 128, 128, 128;
    --grey-375: 160, 160, 160;
    --grey-250: 192, 192, 192;
    --grey-125: 224, 224, 224;
    --white: 255, 255, 255;

    /*--- design specific ---*/
    --grey: 83, 83, 83;     
    --grey-dark: 34, 34, 34;      
    --teal: 38, 102, 90;          
    --green: 51, 101, 16;        
    --grey-light: 250, 250, 250;   
    --grey-light-2: 217, 217, 217;    
    --grey-light-3: 245, 245, 245;    
    --teal-dark: 34, 65, 55;   
    --green-light: 58, 187, 18;

    /*--- fonts ---*/
    --font-family: 'Montserrat', sans-serif;

    /*--- font sizes ---*/
    --xl: 60rem;    /* Extra Large - H1 headings, main titles */
    --l: 30rem;     /* Large - H2 headings, subtitles */
    --m: 24rem;     /* Medium - H3 headings, accents */
    --s: 16rem;     /* Small - body text, buttons */
    --xs: 14rem;    /* Extra Small - small text, captions */

}


/*-------------------*/
/*--- G L O B A L ---*/
/*-------------------*/

* {
    margin: 0;
    padding: 0;
    line-height: 1.7;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: rgb(var(--teal));
}

html {
    width: 100%;
    height: 100%;
}

body {
    font-family: var(--font-family);
    font-size: var(--s);
    font-weight: 400;
    line-height: 1.5;
    color: rgb(var(--grey-dark));
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(var(--white));
}

.container {
    width: 1140rem;
    max-width: 90vw;
    margin: 0 auto;
}

/* ======================================== */
/*           G R I D   S Y S T E M         */
/* ======================================== */

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15rem;
}
.row.-v2 {
    display: flex;
    align-self: center;
}
/* Column base */
[class*="col-"] {
    padding: 0 15rem;
    flex: 0 0 auto;
}


.col-lg-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-lg-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-lg-6  { flex: 0 0 50%; max-width: 50%; }
.col-lg-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-lg-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-lg-3  { flex: 0 0 25%; max-width: 25%; }

/*-----------------------*/
/*--- D E F A U L T S ---*/
/*-----------------------*/

h1 {
    font-size: var(--xl);
    font-weight: 600;
    color: rgb(var(--grey));
}

h2 {
    font-size: var(--l);
    font-weight: 600;
    color: rgb(var(--grey));
    margin-bottom: 20rem;
}

h3 {
    font-size: var(--m);
    color: rgb(var(--grey));
    font-weight: 600;
}

h4 { 
    font-size: var(--s);
    color: rgb(var(--grey-dark));
    font-weight: 700;
}

p, li, ol {
    font-weight: 400;
    }

a {
    color: rgb(var(--grey));
    text-decoration: none;
}

strong {
    font-weight: 600;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

/*---------------------*/
/*--- B U T T O N S ---*/
/*---------------------*/

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none
}

.button {
    position: relative;
    display: inline-flex;
    min-height: 50rem;
    min-width: 235rem;
    padding: 0rem 10rem;
    align-items: center;
    justify-content: center;
    font-size: var(--s);
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    border-radius: 50rem;
    cursor: pointer;
    transition: all ease-in-out .25s;
    text-transform: uppercase;
    letter-spacing: 1.6rem;
}

.button:hover { text-decoration: none; }

.button.-v1 {
    color: rgb(var(--green));
    border: 1px solid rgb(var(--green));
}

.button.-v2 {
    color: rgb(var(--white));
    background-color: rgb(var(--teal));
}
.button.-v3 {
    color: rgb(var(--teal));
    border: 1px solid rgb(var(--teal));
}
.button.-v4 {
    color: rgb(var(--grey));
    border: 1px solid rgb(var(--grey));
}
.button.-v1:hover {
    color: rgb(var(--white));
    background-color: rgb(var(--green));
}

.button.-v2:hover {
    color: rgb(var(--white));
    background-color: rgb(var(--green));
}
.button.-v3:hover {
    background: rgb(var(--teal));
    color: rgb(var(--white));
}
.button.-v4:hover {
    background: rgb(var(--grey));
    color: rgb(var(--white));
}
.learn-more {
    text-transform: uppercase;
    color: #535353;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-top: 35rem;
    letter-spacing: 4rem;
}
.learn-more img {
    margin-left: 33rem;
    display: block;
    transition: all 0.3s ease;
}
.learn-more:hover img {
    transform: translateX(5rem);
}
.learn-more:hover {
    color: rgb(var(--green));
}

.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
    font-size: 24rem;
    line-height: 1;
    text-transform: none !important;
}



/* ======================================== */
/*           L E A F   C U T O U T         */
/* ======================================== */

.leaf-cutout {
    display: block;
    position: relative;
    --leaf-width: 480rem; 
    --leaf-radius-percent: 29%; 
    border-radius: 0 var(--leaf-radius-percent) 0 var(--leaf-radius-percent);
    overflow: visible; 
    width: var(--leaf-width);
    aspect-ratio: 1.2;
}

.leaf-cutout:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgb(var(--teal));
    border-radius: 6% 0 6% 0; 
    top: 17rem;
    left: -17rem; 
    z-index: 1;
    pointer-events: none;
}

.leaf-cutout img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover; 
    display: block;
    border-radius: inherit; 
}

/* ======================================== */
/*           PAGE PAGINATION        */
/* ======================================== */

.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40rem;
}
.pagination-btn {
    width: 46rem;
    height: 46rem;
    border: 1px solid rgb(var(--green));
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    margin-left: 5rem;
    margin-right: 5rem;
}
.pagination-btn.-v1::after {
    content: url('../images/icons/prev.svg');
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    transform: translateY(-50%) translateX(-50%);
    transition: all 0.3s ease;
    
}
.pagination-btn.-v2::after {
    content: url('../images/icons/next.svg');
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    transform: translateY(-50%) translateX(50%); 
    transition: all 0.3s ease;
}
.pagination-btn.-v1:hover::after {
    transform: translateY(-50%) translateX(-55%);
}
.pagination-btn.-v2:hover::after {
    transform: translateY(-50%) translateX(55%);
}
.pagination-link {
    font-size: 20rem;
    font-weight: 500;
    color: rgb(var(--grey-dark));
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 5rem;
    margin: 0 5rem;
    min-width: 35rem;
    border-radius: 4rem;
}
.pagination-link.active,
.pagination-link:hover {
    background: rgba(var(--teal), 0.1);
    color: rgb(var(--green));
}

/* ======================================== */
/*         S I Z E   V A R I A N T S       */
/* ======================================== */

.leaf-cutout.-hero {
    --leaf-width: 580rem;
    --leaf-radius-percent: 55%;
    aspect-ratio: 1.35; 
    max-width: 100%;
}
.leaf-cutout.-hero:after {
    border-radius: 0 54% 0 56%;
}
.leaf-cutout.-square {
    --leaf-width: 100%;
    --leaf-radius-percent: 5%; 

}

.leaf-cutout.-banner {
    --leaf-width: 500rem;
    --leaf-radius-percent: 36%;
    aspect-ratio: 1.2;
}
.leaf-cutout.-banner:after {
    border-radius: 0 32% 0 40%;
}
.leaf-cutout.-banner.-left:after {
    border-radius: 32% 0 40% 0;
}


.leaf-cutout.-card {
    --leaf-width: 480rem;
    --leaf-radius-percent: 30%; 
    aspect-ratio: 1.2; 
}

.leaf-cutout.-card:after {
    border-radius: 26% 0 34% 0;
}

.leaf-cutout.-thumb {
    --leaf-width: 250rem;
    --leaf-radius-percent: 20%; 
    aspect-ratio: 1.16;
    transition: border-radius 0.3s ease;
}

.leaf-cutout.-thumb:after {
    border-radius: 19% 0 22% 0;
}

.leaf-cutout.-icon {
    --leaf-width: 300rem;
    --leaf-radius-percent: 47%; 
    aspect-ratio: 1; 
}

.leaf-cutout.-icon:after {
    border-radius: 49% 0 45% 0;
}

/* ======================================== */
/*       D I R E C T I O N   M O D S       */
/* ======================================== */

.leaf-cutout.-left {
    border-radius: var(--leaf-radius-percent) 0 var(--leaf-radius-percent) 0;
}

.leaf-cutout.-left:after {
    left: 17rem;
}

.leaf-cutout.-right {
    border-radius: 0 var(--leaf-radius-percent) 0 var(--leaf-radius-percent);
}

.leaf-cutout.-right:after {
    left: -17rem;
}

/* ======================================== */
/*      S P E C I A L   P O S I T I O N S  */
/* ======================================== */

.leaf-cutout.-thumb:after {
    left: 5rem;
    top: 5rem;
}

.leaf-cutout.-card:after {
    left: 10rem;
    top: 10rem;
}
.leaf-cutout.-icon:after {
    left: -10rem;
    top: -10rem;
}
.leaf-cutout.-square:after {
    left: 5rem;
    top: 5rem;
}
/* ======================================== */
/*         B O R D E R   V A R I A N T S   */
/* ======================================== */

.leaf-cutout.-white-border:after {
    border: 1px solid rgb(var(--white));
}

/*-------------------*/
/*--- FORM ELEMENTS ---*/
/*-------------------*/
select,
input {
    height: 40rem;
    border: 1px solid rgb(var(--grey-light-2));
    border-radius: 5rem;
    font-size: var(--xs);
    font-weight: 400;
    font-family: var(--font-family);
    outline: none;
    padding: 0rem 13rem;
    color: rgb(var(--grey-dark));
}
input::-moz-placeholder {
    letter-spacing: 1.4rem;
}
input::placeholder {
    letter-spacing: 1.4rem;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z' fill='%2326655A'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10rem center;
    background-size: 20rem 20rem;
    padding-right: 40rem;
}
.input {
    width: 100%;
    padding: 0rem 13rem;
    border: 1px solid rgb(var(--grey-light-2));
    border-radius: 5rem;
    font-size: var(--xs);
    font-weight: 400;
    height: 40rem;
    font-family: var(--font-family);
    outline: none;
    margin: 7rem 0;
}
.checkbox-label {
    width: 24rem;
    height: 24rem;
    min-width: 24rem;
    border: 1px solid rgb(var(--teal));
    border-radius: 2rem;
    display: block;
    cursor: pointer;
}
.checkbox-input {
    display: none;
}
.checkbox-row {
    display: flex;
    align-items: center;
}
.checkbox-input:checked + .checkbox-label {
    background: none;
    position: relative;
}

.checkbox-input:checked + .checkbox-label::after {
    content: "check";
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 22rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(var(--teal));
}
.checkbox-label-text {
    font-size: var(--xs);
}
.custom-select {
    position: relative;
    width: 100%;
    font-size: 14rem;
}

.custom-select.filter-select {
    width: 24%;
}

.select-selected {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4rem;
    padding: 8rem 12rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-weight: 500;
    width: 100%;
}

.select-selected:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10rem;
    transform: translateY(-50%);
    width: 20rem;
    height: 20rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z' fill='%2326655A'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.select-selected.select-arrow-active:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6 1.41 1.41z' fill='%2326655A'/%3E%3C/svg%3E");
    transform: translateY(-50%) rotate(180deg);
}

.select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4rem 4rem;
    max-height: 200rem;
    overflow-y: auto;
}

.select-hide {
    display: none;
}

.select-option {
    color: #333;
    padding: 4rem 12rem;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-weight: 500;
}

.select-option:hover {
    background-color: #f0f0f0;
}

.select-option.select-same-as-selected {
    background-color: #1967D2;
    color: rgb(var(--white));
}

.qty-input {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 120rem;
    height: 50rem;
    padding: 0 44rem 0 24rem; 
    border: 1px solid #D9D9D9;
    border-radius: 50rem;
    background: rgb(var(--white));
}

.qty-field {
    width: 60rem;
    text-align: left;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 20rem;
    line-height: 1;
    color: rgb(var(--grey-dark));
    -webkit-appearance: textfield;
    appearance: textfield;
    -moz-appearance: textfield;
}
.qty-field::-webkit-outer-spin-button,
.qty-field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-btn {
    position: absolute;
    right: 12rem;
    width: 24rem;
    height: 18rem;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.qty-btn[data-qty-up]::before,
.qty-btn[data-qty-down]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 16rem;
    height: 16rem;
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    background-color: rgb(var(--teal));
}
.qty-btn[data-qty-up] { top: 8rem; }
.qty-btn[data-qty-down] { bottom: 8rem; }
.qty-btn[data-qty-up]::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7.41 14.59L12 10l4.59 4.59L18 13l-6-6l-6 6z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7.41 14.59L12 10l4.59 4.59L18 13l-6-6l-6 6z'/%3E%3C/svg%3E");
}
.qty-btn[data-qty-down]::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7.41 9.41L12 14l4.59-4.59L18 11l-6 6l-6-6z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7.41 9.41L12 14l4.59-4.59L18 11l-6 6l-6-6z'/%3E%3C/svg%3E");
}

.qty-input:focus-within {
    border-color: rgb(var(--teal));
    box-shadow: 0 0 0 2rem rgba(38, 101, 90, 0.08);
}
.single-product-item p {
    margin-bottom: 10rem;
}

/*-------------------*/
/*--- H E A D E R ---*/
/*-------------------*/
.header-menu {
    background: rgba(var(--grey-light));
    padding-top: 38rem;
    padding-bottom: 38rem;
}
.header-menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-menu ul li {
    margin-left: 55rem;
    margin-right: 55rem;
}
.header-menu ul li a {
    text-transform: uppercase;
    font-weight: 500;
    padding-top: 2rem;
    padding-bottom: 2rem;

}
.header-menu ul li a:hover {
    color: rgb(var(--teal));
    border-bottom: 2rem solid rgb(var(--teal)); 
}
.header-top {
    padding-top: 20rem;
    padding-bottom: 20rem;

}
.header-top .material-symbols-outlined {
    color: rgb(var(--teal));
    font-size: 32rem;
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 40;
}
.header-top .material-symbols-outlined:hover {
    opacity: 0.8;
}
.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
} 
.logo {
    z-index: 101;
    position: relative;
}
.logo a {
    display: flex   ;
    align-items: center;
}
.logo img {
    width: 420rem;
}
.search-button {
    background: transparent;
    position: absolute;
    top: 50%;
    right: 15rem;
    transform: translateY(-50%);
    cursor: pointer;
    height: 30rem;
}
.search-button:hover img {
    opacity: 0.8;
}
.search-wrapper {
    position: relative;
    transition: all 0.3s ease;
}
.search-input {
    width: 0;
    height: 50rem;
    padding: 0rem 25rem;
    border: 1px solid rgb(var(--grey-light-2));
    border-radius: 50rem;
    font-size: var(--xs);
    font-weight: 400;
    color: rgb(var(--grey));
    background-color: rgba(var(--white));
    outline: none;
    font-family: var(--font-family);
    letter-spacing: 1.4rem;
    padding-right: 58rem;
    display: inline-block;
    opacity: 0;
    transition: all 0.3s ease;
    
}
.search-wrapper.active .search-input {
    width: 280rem;
    opacity: 1;
}
.header-right {
    display: flex;
    align-items: center;
}
.header-icon {
    display: flex;
    margin-left: 15rem;
    margin-right: 15rem;
    align-items: center;
}

.header .button {
    margin-left: 15rem;
}
.menu-btn {
    display: none;
    position: relative;
    z-index: 101;
}
.header-icon {
    z-index: 101;
    position: relative;
}
.header-menu ul li:last-child {
    display: none;
}

/*-----------------------*/
/*--- FOOTER ---*/
/*-----------------------*/

.footer {
    background: rgba(var(--grey-light-3));
    padding-top: 32rem;
    padding-bottom: 20rem;
}
.footer-logo img {
    width: 250rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15rem;
    border-bottom: 1px solid rgb(var(--grey-light-2));
}
.footer-social {
    display: flex;
    align-items: center;
}
.footer-social a {
    display: flex;
    margin-left: 17rem;
    align-items: center;
}
.footer-social img {
    height: 21rem;
}
.footer-social a:hover {
    opacity: 0.8;
}
.footer-social-title {
    color: rgb(var(--grey-dark));
}
.footer-bottom {
    padding-top: 17rem;
    font-size: var(--xs);
    color: rgba(var(--grey-dark), 0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom a {
    text-decoration: underline;
}
.footer-bottom a:hover {
    color: rgba(var(--grey-dark), 1);
}
.footer-bottom-menu {
    display: flex;
    align-items: center;
}
.footer-bottom-menu a {
    text-decoration: underline;
}
.footer-bottom-menu span {
    display: block; 
    margin-left: 18rem;
    margin-right: 18rem;
}

.contact-section {
    padding-top: 100rem;
    padding-bottom: 100rem;
}
.contact-content {
    display: flex;
    justify-content: space-between;
}
.contact-col {
    width: 33.3%;
}
.contact-col p {
    width: 250rem;
    max-width: 100%;
    text-transform: capitalize;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    color: rgb(var(--grey-dark));
    margin-top: 20rem;
}
.contact-item img {
    width: 24rem;
    min-width: 24rem;
    margin-right: 24rem;
    display: block;
    margin-top: 3rem;
}

.contact-item .material-symbols-outlined {
    width: 24rem;
    min-width: 24rem;
    margin-right: 24rem;
    display: block;
    margin-top: 3rem;
    font-size: 24rem;
    color: rgb(var(--teal));
}
.contact-list {
    margin-top: 35rem;
}
.contact-item.-v1 p {
    text-decoration: underline;
}
.contact-item.-v1 .material-symbols-outlined {
    color: rgb(var(--green));
}
.form-wrapper {
    background: rgb(var(--grey-light-3));
    padding: 45rem 40rem;
    border-radius: 0 50rem 0 50rem;
    position: relative;
    text-align: center;
}
.form-wrapper h2 {
    color: rgb(var(--green));
    margin-bottom: 12rem;
}
.form-wrapper .button {
    width: 100%;
    font-family: var(--font-family);
    margin-top: 20rem;
}
.form-wrapper:after {
    position: absolute;
    top: -15rem;
    left: -15rem;
    border: 1px solid rgb(var(--teal));
    border-radius: inherit;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 1;
}
.form-wrapper p {
    width: 290rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    margin-bottom: 15rem;
}
.contact-img {
    width: 373rem;
    max-width: 100%;
    position: relative;
    right: -20rem;
}
.form {
    position: relative;
    z-index: 2;
}
.contact-item.-v1:hover {
    color: rgb(var(--green));
}

/*-----------------------*/
/*--- HOME PAGE---*/
/*-----------------------*/

.hero-slider {
    width: 100%;
    aspect-ratio: 3.4; 
    overflow: hidden;
    position: relative;
}

.hero-slider .carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slider .carousel-cell {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.hero-slider .carousel-cell img {
    display: none;
}


.hero-slider .carousel-cell:not([data-bg]) img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    display: block;
    transition: none;
    transform: translateZ(0);
    backface-visibility: hidden;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
}


.hero-slider .carousel-cell[data-bg="1"] {
    background-image: url('../images/header-slides/1.png');
}

.hero-slider .carousel-cell[data-bg="2"] {
    background-image: url('../images/header-slides/2.png');
}

.hero-slider .carousel-cell[data-bg="3"] {
    background-image: url('../images/header-slides/3.png');
}


.hero-slider .flickity-page-dots {
    position: absolute;
    bottom: 28rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-slider .flickity-page-dots .dot {
    width: 10rem;
    height: 10rem;
    margin: 0 6rem;
    background: transparent;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgb(var(--white));
    opacity: 1;
}

.hero-slider .flickity-page-dots .dot.is-selected {
    background: rgb(var(--white));
}

.nursery-section {
    padding-top: 120rem;
    padding-bottom: 120rem;
}
.nursery-section .row {
    display: flex;
    align-items: center;
}
.text {
    margin-bottom: 15rem;
}

.bio-section {
    background: rgb(var(--teal-dark));
    color: #fff;
    padding-top: 60rem;
    padding-bottom: 60rem;
}
.bio-section h2 {
    color: #fff;
}
.bio-section p {
    margin-bottom: 15rem;
    max-width: 80%;
}
.bio-section .col-lg-8 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.items-section {
    padding-bottom: 120rem;
}
.card-image-wrapper {
    width: 100%;
    height: 320rem;
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-bottom: 15rem;
}
.card-image-wrapper .card-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.card-image-cover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(246, 245, 248, 0.4) 0%, #F6F5F8 100%);
    text-align: center;
    padding: 15rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-self: flex-end;
    transition: all 0.3s ease;
}
.card-image-cover h3 {
    color: rgb(var(--green));
}
.material-symbols-outlined.card-image-icon {
    width: 140rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 130rem;
    background: linear-gradient(180deg, rgba(51, 101, 16, 0.6) 0%, #336510 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.card:hover .card-image-icon {
    display: none;
}
.card:hover .card-image-cover {
    height: 68rem;
}
.card:hover .button.-v1 {
    background: rgb(var(--green));
    color: rgb(var(--white));
}
.card {
    text-align: center;
    display: block;
}
.card h4 {
    margin-bottom: 14rem;
}
.card .button {
    margin-top: 15rem;
}
.card p {
    width: 220rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/*-------------------*/
/*--- PRODUCT LIST PAGE ---*/
/*-------------------*/
.product-list-section {
    padding-bottom: 60rem;
}
.product-list-hero {
    padding-top: 40rem;
    padding-bottom: 40rem;
}
.product-list-hero-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 17rem;
}
.product-list-hero-item .material-symbols-outlined {
    color: rgb(var(--teal));
    font-size: 20rem;
    margin-top: 2.5rem;
}
.product-list-hero-item p {
    padding-left: 15rem;
    display: flex;
    align-items: center;
}
.product-list-hero-item p strong {
    margin-left: 10rem;
}
.product-list-hero-item p a {
    display: flex;
    align-items: center;
    margin-left: 10rem;
    color: rgb(var(--grey-dark));
    font-weight: 600;
    
}
.product-list-hero-item p a .material-symbols-outlined {
    color: rgb(var(--green));
    margin-left: 5rem;
}
.product-list-hero-items {
    margin-bottom: 30rem;
    margin-top: 20rem;
}
.filter-content {
    background: rgb(var(--white));
    border: 1px solid rgb(var(--grey-light-2));
    width: 998rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10rem;
    padding: 35rem;
    padding-bottom: 18rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.filter-select {
    width: 24%;
}

.select-selected .show-label {
    font-weight: 400;
}

.filter-select option {
    font-weight: 500;
}

.filter-select option span {
    font-weight: 400;
}


.filter-select option:checked {
    font-weight: 500;
}

.filter-select option:checked span {
    font-weight: 400;
}
.filter-input {
    width: 49.4%;
}
.filter-checkbox-wrapper {
    width: 24%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.filter-item {
    margin-bottom: 17rem;
    display: flex;
    align-items: center;
}
.filter-checkbox-wrapper .checkbox-row .checkbox-label {
    margin-left: 10rem;
}

.clear-filter-wrapper {
    display: none;
    text-align: center;
    margin-top: 0rem;
    padding-top: 0rem;
}

.filter-content.has-active-filters .clear-filter-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}
.clear-filter-btn {
    position: relative;
    font-size: var(--xs);
    line-height: 1;
    cursor: pointer;
    color: rgb(var(--teal));
    text-decoration: underline;
}
.mobile-filter-header {
    display: none;
}

.filter-content__footer,
.filter-content__header {
    display: none;
}


body.filter-open {
    overflow: hidden;
}
.filter-section {
    padding-top: 50rem;
    padding-bottom: 50rem;
}
.product-item__title {
    text-align: center;
    font-weight: 600;
    color: rgb(var(--teal));
    padding-top: 15rem;
    padding-left: 20rem;
    padding-right: 20rem;
    line-height: 1.2;
}
.product-item {
    margin-bottom: 30rem;
    display: block;
    position: relative;
}
.product-item .leaf-cutout.-thumb {
    position: relative;
}

.product-item .leaf-cutout.-thumb .image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
}

.product-item .leaf-cutout.-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    border-radius: inherit;
}
.product-item:hover .leaf-cutout:after {
    border-color: rgb(var(--green));
}
.product-item:hover .product-item__title {
    color: rgb(var(--green));
}
.product-item:hover .leaf-cutout.-thumb img {
    transform: scale(1.2);
}
.product-item__label {
    position: absolute;
    top: 6%;
    right: 9%;
    z-index: 11;
    font-size: 9rem;
    background: rgb(var(--green-light));
    color: rgb(var(--white));
    border-radius: 15rem;
    padding: 0rem 9rem;
    font-weight: 600;
    letter-spacing: 1.4rem;
}
.product-item__label.-v2 {
    background: rgb(var(--grey));
}
.product-item.-v2 .product-item__title {
    color: rgb(var(--grey));
}
.product-item.-v2 .product-item__label {
    background: rgb(var(--grey));
}
.product-item.-v2 .leaf-cutout:after {
    border-color: rgb(var(--grey));
}

/*-------------------*/
/*--- SINGLE PRODUCT PAGE ---*/
/*-------------------*/
.single-product {
    padding-top: 75rem;
    padding-bottom: 75rem;
    background: linear-gradient(90deg, rgba(51, 101, 16, 0.1) 0%, rgba(51, 101, 16, 0) 100%);
}


.product-gallery {
    position: relative;
}

.product-gallery-main {
    margin-bottom: 20rem;
    border-radius: 10rem;
    overflow: hidden;
    position: relative;
}

.product-gallery-carousel {
    width: 100%;
    height: 400rem;
}

.product-gallery-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}



.product-gallery-thumbs {
    position: relative;
}

.product-gallery-thumbs-carousel {
    width: 100%;
    height: auto;
}

.product-gallery-thumb {
    width: 24%;
    aspect-ratio: 110/90;
    margin-right: 1.33%;
    border-radius: 8rem;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

.product-gallery-thumb:last-child {
    margin-right: 0;
}

.product-gallery-thumb.is-selected {
    border-color: rgb(var(--green));
}

.product-gallery-thumb:hover {
    border-color: rgb(var(--teal));
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}


.product-gallery-carousel .flickity-page-dots {
    display: none;
}

.product-gallery-thumbs-carousel .flickity-page-dots {
    display: none;
}

.product-gallery-thumbs-carousel .flickity-prev-next-button {
    display: none;
}

.product-gallery-thumbs-carousel .flickity-prev-next-button.previous {
    left: -20rem;
}

.product-gallery-thumbs-carousel .flickity-prev-next-button.next {
    right: -20rem;
}


.fancybox__container {
    --fancybox-bg: rgba(0, 0, 0, 0.95);
}


.fancybox__toolbar {
    background: transparent;
    padding: 0;
}


.fancybox__button[data-fancybox-close] {
    color: rgb(var(--white));
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 50rem;
    height: 50rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    top: 20rem;
    right: 20rem;
    z-index: 1000;
}

.fancybox__button[data-fancybox-close]:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}


.fancybox__infobar {
    display: none !important;
}


.fancybox__thumbs {
    display: none !important;
}


.fancybox__button[data-fancybox-play] {
    display: none !important;
}

.fancybox__slide {
    padding: 20rem;
}

.fancybox__content {
    border-radius: 8rem;
    overflow: hidden;
}

.fancybox__image {
    border-radius: 8rem;
}


.fancybox__nav {
    --fancybox-nav-width: 60rem;
    --fancybox-nav-height: 60rem;
}

.fancybox__nav .fancybox__button {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 60rem;
    height: 60rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: rgb(var(--white));
    border: none;
}

.fancybox__nav .fancybox__button:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}
.product-gallery-slide {
    padding-right: 7rem;
}
.single-product-list {
    margin-top: 30rem;
}
.single-product-item {
    margin-bottom: 25rem;
    
}
.single-product-item-title {
    font-size: 20rem;
    font-weight: 600;
    color: rgb(var(--grey));
    margin-bottom: 10rem;
}

.purchase-details {
    border-bottom: 1px solid rgb(var(--grey-light-2));
    padding: 24rem 0;
}
.single-product-item .purchase-details:nth-child(2) {
    border-top: 1px solid rgb(var(--grey-light-2));
    margin-top: 10rem;
}
.purchase-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.purchase-details-title {
    font-weight: 600;
}
.purchase-details .product-item__label {
    position: static;
}
.purchase-details-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.purchase-details-item-title {
    height: 24rem;
    font-size: var(--xs);
    margin-bottom: 5rem;
}


.product-price {
    font-size: var(--xs);
    height: 50rem;
    display: flex;
    align-items: flex-end;
    font-weight: 600;
    position: relative;
}
.product-price-note {
    position: absolute;
    top: 102%;
    left: 0;
    font-size: 11rem;
    white-space: nowrap;
    font-weight: 400;
}
.product-price span {
    color: rgb(var(--teal));
    font-size: 35rem;
    line-height: 1;
    padding-right: 4rem;
}
.purchase-details p {
    margin-bottom: 0;
    margin-top: 10rem;
}
/* ======================================== */
/*         B A S I C   P A G E    */
/* ======================================== */
.page-hero {
    padding-top: 60rem;
    position: relative;
    overflow: hidden;
}
.page-hero .container {
    position: relative;
    z-index: 1;
}


.page-content .col-lg-6 {
   margin-bottom: 120rem;
   margin-top: 60rem;
}
.page-text {
    width: 480rem;
    max-width: 100%;
}
.page-text p {
    margin-bottom: 20rem;
    line-height: 2;
}
.page-text .button {
    margin-top: 40rem;
    display: flex;
    width: 210rem;
    max-width: 100%;
}
.page-text .button span {
    margin-left: 10rem;
    font-size: 24rem;
}
.page-item {
    background: rgb(var(--grey-light-3));
    box-shadow: 1px 2px 4px rgba(var(--green), 0.25);
    border-radius: 20rem;
    padding: 40rem;
    height: 100%;
}
.page-item-row {
    display: flex;
    align-items: center;
    margin-bottom: 18rem;
}
.page-item-row span {
    width: 50rem;
}
.page-item-block {
    margin-bottom: 30rem;
}
.page-item h3 {
    margin-bottom: 20rem;
}
.page-item .material-symbols-outlined {
    color: rgb(var(--teal));
}
.page-item-price {
    font-size: 20rem;
    font-weight: 500;
    color: rgb(var(--teal));
}
.page-item-title {
    margin-bottom: 20rem;
}
.page-item-col {
    width: 50%;
}
.page-item-content {
    display: flex;
    margin-top: 30rem;
}
.green {
    color: rgb(var(--teal));
    font-weight: 500;
}
.page-section {
    padding-bottom: 60rem;
}
.page-section .col-lg-6 {
    margin-bottom: 30rem;
}
.gallery-section h2 {
    text-align: center;
    margin-bottom: 45rem;
}


.gallery-section {
    padding-top: 60rem;
    padding-bottom: 60rem;
    overflow: hidden;
}
.gallery-slider {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.gallery-carousel {
    width: 100%;
    max-width: 1920px; 
    margin: 0 auto;
    height: calc(min(100vw, 1920px) * 0.25 * 0.71); 
    min-height: 150rem; 
    --flickity-cell-width: 25%;
    overflow: hidden;
}

.gallery-carousel .flickity-viewport {
    overflow: hidden;
}


.gallery-carousel .gallery-slide {
    width: 25%;
    margin-right: 0;
    flex-shrink: 0;
}



.gallery-carousel .gallery-slide.is-selected {
    z-index: 2;
}


.gallery-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5%;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 10rem;
    box-shadow: 0 4rem 20rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;

}

.gallery-slide img:hover {
    transform: scale(1.02);
    cursor: pointer;
}

.gallery-carousel .flickity-prev-next-button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50rem;
    height: 50rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: all 0.3s ease;
}

.gallery-carousel .flickity-prev-next-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.gallery-carousel .flickity-prev-next-button.previous {
    left: calc(50% - 37.5%); 
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%) translateX(-50%);
}

.gallery-carousel .flickity-prev-next-button.next {
    right: calc(50% - 37.5%); 
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%) translateX(50%);
}

.gallery-carousel .flickity-prev-next-button svg {
    width: 20rem;
    height: 20rem;
    fill: rgb(var(--teal));
}
.gallery-carousel .flickity-prev-next-button .flickity-button-icon {
    position: static;
}








