/*
 * BASE.CSS — Klinker Brick Winery
 *
 * No scoping class required. Apply directly to pages.
 * Load this file FIRST, then style.css for subpage additions.
 *
 * CONTENTS:
 *  1. CSS Custom Properties
 *  2. Utility / Layout
 *  3. Button Base
 *  4. Header — Layout Shell
 *  5. Header — Logo
 *  6. Header — Right Column (utilities   nav)
 *  7. Header — Utility Links (Login / Cart)
 *  8. Header — Nav Container
 *  9. Header — Nav Items & Links
 * 10. Header — Dropdowns & SVG Chevron
 * 11. Header — Mobile Toggle
 * 12. Header — Promo Bar
 * 13. Banner
 * 14. Secondary Menu / Category Nav
 * 15. Footer
 * 16. Site-Specific Overrides
 * 17. Animations
 */


/* ==========================================================================
   1. CSS CUSTOM PROPERTIES
   ========================================================================== */


@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,400;1,700&family=Libre Baskerville:ital,wght@0,400;0,700;1,400&display=swap');



*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

:root {
    --red: #7c211e;
    --white: #ffffff;
    --black: #000000;
    --cream: #fffcf5;
}


/* ==========================================================================
   2. UTILITY / LAYOUT
   ========================================================================== */

.spt-template-width {
    margin: 0 auto;
    max-width: 90rem;
    padding: 0 1rem;
    position: relative;
}

.spt-content {
    margin: 0 auto;
    max-width: 60rem;
    padding: 0 1rem;
    position: relative;
}

.spt-content--wide {
    max-width: 74rem;
    padding: 0 1rem;
    position: relative;
}

.spt-content--narrow {
    max-width: 45rem;
    padding: 0 1rem;
    position: relative;
}

.screen-reader-text,
.no-display,
.visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
}


/* ==========================================================================
   3. BUTTON BASE
   ========================================================================== */

.button {
    border-radius: 0;
    transition: all .2s ease-in;
    padding: .55em 1.5em;
    display: inline-block;
    font-family: "Archivo", sans-serif;
    background-color: transparent;
    border: 2px solid #333;
    color: #333;
    text-transform: uppercase;
    letter-spacing: .035em;
    text-decoration: none;
}

.button:hover {
    text-decoration: none;
    outline: 0;
    background-color: transparent;
    border-color: #000;
    color: #000;
}


/* ==========================================================================
   4. HEADER — Layout Shell
   ========================================================================== */

.sp-header {
    width: 100%;
    position: relative;
    z-index: 20;
    background: var(--cream);
    border-bottom: 0px solid #cecece;
}

@media only screen and (min-width: 64.0625em) {
    .sp-header {
        transition: all 300ms ease-out;
        position: sticky;
        top: 0;
        padding: 0;
    }

    .scrolled .sp-header {
        background: rgba(45, 45, 45, 0.75);
        padding: .5rem 0 5px;
    }
}

.sp-header .spt-template-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem;
}

.feedback {
	display:none;
	}

/* ==========================================================================
   5. HEADER — Logo
   ========================================================================== */

.sp-header__logo {
    width: 200px;
    padding: .75rem 0;
    position: relative;
    flex-shrink: 0;
}

@media only screen and (min-width: 64.0625em) {
    .sp-header__logo {
        width: 300px;
        padding: 0;
        transition: all 300ms ease-out;
    }

    .scrolled .sp-header__logo {
        width: 250px;
        padding: .5rem 0;
    }
}

.sp-header__logo a {
    display: block;
    position: relative;
    font-size: 0;
    line-height: 0;
}

.sp-header__logo a img {
    width: 100%;
    height: auto;
    transition: all 300ms ease-out;
}

/* Alternate (white) logo — hidden by default, shown on scroll */
.sp-header__logo .logo-alternate {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 300ms ease-out;
}

@media only screen and (min-width: 64.0625em) {
    .scrolled .sp-header__logo a img:first-child {
        opacity: 0;
    }

    .scrolled .sp-header__logo .logo-alternate {
        opacity: 1;
    }
}


/* ==========================================================================
   6. HEADER — Right Column (utilities   nav stacked)
   ========================================================================== */

.sp-header__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
    gap: 0rem;
}


/* ==========================================================================
   7. HEADER — Utility Links (Login / Cart)
   ========================================================================== */

.sp-header__utilities {
    display: flex;
    align-items: center;
}

.sp-header__utilities-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
    align-items: center;
    font-family: "Libre Baskerville", serif;
    font-size: .875rem;
    letter-spacing: .05em;
}

.sp-header__utilities-list a {
    color: #333;
    text-decoration: none;
    transition: color 200ms ease-out;
}

.sp-header__utilities-list a:hover {
    color: #000;
}

/* Scrolled: white utility links */
@media only screen and (min-width: 64.0625em) {
    .scrolled .sp-header__utilities-list a {
        color: #eee;
    }

    .scrolled .sp-header__utilities-list a:hover {
        color: #fff;
    }
}



/* ==========================================================================
   8. HEADER — Nav Container
   ========================================================================== */

/* Desktop: horizontal row */
@media only screen and (min-width: 64.0625em) {
    .sp-header__nav-container {
        display: flex;
        align-items: center;
    }
}

