@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap');
/* ---------------------- Variables & General ---------------------- */
:root {
    --max-width: 95%;
    --content-basic-width: 1300px;
    --primary-lighter: #A18D72;
    --alt-font-family: 'Bitter', sans-serif;

    /* C7 Overrides */
    --c7-page-width: var(--content-basic-width);
    --c7-font-family: 'DM Sans', sans-serif;
    --c7-body-text-color: #42403E;
    --c7-alt-text-color: #696663;
    --c7-font-size: 18px;
    --c7-font-size-sub: 16px;
    --c7-heading-font-family: 'DM Sans', sans-serif;
    --c7-heading-text-color: #221F1C;
    --c7-primary-color: #7C6950;
    --c7-primary-color-text: #7C6950;
    --c7-primary-color-dark: #5A4E3F;
    --c7-primary-color-focus: rgba(132, 97, 69, 0.25);
    --c7-bg-alt: #F7F5F3;
    --c7-border-color: #E7E6E4;
    --c7-border-radius: 2px;
    --c7-border-radius-large: 8px;
    --c7-info-bg: var(--c7-bg-alt);
    --c7-field-border-radius: 2px;
    --c7-field-border-color: #CAC8C4;
    --c7-button-border-radius: 0;
    --c7-header-text-color: var(--c7-body-text-color);
    --c7-cart-count-bg: var(--primary-lighter);
    --c7-pill-bg: #f1edea;
}

/* ---------------------- General ---------------------- */
body {
    position: relative;
}

    .body--fixed {
        max-height: 100vh;
        overflow: hidden;
    }

h1 {
    font-size: 46px;
}

h1 {
    text-align: center;
    margin: 20px 0 50px;
}

.h1 {
    color: var(--c7-heading-text-color);
    font-weight: var(--c7-heading-font-weight);
    font-size: 46px;
    line-height: 1.2;
}

.c7-account h1,
.c7-product-detail h1,
.homepage__personal h1 {
    text-align: left;
    margin: 10px 0 20px;
}

.c7-receipt__header__content h1 {
    text-align: center;
}

.c7-content--checkout h1 {
    text-align: left;
    margin: 0 0 20px;
}

h2, .c7-modal__content h1, .c7-modal__header h1 {
    font-size: 34px;
}

h2, .c7-modal__content h1 {
    margin-bottom: 25px;
}

.h2 {
    color: var(--c7-heading-text-color);
    font-size: 34px;
    font-weight: var(--c7-heading-font-weight);
    line-height: 1.2;
}

h3, .c7-modal__content h2, .c7-account-dashboard__block__header__title h2 {
    font-size: 26px;
}

h4, .c7-modal__content h3, .c7-club-summary__title, .c7-reservation-summary__title {
    font-size: 22px;
}

h5, .c7-account-block__title, .c7-checkout__review-block h2 {
    font-size: 20px;
}

p:not(.h-alt) + h1, p:not(.h-alt) + h2 {
    margin-top: 30px;
}

.h-alt {
    color: var(--c7-primary-color);
    font-size: 22px;
    margin-bottom: 10px;
    font-family: var(--alt-font-family);
    font-style: italic;
}

.h-alt + h1 {
    margin: 0 0 20px;
}

.number--large {
    color: var(--primary-lighter);
    font-size: 48px;
    font-style: italic;
    font-family: var(--alt-font-family);
    line-height: 1.4;
    margin-bottom: 0;
}

hr {
    border: 1px solid var(--c7-border-color);
    margin: 40px 0;
}

.alt-bg {
    background: var(--c7-bg-alt);
}

.alt-bg--texture {
    background: var(--c7-bg-alt) url(../images/bg-texture.jpg) repeat;
}

a {
    color: var(--c7-link-color);
    text-decoration: none;
}

