:root {
    --mainBackGroundColor: #fff;
    --mainWidth: 90%;
    --mainMaxWidth: 1280px;
    --mainMinWidth: 500px;
    --headerHeight: 80px;
    --mainTop: 100px;
    --mainPadding: 0px;
    --fontFamily: 'EB Garamond','Poppins', sans-serif;
    --fontSize: 1.1512rem;
    --fontLineHeight: 1.625;
    --linkColor: #000;
    --titleWidth: auto;
    --titleMargin: 0;
    --floatRight: right;
    --floatLeft: left;
    --menuItemAlign: center;
    --menuItemMarginBottom: 0;
    --menuItemMarginLeft: -13px;
    --menuItemLinkMargin: 0 0 0 25px;
    --columnWidth: 50%;
    --columnBWidth: 100%;
    --columnFlex: 1 1 calc(50% - 40px);
    --columnFlex2: 1 4 calc(25% - 20px);
    --columnMaxWidth: calc(50% - 40px);
    --columTitleFontSize: 24px;
    --columTitleMargins: 7px 0 13px 0;
    --displayMobile: none;
    --displayDesktop: block;
    --subMenuMargin: 0px 0 50px 0px;
    --subMenuAlign: center;
    --columBImgWidth: 50%;
    --columBImgMargin: 50px;
    --columBImgFloat: left;
    --footerItemmWidth: auto;
    --iconWidth: 30px;
    --shareTop: 7px;
    --sectionBackgRoundColor: #FBF7F4;
    --sectionPadding: 25px;
    --labelInputWidth: calc(100% - 235px);
    --summaryMargins: 13px 0 0 24px;
    --autoWidth: auto;
    --videoPromoWidth: calc(100% - 26px);
    --videoProductMaxWidth: 350px;
    --categoriesMargin: 0 7px 0 7px;
    --categoryWidth: 20%;
    --categoriesSetionMargins: 25px 0 0 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 90%;
}

body {
    background-color: var(--mainBackGroundColor);
    font-family: var(--fontFamily);
    font-size: var(--fontSize);
    line-height: var(--fontLineHeight);
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: var(--linkColor);
}

main, footer {
    margin: auto;
    width: var(--mainWidth);
    max-width: var(--mainMaxWidth);
    min-width: var(--mainMinWidth);
}

header {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: var(--mainWidth);
    max-width: var(--mainMaxWidth);
    justify-content: space-between;
    top: 0;
    height: var(--headerHeight);
    display: table;
    padding: 13px 13px;
    z-index: 1000;
    background-color: var(--mainBackGroundColor);
}

a.title, .title {
    display: table;
    background-color: #AF8D54;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    border-radius: 25px;
    padding: 7px 25px 3px 13px;
    float: var(--floatLeft);
    width: calc(var(--titleWidth) - var(--titleMargin));
    margin-left: var(--menuItemMarginLeft);
    margin-bottom: var(--menuItemMarginBottom);
}

    a.title img, .title img {
        height: 36px;
        margin-right: 13px;
    }

    .title a {
        color: #fff;
    }

.logo {
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 0px;
}

nav {
    text-align: right;
    float: var(--floatRight);
}

ul.menu {
    list-style: none;
    display: flex;
    height: calc(var(--headerHeight) - 26px);
}

    ul.menu li {
        display: flex;
        align-items: var(--menuItemAlign);
        font-size: 16px;
    }

ul.menuM {
    display: table;
    width: 100%;
    list-style: none;
    height: calc(var(--headerHeight) - 26px);
}

    ul.menuM li {
        display: table;
        width: 100%;
        text-align: right;
        margin-bottom: 13px;
        font-size: 14px;
    }

    ul.menu a, ul.menuM a {
        margin: var(--menuItemLinkMargin);
        color: #000;
        text-transform: uppercase;
        font-size: 14px;
    }


main {
    margin-top: var(--mainTop);
    padding: var(--mainPadding);
    flex: 1;
    margin-top: var(--mainTop);
}

footer {
    margin-top: 50px;
    padding: var(--mainPadding);
    border-top: solid 1px #dcdcdc;
}

h1 {
    font-size: clamp(16px, 11vw, 3.4rem);
    line-height: 1.2;
    text-transform: capitalize;
    margin-bottom: 25px;
}

h2 {
    font-size: clamp(16px, 6vw, 2rem);
    line-height: 1.2;
    text-transform: capitalize;
    margin-bottom: 25px;
}

h3 {
    margin-top: 25px;
}

em {
    font-style: normal;
    display: block;
    text-transform: none;
    width: 100%;
    color: #000;
    font-size: var(--fontSize);
    line-height: var(--fontLineHeight);
}

.articles {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 25px 0 0 0;
}