/* Mobile: off-canvas slide-in panel */
@media screen and (max-width: 64em) {
    .sp-header__nav-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--cream);
        padding: 4rem 1.5rem 2rem;
        overflow-y: auto;
        z-index: 10;
        transform: translateX(100%);
        transition: transform 300ms ease-out, visibility 300ms ease-out;
        visibility: hidden;
        pointer-events: none;
    }

    .show-mobile-nav .sp-header__nav-container {
        transform: translateX(0);
        visibility: visible;
        pointer-events: all;
    }
}


/* ==========================================================================
   9. HEADER — Nav Items & Links
   ========================================================================== */

/*
 * Target both .navbar-nav (hardcoded / shortcode with class param)
 * and .nav (shortcode default output) so the layout works either way.
 */
.sp-header__nav-container .navbar-nav,
.sp-header__nav-container .nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Desktop: horizontal */
@media only screen and (min-width: 64.0625em) {
    .sp-header__nav-container .navbar-nav,
    .sp-header__nav-container .nav {
        flex-direction: row;
        align-items: center;
    }
}

/* Mobile: vertical stack */
@media screen and (max-width: 64em) {
    .sp-header__nav-container .navbar-nav,
    .sp-header__nav-container .nav {
        flex-direction: column;
    }
}

/*
 * Nav links — target both .nav-link (hardcoded) and bare li > a
 * (shortcode output which doesn't add .nav-link class).
 */
.sp-header__nav-container .nav-link,
.sp-header__nav-container .nav > li > a,
.sp-header__nav-container .navbar-nav > li > a {
    font-family: "Archivo", sans-serif;
    font-size: 1rem;
    padding: .5rem 1rem;
    text-decoration: none;
    text-transform: uppercase;
    color: #333;
    transition: color 200ms ease-out;
    display: inline-block;
}

.sp-header__utilities-list .nav-link {
	    padding: .25rem .5rem;
	    }

.sp-header__nav-container .nav-link:hover,
.sp-header__nav-container .nav-link:focus,
.sp-header__nav-container .nav > li > a:hover,
.sp-header__nav-container .nav > li > a:focus,
.sp-header__nav-container .navbar-nav > li > a:hover,
.sp-header__nav-container .navbar-nav > li > a:focus {
    color: #000;
}

.sp-header__nav-container .nav-link.disabled {
    color: #999;
    pointer-events: none;
}

/* Mobile nav link overrides */
@media screen and (max-width: 64em) {
    .sp-header__nav-container .nav-link,
    .sp-header__nav-container .nav > li > a,
    .sp-header__nav-container .navbar-nav > li > a {
        color: #333;
        padding: .75rem 0;
        font-size: 1.1rem;
    }

    .sp-header__nav-container .nav-link:hover,
    .sp-header__nav-container .nav > li > a:hover,
    .sp-header__nav-container .navbar-nav > li > a:hover {
        color: #000;
    }
}

/* Scrolled desktop: white links on dark header */
@media only screen and (min-width: 64.0625em) {
    .scrolled .sp-header__nav-container .nav-link,
    .scrolled .sp-header__nav-container .nav > li > a,
    .scrolled .sp-header__nav-container .navbar-nav > li > a {
        color: #eee;
    }

    .scrolled .sp-header__nav-container .nav-link:hover,
    .scrolled .sp-header__nav-container .nav-link:focus,
    .scrolled .sp-header__nav-container .nav > li > a:hover,
    .scrolled .sp-header__nav-container .nav > li > a:focus,
    .scrolled .sp-header__nav-container .navbar-nav > li > a:hover,
    .scrolled .sp-header__nav-container .navbar-nav > li > a:focus {
        color: #fff;
    }

    .scrolled .sp-header__nav-container .nav-link.disabled {
        color: #888;
    }
}


/* ==========================================================================
   10. HEADER — Dropdowns & SVG Chevron
   ========================================================================== */

/* Parent positioning — covers both .nav-item and bare li with children */
.sp-header__nav-container .nav-item.menu-item-has-children,
.sp-header__nav-container .nav > li,
.sp-header__nav-container .navbar-nav > li {
    position: relative;
}

/* Dropdown menu — hidden by default */
.sp-header__nav-container .dropdown-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

/*
 * Dropdown toggle button (contains the SVG chevron).
 * The SVG inherits stroke color and rotates on open/hover.
 */
.sp-header__nav-container .dropdown-toggle {
    background: transparent;
    border: none;
    padding: 6px;
    cursor: pointer;
    line-height: 1;
    color: #333;
    transition: transform 300ms ease-out, color 300ms ease-out;
}

/* Remove Bootstrap's default ::after caret */
.sp-header__nav-container .dropdown-toggle::after {
    display: none;
}

/* SVG chevron — inherits color via currentColor, smooth rotation */
.sp-header__nav-container .dropdown-toggle svg {
    display: block;
    width: 12px;
    height: 7px;
    transition: transform 300ms ease-out;
}