a.link--hover {
    position: relative;
}

    a.link--hover::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -7px;
        background: var(--primary-lighter);
        width: 0;
        height: 1px;
        -webkit-transition: width 0.2s linear;
        -o-transition: width 0.2s linear;
        transition: width 0.2s linear;
    }

    a.link--hover svg {
        stroke: var(--c7-link-color);
        margin-left: 9px;
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

    a.link--hover:hover, a.link--hover:focus, a.link--hover:active {
        text-decoration: none;
    }

    a.link--hover:hover::after, a.link--hover:focus::after, a.link--hover:active::after {
        width: 100%;
    }

    a.link--hover:hover svg, a.link--hover:focus svg, a.link--hover:active svg {
        -webkit-transform: translateX(4px);
        -ms-transform: translateX(4px);
        transform: translateX(4px);
    } 

/* ---------------------- Header ---------------------- */
body > header {
    background: var(--c7-bg);
    position: relative;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
}

body > header .header-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 20px;
    margin: 0 auto; 
    -webkit-transition: background 0.1s ease;
    -o-transition: background 0.1s ease;
    transition: background 0.1s ease;
}

    .skip-link {   
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translate(-50%, -100%);
        -ms-transform: translate(-50%, -100%);
        transform: translate(-50%, -100%);
    }

        .skip-link:focus {
            -webkit-transform: translate(-50%, 0);
            -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);    
        }

    .logo img {
        width: 250px;
        -webkit-transition: width 0.2s ease;
        -o-transition: width 0.2s ease;
        transition: width 0.2s ease; 
    }

    header.header--fixed {
        position: fixed;
    }

    header.header--scroll {
        position: fixed;
        background: rgba(255,255,255,0.9);
        box-shadow: 0 0 5px rgba(0,0,0,0.1);
        width: 100%;
    }

        header.header--scroll .header-wrapper {
            padding: 20px;
        }

        header.header--scroll .logo img {
            width: 200px;
        }

    .header__menu ul {
        margin: 0;
        padding: 0;
    }

        .header__menu li {
            list-style-type: none;
        }

        .header__menu a {
            color: var(--c7-header-text-color);
            text-decoration: none;
        }

    .header__menu button {
        opacity: 0;
        display: none;
        visibility: hidden;
    }

    .c7-user-nav {
        min-width: 110px;
    }

    .c7-user-nav > div {
        display: inline-block;
    }

    .header__menu-toggle {
        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .header__menu-toggle svg {
        width: 26px;
        height: 21px;
        stroke-width: 1.3;
    }

/* ---------------------- Homepage ---------------------- */
.banner.banner--homepage {
    background-image: url(/assets/images/home-banner.jpg);
    height: 650px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .banner__overlay-content {
        position: relative;
        margin-top: auto;
        margin-bottom: 40px;
        text-align: center;
        z-index: 1;
    }

        .banner__overlay-content .h1 {
            font-size: 56px;
        }

        .banner__overlay-content p {
            font-size: 26px;
            font-weight: bold;
        }

        .banner__overlay-content .h1,
        .banner__overlay-content p {
            color: #fff;
            text-shadow: 0 2px 10px rgb(0 0 0 / 60%);
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

    .banner__button {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background: rgb(255 255 255 / 70%);
        border-radius: 50%;
        width: 60px;
        height: 60px;
        margin: auto auto 40px;
        z-index: 1;
        -webkit-transition: -webkit-transform 0.2s ease-in-out;
        transition: -webkit-transform 0.2s ease-in-out;
        -o-transition: transform 0.2s ease-in-out;
        transition: transform 0.2s ease-in-out;
        transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    }

        .banner__button:hover, .banner__button:focus, .banner__button:active {
            -webkit-transform: translateY(8px);
            -ms-transform: translateY(8px);
            transform: translateY(8px);
        }

.homepage main {
    overflow: hidden;
}

.homepage__personal .c7-personalization__content {
    margin-bottom: 0;
}

.homepage__personal .c7-personalization__content + .c7-product-collection {
    min-width: 60%;
}

.c7-personalization .c7-order-items ul {
    display: grid;
}

/* Products */
.homepage__personal .c7-product-collection h2 {
    display: none;
}

    .homepage__personal .c7-product-collection__product-list {
        margin-bottom: 20px;
    }

    .homepage__personal .c7-product-collection .c7-product {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    .homepage__personal .c7-product-collection .c7-product__image {
        margin: 0 0 30px 0;
    }

    .homepage__personal .c7-product-collection .c7-product__image img {
        max-height: 325px;
    }

    .homepage__personal .c7-product-collection .c7-product__add-to-cart__form {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .homepage__personal .c7-product-collection .c7-product .c7-radio {
        display: block;
        text-align: center;
    }

        .homepage__personal .c7-product-collection .c7-product .c7-radio__control {
            margin-top: 0;
        }

/* Club Shipment */
.homepage__personal .c7-account-dashboard__block {
    border: 0;
    box-shadow: none;
    padding: 0;
}

.homepage__personal .c7-account-dashboard__block__header {
    padding: 0;
    border: 0 !important;
    margin-bottom: 40px;
}

.homepage__personal .c7-account-dashboard__block__header__title h2 {
    font-size: 34px;
}

.homepage__personal .c7-account-dashboard__block .c7-shipment-items {
    padding: 0;
}

.homepage__personal .c7-account-dashboard__block .c7-shipment-item__image img {
    max-height: 250px;
}

.homepage__personal .c7-shipment-item__title {
    color: var(--c7-heading-text-color);
    font-weight: var(--c7-heading-font-weight);
    font-size: 20px;
    margin-bottom: 5px;
}

/* Content Blocks */
.homepage__content-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 60px;
    padding: 80px 0;
}

    .homepage__content-block > div {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    /* Content */
    .homepage__content-block__content  {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

        .homepage__content-block h1 {
            text-align: left;
        }

        .homepage__content-block__content p {
            max-width: 700px;
        }

    /* Image */
    .homepage__content-block__visual {
        position: relative;
    }

        .homepage__content-block__visual__image {
            background: no-repeat center / cover;
            height: 500px;
            width: 100%;
            max-width: 100%;
        }

            .homepage__content-block:nth-of-type(1) .homepage__content-block__visual__image {
                background-image: url(../images/home-clubs.jpg);
            }
        
            .homepage__content-block:nth-of-type(2) .homepage__content-block__visual__image {
                background-image: url(../images/home-tastings.jpg);
            }

        .homepage__content-block__visual__box {
            background: var(--c7-bg-alt);
            position: absolute;
            top: -20px;
            left: -40px;
            z-index: -1;
            height: 90%;
            width: 120%;
            max-width: 100%;
        }

/* ---------------------- Content ---------------------- */
.wide-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper {
    max-width: 1400px; 
    margin: 0 auto;
    padding: 80px 20px;
}

    .c7-content {
        padding: 0;
    }

.banner {
    background: url(/assets/images/home-banner.jpg) center/cover no-repeat;
    height: 350px; 
    position: relative;
}

.banner-content {
    background: var(--c7-bg);
    padding: 60px 20px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

    .banner-content .h-alt {
        text-align: center;
    }

    .banner-content + .alt-bg {
        margin-top: 60px;
    }

    .banner-content .intro {
        color: var(--c7-alt-text-color);
        max-width: 1050px;
        margin: 0 auto 60px;
        text-align: center;
    }

    .banner-content + .content-wrapper {
        padding-top: 20px;
    }

.block--center, .block--center h1, .block--center h2, .block--center .h-alt, .block--center p {
    text-align: center;
}

/* ---------------------- Forms ---------------------- */
.c7-form input[type="text"], .c7-form input[type="email"], .c7-form input[type="number"], .c7-form input[type="tel"], .c7-form input[type="username"], .c7-form input[type="password"], .c7-cart-item input, .c7-form select, .c7-cart-item select {
    height: 49px;
}

/* ---------------------- Products ---------------------- */
/* General */
.c7-product__add-to-cart__form__quantity {
    margin-right: 5px;
}

/* List */
.c7-product-collection h1 {
    text-align: center;
}

.c7-product-collection__product-list {
    margin: 60px 0 120px;
}

    .c7-product-collection .c7-product__title, .c7-club-product__details__title {
        font-size: 24px;
    }

    .c7-product-collection .c7-product__teaser {
        font-size: 90%;
        line-height: 1.5;
        max-width: 550px;
    }

/* Detail */
.c7-layout__product-detail main {
    position: relative;
    padding: 60px 0;
}

.product-detail__box {
    background: var(--c7-bg-alt);
    position: absolute;
    width: 100%;
    height: 500px;
    top: 0;
    left: 0;
    z-index: -1;
}

/* ---------------------- Clubs ---------------------- */
.banner--club {
    background-image: url(../images/club-banner.jpg);
} 

.club #c7-content .c7-content > h1 {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.c7-club-list h2 {
    font-size: 26px;
}

.club__benefits svg {
    fill: var(--primary-lighter);
    margin-bottom: 10px;
    width: 40px;
    height: 45px;
}

.club__questions h2, .club__questions .h-alt {
    text-align: center;
}

.club__questions h2 {
    margin-bottom: 60px;
}

.c7-custom-form h1 {
    display: none;
}

.c7-form .c7-account__profile p {
    text-align: left;
}

/* ---------------------- Reservations ---------------------- */
.banner--visit {
    background-image: url(/assets/images/visit-banner.jpg);
    background-position: center bottom;
}

.visit__experiences .c7-column p:not(.number--large) {
    font-size: 90%;
}

.visit__booking > h2 {
    text-align: center;
}

/* ---------------------- Account ---------------------- */
.c7-user-nav__account__dropdown li a:hover, .c7-user-nav__account__dropdown li a:focus, .c7-user-nav__account__dropdown li a:active, .c7-link.c7-user-nav__account__dropdown__logout:hover, .c7-link.c7-user-nav__account__dropdown__logout:focus, .c7-link.c7-user-nav__account__dropdown__logout:active {
    background-color: var(--c7-bg-alt);
}

.c7-account__header {
    padding: 100px 0 80px;
}

    .c7-account__header p:first-of-type {
        font-size: 42px;
    }

.c7-account__menu {
    margin-bottom: 60px;
}

.c7-account h1 {
    font-size: 42px;
}

.c7-account h2 {
    font-size: 32px;
}

.c7-order-details h2, .c7-order-items h2 {
    font-size: 26px;
}

.c7-back::before {
    content: url('data:image/svg+xml; utf8, <svg aria-hidden="true" focusable="false" role="presentation" width="16" height="16" viewBox="0 0 24 24" stroke="%236D4F36" stroke-width="2" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 19L3 12M3 12L10 5M3 12L21 12" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

/* ---------------------- Checkout ---------------------- */
.c7-callout {
    font-size: 16px;
}

/* ---------------------- Subscribe ---------------------- */
.footer__subscribe .c7-personalization {
    background: var(--c7-bg-alt) url(../images/bg-texture.jpg) repeat;
    padding: 80px 20px;
}

    .footer__subscribe .c7-personalization__content {
        max-width: var(--content-basic-width);
        margin: 0 auto;
    }

    .footer__subscribe .c7-personalization__content > p {
        margin-bottom: 10px;
    }

.footer__subscribe .c7-form {
    margin: 40px auto 0;
    text-align: left;
}

    .footer__subscribe .c7-form__group {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

/* ---------------------- Footer ---------------------- */
.footer {
    padding-top: 80px;
}

    .profile .footer {
        border-top: 1px solid var(--c7-border-color);
        margin-top: 80px;
    }

.footer .logo {
    max-width: 200px;
}

.footer ul {
    margin: 0;
    padding: 0;
}

    .footer li {
        list-style-type: none;
        display: inline-block; 
    }
    
    .footer li:not(:last-of-type){
        margin-right: 10px;
    }

    .footer a {
        display: block;
        color: var(--c7-alt-text-color);
        padding: 5px 0;
    }

.footer__info {
    margin: 60px 0;
}

    .footer__info__group {
        margin-bottom: 40px;
    }

    .footer__info__group__title {
        color: var(--c7-heading-text-color);
        font-weight: bold;
        margin-bottom: 10px;
    }

    .footer__info__group--social svg {
        stroke: none;
        width: 24px;
        height: 24px;
    }

    .footer .footer__info__group--social li:not(:last-of-type){
        margin-right: 30px;
    }

ul.footer__legal {
    font-size: 90%;
    margin: 20px 0;
}

/* ---------------------- Responsive ---------------------- */
@media screen and (min-width: 1201px){
    /* Header */
    .header__menu li:not(:last-child) {
        margin-right: 40px;
    }

    /* Footer */
    .footer__info__group:not(:last-of-type){
        min-width: 225px;
    }

    .footer__info__group:last-of-type {
        margin-left: auto;
    }
}

@media screen and (min-width: 1401px) {
    .banner-content {
        margin-top: -150px;
    }

    /* Home - Content Blocks */
    .homepage__content-block:nth-of-type(1) .homepage__content-block__visual__image {
        width: 650px;
        height: 525px;
    }

    .homepage__content-block:nth-of-type(2) .homepage__content-block__visual__image {
        width: 500px;
        height: 600px;
        margin: 0 auto;
    }

    .homepage__content-block__content {
        margin-left: 80px;
    }
}

@media screen and (min-width: 1601px) {
    .content-wrapper {
        max-width: 1600px;
    }

    /* Home - Products */
    .homepage__personal .c7-personalization__content {
        min-width: 520px;
        -webkit-box-flex: 1 0;
        -ms-flex: 1 0;
        flex: 1 0;
    }

    .homepage__personal .c7-product-collection {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

@media screen and (min-width: 2001px) {
    .banner {
        height: 400px;
    }
}

@media screen and (min-width: 1001px){
    /* Header */
    body > header .header-wrapper {
        max-width: var(--max-width);
    }

    .header__menu {
        margin-left: auto;
        margin-right: 40px;
    }

        .header__menu li {
            display: inline-block;
        }

        .header__menu li:not(:last-child) {
            margin-right: 20px;
        }

    .mobile-menu-only {
        display: none;
        opacity: 0;
        visibility: hidden;
    }
}

@media screen and (max-width: 1000px){
    /* Header */
    body > header .header-wrapper {
        margin-top: 54px;
    }

    .banner {
        height: 250px;
    }

    .c7-user-nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        border-bottom: 1px solid var(--c7-border-color);
        padding: 0 20px;
    }

    .header__menu {
        position: absolute;
        right: 0;
        top: 55px;
        background: var(--c7-bg);
        width: 100%;
        height: 100vh;
        padding: 20px 10px;
        z-index: 100;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: -webkit-transform 0.2s ease;
        transition: -webkit-transform 0.2s ease;
        -o-transition: transform 0.2s ease;
        transition: transform 0.2s ease;
        transition: transform 0.2s ease, -webkit-transform 0.2s ease;
        overflow-y: auto;
    }

        .header__menu nav {
            opacity: 0;
            display: none;
            visibility: hidden;
        }

        .header__menu li a {
            display: block;
            margin-right: 50px;
            padding: 10px 20px;
        }

        .header__menu button {
            cursor: pointer;
            position: absolute;
            top: 25px;
            right: 25px;
            background: transparent;
            border: 0;
            z-index: 1;
        }

            .header__menu button svg { 
                stroke: var(--c7-alt-text-color);
            }

    .nav--open {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    /* Home - Content Blocks */
    .homepage__content-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 60px 0;
    }
}

@media screen and (min-width: 769px) {
    .mobile-only {
        display: none;
        opacity: 0;
        visibility: hidden;
    }

    .visit__experiences .c7-columns > *:not(:last-child) {
        margin-right: 60px;
    }

    /* Home - Products */
    .homepage .c7-personalization .c7-product-collection__list {
        display: grid;
        -ms-grid-columns: 1fr 60px 1fr 60px 1fr;
        grid-template-columns: 1fr 1fr 1fr;
        -webkit-column-gap: 60px;
        -moz-column-gap: 60px;
        column-gap: 60px;
    }

    /* Home - Content Blocks */
    .homepage__content-block__content  {
        margin-bottom: 100px;
    }

    .homepage__content-block:nth-of-type(1) .homepage__content-block__visual__box {
        left: -100px;
    }

    .homepage__content-block:nth-of-type(2) .homepage__content-block__visual__box {
        top: 40%;
        left: 10%;
        height: 45%;
    }

    /* Products */
    .c7-product-collection .c7-product__image {
        margin-right: 60px;
    }

    .c7-product-collection__products--featured .c7-product__image {
        margin-right: 35px;
    }

    .c7-product-collection__products--featured--3up .c7-product__image {
        margin-right: 20px;
    }

    /* Footer */
    .footer__info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 40px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .c7-product-collection .c7-product__image img {
        max-height: 400px;
    }
}

@media screen and (max-width: 800px){
    /* Header  */
    header:not(.c7-checkout__header) {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }   

    .logo img {
        max-width: 200px;
    }
}

@media screen and (max-width: 768px) {
    /* Home - Products */
    .homepage__personal .c7-product-collection .c7-product__image img {
        max-height: 300px;
    }
}

@media screen and (min-width: 481px){
    /* Dashboard */
    .c7-account-dashboard .c7-order-items ul {
        -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 20px;
    }
}