a.column {
    width: var(--columnWidth);
    overflow: hidden;
    border-radius: 7px;
    flex: var(--columnFlex);
    max-width: var(--columnMaxWidth);
    min-width: 250px;
}

a.columnB {
    width: var(--columnBWidth);
    overflow: hidden;
    border-radius: 7px;
    margin: 75px 0 75px 0;
}

    a.column b, a.columnB b {
        font-size: var(--columTitleFontSize);
        display: table;
        margin: var(--columTitleMargins);
    }

img.article {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 7px;
    transition: transform 1s ease-in-out;
}

.columnB img.article {
    width: var(--columBImgWidth);
    float: var(--columBImgFloat);
    margin-right: var(--columBImgMargin);
}

img.articleBig {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 7px;
    margin: 25px 0 25px 0;
}

a.column div {
    width: 98%;
}

img.article:hover {
    transform: scale(1.05); /* Slightly increase the size by 5% on hover */
    border-radius: 7px;
    max-height: 400px;
}

section, aside {
    display: table;
    width: 100%;
    margin-top: 50px;
    font-size: var(--fontSize);
    line-height: var(--fontLineHeight);
    border-radius: 13px;
}

.sectionColor {
    position: relative;
    background-color: var(--sectionBackgRoundColor);
    margin: auto;
    margin-bottom: 50px;
    width: 50%;
    padding: var(--sectionPadding);
    border-radius: 13px;
}
.sectionWhite {
    position: relative;
    background-color: #fff;
    margin: 0 auto 24px auto;
    margin-bottom: 13px;
    padding:0;
    width: 50%;
    border-radius:0;
}
div.share {
    position:relative;
    width:100%;
    font-weight:bold;
    text-align:left;
    padding:0;
    
}
    div.share svg {
        position: relative;
        width: var(--iconWidth);
        margin-bottom: -5px;
    }

section ul, section ol {
    margin-left: 20px;
}

a.cta, button[type="submit"].cta {
    border-radius: 13px;
    padding: 7px 25px 7px 25px;
    color: #fff;
    background-color: #AF8D54;
    text-decoration: none;
    margin-top: 13px;
    display: table;
    width: var(--autoWidth);
    margin-right: 13px;
    border-radius: 7px;
    text-align: center;
}

section a.cta, section button[type="submit"].cta {
    margin-top: 24px;
    width: auto;
    margin: auto;
}

section button[type="submit"].cta {
    padding: 7px 13px 7px 13px;
    font-size: 18px;
}

article, .form {
    max-width: 760px;
    margin: auto;
}

.author {
    display: table;
    width: 100%;
    margin: 13px 0 13px 0px;
    padding: 13px 0 13px 0;
    border-bottom: solid 1px #DCDCDC;
    border-top: solid 1px #DCDCDC;
}

    .author a {
        font-weight: bold;
    }

.submenu {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin: var(--subMenuMargin);
    border-bottom: solid 1px #DCDCDC;
    border-top: solid 1px #DCDCDC;
}

.mt50 {
    margin-top: 50px;
}

.cell {
    flex: var(--columnFlex2);
    padding: 7px 0 7px 0;
    text-align: var(--subMenuAlign);
    align-items: center;
    justify-content: center;
}

.submenu a {
    color: #666;
    text-transform: uppercase;
}

article em, article section {
}

ul.keytakeaways li, .toc li, article ol li, article ul li, section ul li {
    margin-bottom: 13px;
}

    section ul li a {
        border-bottom: dotted 1px #000;
    }

article ol, article ul {
    margin-top: 25px;
    margin-bottom: 25px;
}

q {
    display: table;
    width: 90%;
    padding-left: 5%;
    border-left: solid 5px #000;
    margin: 25px 0 25px 0;
    quotes: none;
}

.gridstories {
    flex-basis: 100%;
    margin-bottom: 75px;
    margin-top: 50px;
    border: none;
}

.stories {
    flex: 0 0 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: var(--radiusBig);
    background-color: var(--backgroundColor);
}

.carousel {
    display: inline-block;
    height: auto;
    min-height: 330px;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    border-radius: var(--cardRadius);
    background-color: var(--backgroundColor);
}

.mobile {
    display: var(--displayMobile);
}

.desktop {
    display: var(--displayDesktop);
}

summary {
    font-weight: bold;
    font-size: 14px;
    text-align: right;
}