/* --- Desktop dropdown behavior --- */
@media only screen and (min-width: 64.0625em) {

    /* Reveal on hover */
    .sp-header__nav-container .nav-item.menu-item-has-children:hover > .dropdown-menu {
        display: block;
    }

    /* Rotate chevron on hover */
    .sp-header__nav-container .nav-item.menu-item-has-children:hover > .dropdown-toggle svg {
        transform: rotate(180deg);
    }

    /* Dropdown panel styling */
    .sp-header__nav-container .dropdown-menu {
        background: var(--cream);
        border: 1px solid #666;
        min-width: 12.5rem;
        position: absolute;
        top: 100%;
        z-index: 30;
    }

    .sp-header__nav-container .dropdown-menu a {
        display: block;
        padding: .5rem 1rem;
        width: 300px;
        white-space: nowrap;
        text-decoration: none;
        color: #333;
        font-family: "Archivo", sans-serif;
        font-size: .95rem;
        transition: color 200ms ease-out;
    }

    .sp-header__nav-container .dropdown-menu a:hover {
        color: #000;
    }

    /* Scrolled: chevron turns white */
    .scrolled .sp-header__nav-container .dropdown-toggle {
        color: #fff;
    }

    .scrolled .sp-header__nav-container .dropdown-menu {
        background: var(--cream);
    }

    .scrolled .sp-header__nav-container .dropdown-menu a {
        color: #333;
    }

    .scrolled .sp-header__nav-container .dropdown-menu a:hover {
        color: #000;
    }
}

/* --- JS-driven .open class (mobile   keyboard a11y) --- */
.sp-header__nav-container .nav-item.menu-item-has-children.open > .dropdown-menu {
    display: block;
}

.sp-header__nav-container .nav-item.menu-item-has-children.open > .dropdown-toggle svg {
    transform: rotate(180deg);
}

/* --- Mobile dropdown styling --- */
@media screen and (max-width: 64em) {
    .sp-header__nav-container .dropdown-menu {
        padding-left: .875rem;
    }

    .sp-header__nav-container .dropdown-menu a {
        color: #333;
        padding: .5rem 0;
        display: block;
        text-decoration: none;
        font-family: "Archivo", sans-serif;
    }

    .sp-header__nav-container .dropdown-menu a:hover {
        color: #000;
    }

    .sp-header__nav-container .dropdown-toggle {
        color: #333;
    }
}


/* ==========================================================================
   11. HEADER — Mobile Toggle
   ========================================================================== */

.sp-header__navigation-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: .5rem;
    background: transparent;
    border: none !important;
    color: #333;
    font-family: "Archivo", sans-serif;
    font-size: .875rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    z-index: 11;
    user-select: none;
    position: relative;
}

@media only screen and (min-width: 64.0625em) {
    .sp-header__navigation-toggle {
        display: none;
    }
}

/* Hamburger lines */
.sp-header__navigation-toggle span {
    display: block;
    position: relative;
    width: 1.25rem;
    height: 2px;
    background: #333;
    margin-left: .5rem;
    transition: background 0s 200ms;
}

.sp-header__navigation-toggle span:before,
.sp-header__navigation-toggle span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #333;
    transition-duration: 200ms, 200ms;
    transition-delay: 200ms, 0s;
}

.sp-header__navigation-toggle span:before {
    top: -6px;
    transition-property: top, transform;
}

.sp-header__navigation-toggle span:after {
    bottom: -6px;
    transition-property: bottom, transform;
}

/* Open state — X shape */
.show-mobile-nav .sp-header__navigation-toggle {
    color: #333;
    z-index: 12;
}

.show-mobile-nav .sp-header__navigation-toggle span {
    background: transparent;
}

.show-mobile-nav .sp-header__navigation-toggle span:before,
.show-mobile-nav .sp-header__navigation-toggle span:after {
    background: #333;
    transition-delay: 0s, 200ms;
}

.show-mobile-nav .sp-header__navigation-toggle span:before {
    top: 0;
    transform: rotate(45deg);
}

.show-mobile-nav .sp-header__navigation-toggle span:after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Lock body scroll when mobile nav is open */
.show-mobile-nav {
    overflow: hidden;
}


/* ==========================================================================
   12. HEADER — Promo Bar
   ========================================================================== */

.sp-header-promo-bar {
    text-align: center;
    padding: .625rem;
    position: relative;
    width: 100%;
    z-index: 2;
}

.sp-header-promo-bar,
.sp-header-promo-bar * {
    color: #fff;
}

.sp-header-promo-bar p {
    margin-bottom: 0;
}

.sp-header-promo-bar a {
    color: #fff !important;
    text-underline-offset: 3px;
}

.sp-header-promo-bar a:hover {
    color: #fff;
    opacity: .8;
}

.show-mobile-nav .sp-header-promo-bar {
    display: none;
}


/* ==========================================================================
   13. BANNER
   ========================================================================== */

.spt-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.spt-banner .spt-template-width {
    height: 46vh;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 74rem;
    margin: 0 auto;
    width: 100%;
}

.spt-banner .spt-template-width .spt-banner__content {
    text-shadow:
        0 2px 1px rgba(0, 0, 0, .5),
        0 4px 2px rgba(0, 0, 0, .4),
        0 8px 4px rgba(0, 0, 0, .4),
        0 16px 8px rgba(0, 0, 0, .35),
        0 32px 16px rgba(0, 0, 0, .3);
}

/* Content positioning variants */

.spt-banner .spt-template-width--content-center-left {
    align-items: center;
    justify-content: flex-start;
}

.spt-banner .spt-template-width--content-center-left .spt-banner__content {
    text-align: left;
    width: 55%;
}

.spt-banner .spt-template-width--content-center-right {
    align-items: center;
    justify-content: flex-end;
}

.spt-banner .spt-template-width--content-center-right .spt-banner__content {
    text-align: right;
    width: 100%;
}

@media only screen and (min-width: 40.0625em) {
    .spt-banner .spt-template-width--content-center-right .spt-banner__content {
        width: 75%;
    }
}

@media only screen and (min-width: 64.0625em) {
    .spt-banner .spt-template-width--content-center-right .spt-banner__content {
        width: 55%;
    }
}

.spt-banner .spt-template-width--content-top-left {
    align-items: flex-start;
    justify-content: flex-start;
}

.spt-banner .spt-template-width--content-top-left .spt-banner__content {
    text-align: left;
    width: 100%;
}

@media only screen and (min-width: 40.0625em) {
    .spt-banner .spt-template-width--content-top-left .spt-banner__content {
        width: 75%;
    }
}

@media only screen and (min-width: 64.0625em) {
    .spt-banner .spt-template-width--content-top-left .spt-banner__content {
        width: 55%;
    }
}

.spt-banner .spt-template-width--content-top {
    align-items: flex-start;
}

.spt-banner .spt-template-width--content-top-right {
    align-items: flex-start;
    justify-content: flex-end;
}

.spt-banner .spt-template-width--content-top-right .spt-banner__content {
    text-align: right;
    width: 100%;
}

@media only screen and (min-width: 40.0625em) {
    .spt-banner .spt-template-width--content-top-right .spt-banner__content {
        width: 75%;
    }
}

@media only screen and (min-width: 64.0625em) {
    .spt-banner .spt-template-width--content-top-right .spt-banner__content {
        width: 55%;
    }
}

.spt-banner .spt-template-width--content-bottom-left {
    align-items: flex-end;
    justify-content: flex-start;
}

.spt-banner .spt-template-width--content-bottom-left .spt-banner__content {
    text-align: left;
    width: 100%;
}

@media only screen and (min-width: 40.0625em) {
    .spt-banner .spt-template-width--content-bottom-left .spt-banner__content {
        width: 75%;
    }
}

@media only screen and (min-width: 64.0625em) {
    .spt-banner .spt-template-width--content-bottom-left .spt-banner__content {
        width: 55%;
    }
}

.spt-banner .spt-template-width--content-bottom {
    align-items: flex-end;
}

.spt-banner .spt-template-width--content-bottom-right {
    align-items: flex-end;
    justify-content: flex-end;
}

.spt-banner .spt-template-width--content-bottom-right .spt-banner__content {
    text-align: right;
    width: 100%;
}

@media only screen and (min-width: 40.0625em) {
    .spt-banner .spt-template-width--content-bottom-right .spt-banner__content {
        width: 75%;
    }
}

@media only screen and (min-width: 64.0625em) {
    .spt-banner .spt-template-width--content-bottom-right .spt-banner__content {
        width: 55%;
    }
}

/* Banner size variants */

.spt-banner--large .spt-template-width {
    height: 80vh;
}

.spt-banner--small .spt-template-width {
    height: 36vh;
}

@media only screen and (max-width: 40em) {
    .spt-banner--small .spt-banner__next-section {
        display: none;
    }
}

/* Banner background focus */

.spt-banner--background-focus-left { background-position: center left; }
.spt-banner--background-focus-right { background-position: center right; }
.spt-banner--background-focus-top-left { background-position: top left; }
.spt-banner--background-focus-top { background-position: top center; }
.spt-banner--background-focus-bottom-left { background-position: bottom left; }
.spt-banner--background-focus-bottom { background-position: bottom center; }

/* Banner modifiers */

.spt-banner--restricted {
    max-width: 60rem;
    margin: 0 auto;
}

@media only screen and (min-width: 64.0625em) {
    .spt-banner--parallax {
        background-attachment: fixed;
    }
}

.spt-banner--veil:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(34, 34, 34, .4);
}

/* Banner content */