details.lang {
    float: right;
    width: auto;
    margin-left: 0;
    margin-top: 3px;
    text-align: center;
    top: 0;
}

    details.lang > summary {
        cursor: pointer;
        display: inline-block;
        text-transform: uppercase;
        font-size: 16px;
        margin: var(--summaryMargins);
        text-align: right;
    }

    details.lang div {
        position: absolute;
        top: 100%; /* place directly below summary */
        right: 0; /* align right edge with summary */
        z-index: 9999;
        font-size: 14px;
        display: table;
        background: white; /* optional: set background */
        box-shadow: 0 2px 8px rgba(0,0,0,0.15); /* optional: make it look nice */
        margin-top: -15px;
        padding-top: 13px;
    }

    details.lang > div li a {
        font-weight: normal;
        font-size: 14px;
        text-align: right;
        margin-right: 13px;
    }

.video {
    position: relative;
}

.play {
    position: absolute;
    display: block;
    top: calc(50% - 80px);
    left: calc(50% - 18px);
    height: auto;
    width: auto;
    font-size: 80px;
    color: #fff;
    text-shadow: 0 0 .5em #000;
    z-index: 999;
    text-align: center;
}

.articleLogo {
    border-radius: 50%;
    padding: 24px 13px 0 13px;
}

div.searchA {
    position: relative;
    display: table;
    margin: auto;
    width: auto;
    min-width: 100%;
    text-align: center;
    padding: 24px 0 24px 0;
}

    div.searchA .input {
        width: 40%;
        margin-top: 6px;
        padding: 7px;
        margin-bottom: 13px;
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        border: 1px solid #cecece;
        font-size: 1em;
        font-weight: normal;
        color: #000;
    }

footer ul {
    margin-top: 25px;
    list-style: none;
}

    footer ul li {
        width: var(--footerItemmWidth);
        float: left;
        margin-right: 25px;
        margin-bottom: 13px;
    }

.articleImg {
    width: 100%;
    height: auto;
}

#progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    right: 0;
    height: 5px;
    background-color: #FBF7F4;
    z-index: 2000;
}

#progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #FBF7F4, yellow);
    transition: width 0.25s ease-out;
}

.share {
    float: right;
    width: var(--iconWidth);
    margin-top: var(--shareTop);
}

div.error, div.success {
    position: relative;
    display: table;
    width: calc(100% - 26px);
    padding: 7px 13px 7px 13px;
    border-radius: 13px;
    margin-bottom: 13px;
}

div.error {
    background-color: #C2185B;
    color: #fff;
}

div.success {
    background-color: #00BA7C;
    color: #fff;
}

input, textarea, select {
    position: relative;
    padding: 7px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border: solid 1px #cecece;
    font-size: 1rem;
    resize: none;
    overflow: hidden;
}

textarea {
    font-family: var(--fontFamily);
    font-size: 1rem;
    color: #000;
    line-height: 1.4rem;
}

label {
    display: table;
    width: 100%;
    margin-bottom: 7px;
}

    label span {
        float: left;
    }


    label input, label textarea, label select {
        float: right;
        width: var(--labelInputWidth);
    }

a.lnk {
    border-bottom: dotted 1px #000;
}

.product-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 24px;
}

.product-card {
    display: flex;
    float: left;
    justify-content: space-between;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    flex: 1 1; /* 5 cards per row */
    max-width: calc(50% - 12px);
    min-width: 300px;
    background-color: #fff;
    color: #333; /* Adjust text color as needed */
    padding: 20px; /* Spacing inside the card */
    border: 1px solid #ddd; /* Optional border */
    border-radius: 8px; /* Rounded corners */
    transition: box-shadow 0.3s ease;
}

    .product-card b {
        text-align: left;
        margin-top: 13px;
    }

    .product-card .info {
        text-align: left;
        margin-top: 0;
        color: #000;
        font-size: smaller;
        width: 75%;
    }

    .product-card .lang {
        height: 18px;
        width: 18px;
        border-radius: 50%;
        float: left;
        border: solid 3px #000;
        margin-top: 4px;
        margin-right: 7px;
    }

    .product-card img {
        width: 100%;
        height: auto;
        display: table;
    }

.desktop .menu a.lang {
    font-size: 14px;
    font-weight: bold;
}

.w50 {
    float: left;
    width: 50%;
    border: solid 10px #fff;
    border-radius: 13px;
}

header .lang .icon {
    float: right;
    font-size: 30px;
    margin-top: -7px;
}

.centerLanguages {
    margin: auto;
    margin-bottom: 13px;
}

    .centerLanguages a {
        text-align: right;
    }

.colLeft {
    float: left;
    width: 55%;
}

.colRight {
    float: left;
    margin-left: 24px;
    width: 35%;
    padding-bottom: 24px;
    vertical-align: middle;
    height: 100%;
}

.videoPromo {
    position: relative;
    width: var(--videoPromoWidth);
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
    padding: 13px;
    border: solid 1px #ddd;
    border-radius: 13px;
}