.spt-banner__content {
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.spt-banner__content h1,
.spt-banner__content h2,
.spt-banner__content h3,
.spt-banner__content h4,
.spt-banner__content h5,
.spt-banner__content h6,
.spt-banner__content p {
    color: #fff;
}

.spt-banner__content p {
    margin: 0 auto 1.5rem;
}

.spt-banner__content .button {
    background: rgba(0, 0, 0, .1);
    border-color: rgba(255, 255, 255, .9);
    color: rgba(255, 255, 255, .9);
    text-shadow: none;
}

.spt-banner__content .button:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

/* Banner scroll-down arrow */

.spt-banner__next-section {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: block;
    border: 2px solid #fff;
    opacity: .9;
}

@media only screen and (min-width: 40.0625em) {
    .spt-banner__next-section { bottom: 4rem; }
}

@media only screen and (min-width: 64.0625em) {
    .spt-banner__next-section { bottom: 2rem; }
}

.spt-banner__next-section span {
    display: inline-block;
    position: absolute;
    top: 19%;
    left: 10px;
    transform: rotate(45deg);
    border: 2px solid #fff;
    height: 16px;
    width: 16px;
    border-left: 0;
    border-top: 0;
}


/* ==========================================================================
   14. SECONDARY MENU / CATEGORY NAV
   ========================================================================== */

.sp-secondary-menu {
    background: #f9f9f9;
    padding: 15px;
    position: sticky;
    top: 0;
    z-index: 19;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    margin-bottom: 20px;
}

.sp-secondary-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.sp-secondary-menu ul li {
    position: relative;
    padding: .5rem .75rem;
}

.sp-secondary-menu ul li a {
    text-decoration: none;
    font-size: 1.1rem;
    color: #333;
    transition: color 200ms ease-out;
    
}

.sp-footer__menu-left ul li,
.sp-footer__menu-right ul li {
    margin-bottom: 1rem;
}

.sp-secondary-menu ul li a:hover {
    color: #000;
}

.sp-secondary-menu ul li:not(:last-child) a:after {
    content: '|';
    padding-left: .8rem;
    color: #ccc;
}

@media screen and (max-width: 991px) {
    .sp-secondary-menu ul {
        flex-direction: column;
        align-items: center;
    }

    .sp-secondary-menu ul li:not(:last-child) a:after {
        content: '';
    }
}


/* ==========================================================================
   15. FOOTER
   ========================================================================== */

.sp-footer {
    background-color: #7c211e;
    color: #fff !important;
    display: block;
    position: relative;
    padding: 2.5rem 0rem 3.5rem !important;
    margin-top: 20px;
}

.copyrights {
	max-width: 100%;
	display:block;
	}

.sp-footer .spt-template-width {
    max-width: 80rem;
}

@media only screen and (min-width: 40.0625em) {
    .sp-footer .spt-template-width {
        display: flex;
        flex-wrap: wrap;
    }
}

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

.sp-footer a:hover {
    color: #fff !important;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Footer Menu */

.sp-footer__menu {
    text-align: center;
    width: 100%;
}

.sp-footer__menu-left {
    text-align: center;
    width: 50%;
}

.sp-footer__menu-right {
    text-align: center;
    width: 50%;
}

.sp-footer__menu ul ul,
.sp-footer__menu input {
    display: none;
}

.sp-footer__menu ul {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

@media only screen and (min-width: 40.0625em) {
    .sp-footer__menu ul {
        margin: 0 0 1rem;
    }
}

.sp-footer__menu ul li {
    display: block;
    margin: .25rem 0;
}

@media only screen and (min-width: 40.0625em) {
    .sp-footer__menu ul li {
        display: inline-block;
        margin-right: .5rem;
    }
}


.sp-footer__menu ul li a {
  display: inline-block;
  color: #eee;
  padding: 0.25rem 0.5rem;
  line-height: 1.4;
  font-weight: 300px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
  font-size: clamp(0.9375rem, 0.8715rem   0.2817vw, 1rem);
}

.sp-footer__menu ul li a:hover {
    color: #fff;
}

/* Footer — Layout variant 1 */

@media only screen and (min-width: 64.0625em) {
    .sp-footer.sp-footer--1 .spt-template-width {
        display: block;
    }

    .sp-footer.sp-footer--1 .spt-template-width:before,
    .sp-footer.sp-footer--1 .spt-template-width:after {
        content: " ";
        display: table;
    }

    .sp-footer.sp-footer--1 .spt-template-width:after {
        clear: both;
    }

    .sp-footer--1 .sp-footer__menu {
        text-align: left;
    }

    .sp-footer--1 .sp-footer__menu ul li:last-child {
        margin-right: 0;
    }

    .sp-footer--1 .sp-footer__menu ul li:last-child a {
        padding-right: 0;
    }
}

/* Footer — Layout variant 2 */

@media only screen and (min-width: 64.0625em) {
    .sp-footer.sp-footer--2 .spt-template-width {
        display: block;
    }

    .sp-footer.sp-footer--2 .spt-template-width:before,
    .sp-footer.sp-footer--2 .spt-template-width:after {
        content: " ";
        display: table;
    }

    .sp-footer.sp-footer--2 .spt-template-width:after {
        clear: both;
    }

    .sp-footer--2 .sp-footer__menu {
        float: left;
        width: 65%;
        text-align: left;
    }
}

/* Footer Address */

.sp-footer__address {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: .875rem;
    width: 100%;
}

@media only screen and (min-width: 64.0625em) {
    .sp-footer--1 .sp-footer__address {
        float: left;
        width: 35%;
        text-align: left;
    }

    .sp-footer--2 .sp-footer__address {
        float: right;
        width: 35%;
        text-align: right;
    }
}

.sp-footer__address span {
    margin: .5rem 0;
}

.sp-footer__address__name {
    display: block;
    font-size: 1.2em;
}

.sp-footer--2 .sp-footer__address__name {
    display: none;
}

.sp-footer__address__address,
.sp-footer__address__city,
.sp-footer__address__postalcode {
    white-space: nowrap;
}

.sp-footer__address__phone {
    display: block;
    white-space: nowrap;
    margin-bottom: .5rem;
}

@media screen and (min-width: 480px) {
    .sp-footer__address__phone {
        display: inline-block;
        padding-right: 1rem;
        position: relative;
    }

    .sp-footer__address__phone:after {
        content: "";
        position: absolute;
        right: -0.2rem;
    }

    .sp-footer__address__phone--no-email:after {
        content: "";
    }
}

.sp-footer__address__email {
    display: block;
}

@media screen and (min-width: 480px) {
    .sp-footer__address__email {
        display: inline-block;
    }
}

.sp-footer__address__break {
    display: block;
    margin: 0;
    height: .4rem;
}

/* Footer Social Media */

.sp-footer__social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    width: 100%;
}

@media only screen and (min-width: 64.0625em) {
    .sp-footer--1 .sp-footer__social-media {
        float: right;
        justify-content: flex-start;
    }

    .sp-footer--1 .sp-footer__social-media a:last-child {
        margin-right: 0;
    }

    .sp-footer--2 .sp-footer__social-media {
        float: left;
        width: 65%;
        justify-content: flex-start;
    }
}

.sp-footer__social-media a {
    display: inline-block;
    vertical-align: middle;
    margin: 0 .4rem;
}

.sp-footer__social-media a:hover svg {
    fill: #fff;
}

.sp-footer__social-media img,
.sp-footer__social-media svg {
    width: 18px;
    height: 18px;
    fill: #eee;
    transition: fill 200ms ease-out;
}

/* Footer Copyright & Optional Text */

.sp-footer__copyright {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	padding: 10px 0;
	margin: 0 !important;
	background: #661B19;
	text-align: center;
}

.sp-footer__copyright,
.sp-footer__optional-text {
    text-align: center;
    font-size: .75rem;
    width: 100%;
}

@media only screen and (min-width: 64.0625em) {
    .sp-footer--1 .sp-footer__copyright,
    .sp-footer--1 .sp-footer__optional-text,
    .sp-footer--2 .sp-footer__copyright,
    .sp-footer--2 .sp-footer__optional-text {
        float: center;
        width: 100%;
        text-align: center;
    }
}

.sp-footer__optional-text {
    margin-bottom: .75rem;
}

.sp-footer__optional-text p {
    font-size: .75rem;
}

.sp-footer__optional-text p:last-of-type {
    margin-bottom: 0;
}

/* Footer Promo Bar */

.sp-footer-promo-bar {
    text-align: center;
    padding: .625rem;
}

.sp-footer-promo-bar * {
    color: #fff;
}

.sp-footer-promo-bar p {
    margin-bottom: 0;
}

.show-mobile-nav .sp-footer-promo-bar {
    display: none;
}

.sp-footer--transparent {
    background: transparent !important;
}

/* Footer — Two-column layout */

.sp-footer__left,
.sp-footer__right {
    width: 100%;
    text-align: center;
    margin-bottom: 0rem;
}

@media only screen and (min-width: 64.0625em) {
    .sp-footer__left {
        float: left;
        width: 35%;
        text-align: left;
    }

    .sp-footer__right {
        float: right;
        width: 50%;
        text-align: left;
        grid-template-columns: auto auto;
        display:flex
    }
}

/* Footer Logo */

.sp-footer__logo {
    max-width: 350px;
    margin: 0 auto 1.5rem;
}

@media only screen and (min-width: 64.0625em) {
    .sp-footer__logo {
        margin: 0 0 1.5rem;
    }
}

.sp-footer__logo a {
    display: block;
}

.sp-footer__logo img {
    width: 100%;
    height: auto;
}

/* Footer Policy Links */

.sp-footer__policy-links {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.sp-footer__policy-links li {
    display: inline-block;
    padding: 0 .5rem;
    font-size: .8rem;
}

.sp-footer__policy-links li a {
    color: #fff;
    text-decoration: none;
}

.sp-footer__policy-links li a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Footer Credits */

.sp-footer__credits {
    text-align: center;
    font-size: .7rem;
    width: 100%;
    color: #999;
    margin-top: .5rem;
}

.sp-footer__credits a {
    color: #bbb;
}

.sp-footer__credits a:hover {
    color: #fff;
}

.sp-footer__address__address {
	text-align: center;
	margin-bottom: 1.5rem;
  	font-size: 1rem;
  	letter-spacing: 1px;
  	line-height: 24px;
  	width: 100%;
  	text-transform: uppercase;
  	}

/* ==========================================================================
   16. SITE-SPECIFIC OVERRIDES (Klinker Brick)
   ========================================================================== */

/* Two-column CTA */
.two-column-cta a {
    color: var(--white) !important;
    font-family: "Archivo", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    text-underline-offset: 5px;
}

/* Subscribe section spacing */
.subscribe-padding {
    padding-top: 30rem !important;
    padding-bottom: 5rem !important;
}

@media only screen and (min-width: 40.0625em) {
    .subscribe-padding {
        padding-top: 65rem !important;
        padding-bottom: 10rem !important;
    }
}

/* Subscribe button */
.subscribe-button .button {
    background: transparent;
    border: 1px solid;
    border-radius: 0;
    padding-left: 35px !important;
    padding-right: 35px !important;
}

/* Grey section */
@media only screen and (min-width: 40.0625em) {
    .grey-section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
}

/* Reverse order on mobile */
@media screen and (max-width: 40em) {
    .reverse-order-mobile .spt-content {
        display: flex;
        flex-direction: column-reverse;
    }
}

/* Center text on mobile */
@media only screen and (max-width: 48em) {
    .center-mobile {
        text-align: center !important;
    }
}

/* Club red accent text */
.club-red-text {
    color: var(--red);
}

/* Announcement bar (if used outside promo bar) */
.announcement-wrapper p {
    text-align: center;
    margin-bottom: 0;
    font-size: 16px;
}

.announcement-wrapper .title {
    margin-bottom: 0;
    text-align: center;
}

/* Homepage wines wider container */
.homepage-wines .spt-content {
    max-width: 90rem;
    margin: 0 auto;
}

/* MEC (Modern Events Calendar) overrides */
.mec-single-event .mec-events-meta-group-countdown,
.mec-single-event .mec-event-social,
.mec-single-event .mec-event-export-module,
.nocomments {
    display: none;
}

.mec-single-event {
    margin-top: 70px;
}

.mec-wrap :not(.elementor-widget-container) > p,
.mec-single-event .mec-event-meta .mec-events-event-categories a,
.mec-single-event .mec-event-meta dd,
.mec-single-event .mec-event-meta h6,
.mec-single-event-sponsor span,
.mec-single-event .mec-event-meta .mec-events-address .mec-address,
.mec-single-event .mec-event-meta .mec-location-opening-hour span,
.mec-single-event .mec-event-meta .mec-location-url span,
.mec-calendar .mec-event-article .mec-categories-wrapper,
.mec-calendar .mec-event-article .mec-categories-wrapper ul.mec-categories li.mec-category a,
.mec-calendar .mec-event-article .mec-event-detail,
.mec-calendar .mec-event-article .mec-localtime-details div,
.mec-calendar .mec-event-article .mec-shortcode-organizers,
.mec-calendar .mec-event-article .mec-shortcode-organizers .mec-organizer-item span {
    color: #232324;
}

.mec-single-event .mec-event-meta dd {
    padding-left: 5px;
}

.mec-wrap .mec-single-title,
.single-mec-events .mec-wrap.mec-no-access-error h1 {
    font-family: "Archivo", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 8px;
}


/* ==========================================================================
   17. ANIMATIONS
   ========================================================================== */

@keyframes sp-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-5px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

.bounce {
    animation: sp-bounce 3s 5;
}

@media (prefers-reduced-motion) {
    .bounce {
        animation: none !important;
    }
}


.page-item.active .page-link {
  z-index: 3;
  color: #fff !important;
  background-color: #7c211e;
  border-color: #7c211e;
}
/* Footer — Two-column layout */

.sp-footer__left,
.sp-footer__right {
    width: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
}

@media only screen and (min-width: 64.0625em) {
    .sp-footer__left {
        float: left;
        width: 35%;
        text-align: left;
    }

    .sp-footer__right {
        float: right;
        width: 50%;
        text-align: left;
        display: flex;
        flex-wrap: wrap;
    }

    .sp-footer__right-left-menu {
        width: 50%;
        text-align: left;
    }

    .sp-footer__right-right-menu {
        width: 50%;
        text-align: left;
    }

    .sp-footer__social-media {
        width: 100%;
        padding-top: 15px;
        justify-content: flex-start;
    }
}

/* Prevent nav links from wrapping */
.sp-footer__menu-left a,
.sp-footer__menu-right a {
    white-space: nowrap;
}

@media only screen and (min-width: 40.0625em) {
  .sp-footer__menu ul li {
    margin-right: .5rem;
  }
}

.sp-footer__menu ul li {
  margin: .25rem 0;
}


@media screen and (max-width: 64em) {
    .sp-footer__left,
    .sp-footer__right,
    .sp-footer__right-left-menu,
    .sp-footer__right-right-menu,
    .sp-footer__menu-left,
    .sp-footer__menu-right,
    .sp-footer__social-media,
    .sp-footer__menu-left ul,
    .sp-footer__menu-right ul,
    .sp-footer__menu-left ul li,
    .sp-footer__menu-right ul li,
    .sp-footer__menu-left ul li a,
    .sp-footer__menu-right ul li a {
        text-align: center !important;
        width: 100% !important;
    }

    .sp-footer__right {
        flex-direction: column !important;
    }
}

@media screen and (max-width: 64em) {
.sp-header__utilities-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1rem;
        align-items: center;
        justify-content: flex-end !important;
        font-family: "Libre Baskerville", serif;
        font-size: .875rem;
        letter-spacing: .05em;
  background: #fffcf5;
}
}


/* Utilities bar — now outside the header in HTML */
.sp-header__utilities {
    position: relative;
    z-index: 100;
    background: transparent;
    display: flex;
    justify-content: flex-end;
}

.sp-header__utilities > .spt-template-width {
    display: flex !important;
    justify-content: flex-end !important;
    margin: 0 0 0 auto !important;
    max-width: 90rem !important;
    width: auto !important;
    padding-right: 1rem;
}

.sp-header__utilities-list {
    display: flex;
    list-style: none;
    padding: 0.25rem 0;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
    font-family: "Libre Baskerville", serif;
    font-size: .875rem;
    letter-spacing: .05em;
}

/* Desktop: pull header up to overlap */
@media only screen and (min-width: 64.0625em) {
    .sp-header {
        margin-top: -0.75rem;
    }
}

/* Mobile: no overlap, clean stacking */
@media screen and (max-width: 64em) {
    .sp-header {
        margin-top: 0;
    }

    .sp-header__utilities-list {
        justify-content: flex-end !important;
    }
}

/* Small phones: tighten up */
@media screen and (max-width: 26em) {
    .sp-header__utilities-list {
        gap: 0.5rem;
        font-size: .75rem;
    }
}


/* Mobile: remove overlap so utilities sit cleanly above logo */
@media screen and (max-width: 64em) {
    .sp-header {
        margin-top: 0;
    }
}

/* Small phones: tighten utilities so they don't wrap */
@media screen and (max-width: 26em) {
.sp-header .spt-template-width {
	padding: 0;
    }
    .spt-template-width {
	padding: 0;
	font-size:13px;
    }
    .sp-header__utilities > .spt-template-width {
    	padding: 0;
}
.sp-header__logo {
  width: 220px;
  padding: .25rem 0rem .75rem .75rem;
  position: relative;
  flex-shrink: 0;
}
	h1 {
	font-size: 1.5rem;
	}
	h2 {
	line-height: 1.1;
  	margin-bottom: 0.5em;
  	font-size: 20px;
}

	input#Discount_Coupan {
		width: 39%;
	}
}

/* announcement bar styling */

.announcement-wrapper {
    text-align: center;
    padding: .625rem;
    position: relative;
    width: 100%;
    z-index: 2;
}

.announcement-wrapper,
.announcement-wrapper * {
    color: #fff;
    backrgound-color: background-color: #7c211e;
}

.announcement-wrapper p {
    margin-bottom: 0;
}

.announcement-wrapper a {
    color: #fff !important;
    text-underline-offset: 3px;
}

.announcement-wrapper a:hover {
    color: #fff;
    opacity: .8;
}

.show-mobile-nav .announcement-wrapper {
    display: none;
}


#add_coupan_btn,
#rem_coupan_btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

#add_gc_btn,
#rem_gc_btn {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	}

#rem_gc_btn {
	margin-right: -5px !important;
	}

#cal_tax, {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	}

input#Discount_Coupan {
width: 39% !important;
	}
	
	
/* Desktop: utilities sit top-right above the nav inside .sp-header__right */
.sp-header__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
    gap: 0;
}

.sp-header__utilities {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.sp-header__utilities-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0.25rem 0;
    gap: 1rem;
    align-items: center;
    white-space: nowrap;
    font-family: "Libre Baskerville", serif;
    font-size: .875rem;
    letter-spacing: .05em;
}

/* Mobile: utilities and menu toggle share a row to the right of logo */
@media screen and (max-width: 64em) {
    .sp-header__right {
        flex-direction: column;
        align-items: flex-end;
    }

    .sp-header__utilities {
        justify-content: flex-end;
    }
}

/* Small phones */
@media screen and (max-width: 26em) {
    .sp-header__utilities-list {
        gap: 0.4rem;
        font-size: 1rem;
    }
}


@media screen and (max-width: 64em) {
    .sp-header .spt-template-width {
        position: relative;
        padding-top: 2rem;
    }

    .sp-header__utilities {
        position: absolute;
        top: 0.25rem;
        right: 0rem;
    }

    .sp-header__utilities-list {
        white-space: nowrap;
    }
}

@media screen and (max-width: 26em) {
    .sp-header__utilities-list {
        gap: 0.4rem;
        font-size: .7rem;
    }
}