.videoProduct {
    position: relative;
    max-width: var(--videoProductMaxWidth);
    aspect-ratio: 9 / 16;
    display: block;
    object-fit: cover;
    border-radius: 13px;
    margin: auto;
}

.videoExplanation {
    position: relative;
    position: relative;
    float: left;
    width: 100%;
    max-width: var(--videoProductMaxWidth);
    aspect-ratio: 9 / 16;
    display: block;
    object-fit: cover;
    border-radius: 13px;
}

.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    background: #fff;
}

    .search-box input {
        border: none;
        padding: 10px 15px;
        flex: 1;
        outline: none;
        font-size: 14px;
        border-radius: 13px 0 0 13px;
    }

    .search-box button {
        background: none;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
        font-size: 16px;
        color: #555;
        border-radius: 0 13px 13px 0;
    }

.sectionCategories {
    margin: var(--categoriesSetionMargins);
}

    .sectionCategories a {
        margin: 0 25px 0 25px;
        color: #000;
        border-bottom: dotted 1px #000;
    }


.green {
    color: #009164;
}

div.productActions {
    display: table;
    position: relative;
}

ul.categories {
    list-style-type: none;
    display: table;
    width: auto;
    margin: auto;
    text-align: center;
}

    ul.categories li {
        min-width: var(--categoryWidth);
        margin: var(--categoriesMargin);
        margin-bottom: 13px;
        float: left;
    }

div.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 50px;
}

img.hero {
    width: 100%;
    border-radius: 7px;
}


.subtitle {
    position: absolute;
    display: table;
    font-size: 66px;
    color: #fff;
    left: 50px;
    z-index: 999;
    font-weight: bold;
    width: 40%;
    line-height: 66px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}



.instagram-media {
    position: relative;
    width: 100%;
}

.flex-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.column {
    flex: 1 1 calc((100% - 40px) / 3); /* 3 columns with 20px gaps */
}

.small {
    font-size: 14px;
}

@media only screen and (min-device-width :279px) and (max-device-width :767px) {
    :root {
        --mainBackGroundColor: #fff;
        --headerBackGroundColor: #FBF7F4;
        --mainWidth: 98%;
        --mainMaxWidth: 98%;
        --mainMinWidth: 98%;
        --headerHeight: 0px;
        --mainTop: 85px;
        --mainPadding: 20px;
        --fontFamily: 'EB Garamond','Poppins', sans-serif;
        --fontSize: 1.02em;
        --line-height: 1.6em;
        --titleMargin: 1%;
        --titleWidth: 100%;
        --floatLeft: left;
        --floatRight: right;
        --MItemAlign: left;
        --menuItemMarginBottom: 25px;
        --menuItemMarginLeft: 0px;
        --menuItemLinkMargin: 0 13px 0 13px;
        --columnWidth: 100%;
        --columTitleFontSize: 1.126rem;
        --columTitleMargins: 7px 0 13px 0;
        --columnFlex: 1;
        --columnFlex2: 1 2 calc(50% - 20px);
        --columnMaxWidth: 100%;
        --displayMobile: block;
        --displayDesktop: none;
        --subMenuMargin: 25px 0 0px 0px;
        --subMenuAlign: center;
        --columBImgWidth: 100%;
        --columBImgMargin: 0px;
        --columBImgFloat: unset;
        --footerItemmWidth: 100%;
        --iconWidth: 24px;
        --shareTop: -1px;
        --sectionBackgRoundColor: #FBF7F4;
        --sectionPadding: 25px;
        --labelInputWidth: 100%;
        --summaryMargins: -50px 0 0 24px;
        --autoWidth: 100%;
        --videoPromoWidth: 100%;
        --videoProductMaxWidth: 100%;
        --categoriesMargin: 0 0 13px 0;
        --categoryWidth: 50%;
        --categoriesSetionMargins: 25px 0 0 0;
    }

    .product-card {
        flex: 1; /* 5 cards per row */
        max-width: calc(100% - 25px);
        min-width: 100%;
    }

    .desktop .lang {
        display: none;
    }

    .colRight, .colLeft {
        float: left;
        margin-left: 0;
        width: 100%;
    }

    .sectionColor, .sectionWhite {
        width: 100%;
    }

    .column {
        flex: 1 1 100%; /* default: 1 per row */
    }

    img.hero {
        width: 100%;
        height: 500px;
        object-fit: cover;
        object-position: center;
    }

    .subtitle {
        width: 80%;
        left: 10%;
        font-size: 2.6rem;
        line-height: 2.6rem;
    }

        .subtitle h1 {
            font-size: 1.8rem;
            width: 80%;
        }

    div.title a {
        margin-top: 13px;
        font-size: 24px;
    }
}