.container {
	padding-top: 20px;
	}
	
.cart-summary-card {
    background: #fffcf5 !important;
    }
    
    .user-links a.storelink[href="/store"] {
    display: none !important;
}
    
/* Product Grid */
.category-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

/* Product Card */
.product-card {
    padding: 20px;
    border: none;
    border-radius: 0;
    background: transparent;
    transition: box-shadow 0.2s;
}

.product-card:hover {
    box-shadow: none;
}

/* Wine Image */
.product-card .wine-image {
    max-height: 320px;
    width: auto;
    margin: 0 auto;
    display: block;
}

/* Product Name */
.plp-product-name {
    font-family: "Archivo", sans-serif;
    font-size: 0.95rem;
    margin: 12px 0 8px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
    line-height: 1.4;
}

.plp-product-name a {
    color: #333;
    text-decoration: none;
}

.plp-product-name a:hover {
    color: var(--red);
}

.qty-button-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
    width: 100%;
    margin-top: 8px;
}

.product-data-plp {
    margin-top: auto;
}

.form-group.product-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-bottle-group {
    margin-bottom: 10px;
}

#cal_tax {
  padding-top: 0px;
  padding-bottom: 0px;
}

#rem_coupan_btn.hide { display: none !important; }

fieldset {
    border: 0;
    margin: 0 auto;
    max-width: 500px;
}

.form-row {
    display: flex;
    flex-direction: column;
}

.form-row .control-group {
    margin-bottom: 15px;
    flex-shrink: 0;
    flex-grow: 0;
}

.form-row .control-group.form-btn {
    margin-bottom: 0;
}

.container-xxl {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-content {
    flex: 1;
    background: #fffcf5;
}

.btn-primary {
    border-color: #7c211e !important;
    outline: none;
}

.btn-primary:focus,
.btn-primary:active {
    border-color: #7c211e !important;
    box-shadow: none !important;
    outline: none !important;
}

.container-xxl {
    background: #fffcf5 !important;
}

body {
    background-color: #fffcf5 !important;
}

.promo-code-section {
	background-color: #fffcf5 !important;
	}
	
	.cart-contents-wrapper .shipping_tax_container {
		background-color: #fffcf5 !important;
	}
	
h3 {
font-size: 1.5rem !important;
}

h4 {
font-weight: 300 !important;
}

.cart-summary-title {
	font-weight: 300 !important;
	}
	
	.h5.font-weight-bold {
    font-weight: 300 !important;
}

@media screen and (max-width: 26em) {
    nav.b360-authmenu,
    nav.b360-authmenu *,
    nav.b360-authmenu .b360-authmenu__list,
    nav.b360-authmenu .b360-authmenu__list li,
    nav.b360-authmenu .b360-authmenu__list li a,
    nav.b360-authmenu .b360-authmenu__list li span {
        font-size: 10px !important;
        gap: 0.5rem !important;
    }
}