/*
Theme Name: La Cantina Theme
Theme URI: https://mollerandromeo.com
Template: twentytwentyone
Author: Moller and Romeo
Author URI: https://mollerandromeo.com
Description: La Cantina theme is a child theme of Twenty Twenty-One. DO NOT delete either of these themes and keep the La Cantina as the active theme.
Tags: one-column,accessibility-ready,custom-colors,custom-menu,custom-logo,editor-style,featured-images,footer-widgets,block-patterns,rtl-language-support,sticky-post,threaded-comments,translation-ready,blog,portfolio
Version: 2.7.1769219874
Updated: 2026-01-24 12:57:54

*/

:root {
    --global--font-primary: "Karla", sans-serif;
    --global--font-secondary: "Karla", sans-serif;
}

html,
body {
    font-family: "Karla", sans-serif;
	background: #f2efed;
}

.site-main {
	padding-top:0px;
	padding-bottom:0px;
}

button,
input,
select,
textarea {
    font-family: "Karla", sans-serif;
}

body,
button,
input,
select,
optgroup,
label,
textarea {
    font-family: "Karla", sans-serif;
}

h1 {
	font-family: "Noto Serif", serif !important;
	font-size:44px;
	color: #000;
	font-weight: 400 !important;
}
h2 {
	font-size: 32px;
	font-family: "Noto Serif", serif !important;
	font-weight: 500 !important;
}
h3 {
	font-size: 28px;
	font-family: "Noto Serif", serif !important;
	font-weight: 500 !important;
}
h4 {
	font-size: 24px;
	font-family: "Noto Serif", serif !important;
	font-weight: 500 !important;
}
h5 {
	font-size: 20px;
	font-family: "Noto Serif", serif !important;
	font-weight: 500 !important;
}
p {
	line-height:26px;
	font-family: "Karla", sans-serif;
	color:#28303D;
	font-size:20px;
	margin-bottom: 20px;
}


/* ==============================
   SITE HEADER
   ============================== */
.site-header-new {
    width: 100%;
    border-bottom: 2px solid #c1bdaa;
    z-index: 9;
    position: relative;
	background: #D4D1C4;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ==============================
   TOP BAR
   ============================== */
.header-topbar {
    width: 100%;
    height: 55px;
    padding: 10px 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    overflow: hidden;
}
.header-login {
  display: flex;
  align-items: center;   /* vertical alignment */
  gap: 20px;             /* space between items */
	font-size: 18px;
}
.header-login a {
    text-decoration: none;
    font-size: 18px;
}

.c7-user-nav__account > a {
    color: #000;
}

.c7-user-nav__cart__title svg {
    stroke: #000;
}

.header-topbar button:not(:hover):not(:active):not(.has-background) {
    background-color: transparent;
}


/* ==============================
   LOGO BAR
   ============================== */
.header-logobar {
    display: flex;
    align-items: center;
    justify-content: space-between; /* logo left, menu right */
    gap: 2rem;
    padding: 0;
    position: relative;
	top: -20px;
}

.site-logo {
    margin: 0;
}

.site-logo img {
    max-height: 120px; /* adjust as needed */
    width: auto;
    display: block;
}

/* ==============================
   DESKTOP MENU
   ============================== */
.header-menubar.desktop-menu {
    display: flex;
    justify-content: flex-end; /* menu items right-aligned */
    align-items: center;
    gap: 1.5rem;
	font-size: 18px;
}

.header-menubar.desktop-menu .primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.header-menubar.desktop-menu .primary-menu > li > a {
    text-decoration: none;
    color: #000;
    padding: 0.5rem 0;
    text-transform: capitalize;
    white-space: nowrap;
}

.header-menubar.desktop-menu .primary-menu li {
    margin: 0;
}

/* Remove submenu bullets */
.desktop-menu ul,
.desktop-menu ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-menu ul li::marker {
    content: none;
}

/* Desktop submenu hover */
@media (min-width: 841px) {
    .desktop-menu .sub-menu {
        display: none;
        position: absolute;
        background-color: #d4d1c2;
        padding: 3px;
        z-index: 999;
    }

	.sub-menu {
		text-decoration: none;
	}
	
    .desktop-menu li:hover > .sub-menu {
        display: block;
		padding-top: 20px;
    	padding-left: 10px;
		padding-right: 35px;
		padding-bottom: 10px;
    }

    /* Hide any toggle buttons on desktop */
    .desktop-menu button,
    .desktop-menu .submenu-toggle,
    .desktop-menu .sub-menu-toggle,
    .desktop-menu .menu-button,
    .desktop-menu .dropdown-toggle {
        display: none !important;
    }
	
	.header-menubar.desktop-menu .primary-menu li {
	  	margin: 0;
	  	margin-bottom: 10px;
	}
}

/* ==============================
   MOBILE MENU TOGGLE (HAMBURGER)
   ============================== */
.mobile-menu-toggle {
    display: none; /* desktop hidden */
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 999;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #d4d1c2;
    margin: 5px 0;
}
.mobile-menu-toggle:hover span {
    display: block;
    width: 26px;
    height: 3px;
    background: #000;
    margin: 5px 0;
}

/* ==============================
   MOBILE MENU
   ============================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background: #fff;
    z-index: 99999;
    padding: 20px;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-sizing: border-box;
    overflow-y: auto;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

body.mobile-menu-open {
    overflow: hidden;
}

/* Close button */
.mobile-menu-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    margin-bottom: 20px;
    display: block;
    line-height: 20px;
    padding: 20px;
}

/* Mobile menu items */
.mobile-menu-list,
.mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-item {
    margin-bottom: 0;
    border-bottom: 1px solid #ccc;
}

.mobile-menu-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 15px 0;
    display: block;
    flex: 1;
    text-transform: uppercase;
}

.mobile-submenu {
    display: none;
    padding-left: 20px;
    padding-bottom: 10px;
}

.mobile-submenu li {
    margin-bottom: 10px;
}

.mobile-submenu a {
    text-transform: uppercase;
    font-size: 16px;
    text-decoration: none;
}

.submenu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 5px;
    font-size: 25px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.submenu-toggle:focus {
    outline: 0;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1159px) {
    .header-menubar.desktop-menu {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 880px) {
    .site-logo img {
        max-height: 115px;
    }
}

@media (max-width: 700px) {
    .site-logo {
        margin-top: -15px;
    }
    .site-logo img {
        max-height: 115px;
    }
}





/* FOOTER ****************************************************************************************/

#site-footer {
	color: #969183;
    background: #2b2725;
}
.footer-inner {
  	max-width: 1400px;
  	margin: 0 auto;
  	padding: 0 20px;
  	box-sizing: border-box;
  	padding-top: 40px;
  	padding-bottom: 30px;
}
.footer-columns {
    display: flex;
    margin-bottom: 2rem;
	gap: 40px;
}
.footer-columns h2 {
	font-size: 17px;
	color:#B3AB96;
	text-transform: capitalize;
	margin-bottom: 15px;
	border-bottom: 1px solid #969183;
    padding-bottom: 5px;
	font-family: "Noto Serif", serif;
}

.footer-column {
    flex: 1;
}
.footer-column p {
	color: #969183;
	font-size:16px;
	line-height: 25px;
  	margin-bottom: 20px;
}
.footer-disclaimer {
    font-size: 0.875rem;
    text-align: center;
    opacity: 0.8;
}
.footer-disclaimer p { 
	color: #969183;
	font-size:13px;
	margin-bottom: 0px;
}
.footer-column.col-1 ul {
	padding-left:0px;
} 
.footer-column.col-1 ul li {
	list-style-type: none;
	color: #969183;
  	font-size: 16px;
} 

#site-footer svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
	margin-right: 8px;
}
#site-footer {
    color: #fff;
}

#site-footer a {
	color: #969183;;
	text-decoration:none;
}

@media (max-width: 1068px) {
    .footer-columns {
        flex-direction: column;
		text-align: center;
    }
  
    .footer-row-1 .footer-column:nth-child(1) { order: 3; margin-top: 20px;}
    .footer-row-1 .footer-column:nth-child(2) { order: 1;margin-top: 20px; }
    .footer-row-1 .footer-column:nth-child(3) { order: 4;margin-top: 40px; }
    .footer-row-1 .footer-column:nth-child(4) { order: 2;margin-top: 20px; }
	
	.footer-columns h2 {
		border-bottom: 0px solid #969183;
	}

}/* ============ Animated underline (center-out), red & closer to text ============ */
@media (min-width: 841px) {
  .header-menubar.desktop-menu .primary-menu > li > a {
    position: relative;
    display: inline-block;
    padding-bottom: 0.2rem;         /* was 0.5rem; brings underline closer */
    line-height: 1.2;               /* keeps text compact so underline sits tight */
  }

  .header-menubar.desktop-menu .primary-menu > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    /* Move the underline up slightly to sit closer to the text */
    bottom: 0.05em;                 /* tweak this to taste: 0–0.15em range works well */
    width: 100%;
    height: 2px;                    /* thickness of the underline */
    background-color: #5f794c;      /* RED underline (pick any red you like) */
    transform: translateX(-50%) scaleX(0);
    transform-origin: center center;
    transition: transform 220ms ease;
    pointer-events: none;
  }

  .header-menubar.desktop-menu .primary-menu > li > a:hover::after,
  .header-menubar.desktop-menu .primary-menu > li > a:focus-visible::after,
  .header-menubar.desktop-menu .primary-menu > li.current-menu-item > a::after,
  .header-menubar.desktop-menu .primary-menu > li.current_page_item > a::after {
    transform: translateX(-50%) scaleX(1);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) and (min-width: 841px) {
  .header-menubar.desktop-menu .primary-menu > li > a::after {
    transition: none;
  }
}

/* Arrows only for submenu links */
.desktop-menu .sub-menu a {
    position: relative;
    padding-left: 1.1rem; /* space for the arrow */
    display: block;       /* helps with alignment and click area */
}

/* Small right-pointing triangle arrow */
.desktop-menu .sub-menu a::before {
    content: "";
    position: absolute;
    left: 0.2rem;             /* adjust to taste */
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #000;  /* arrow color; match your theme */
    opacity: 0.75;
    transition: transform 120ms ease, border-left-color 120ms ease, opacity 120ms ease;
}

/* Hover/Focus: nudge and color tweak */
.desktop-menu .sub-menu a:hover::before,
.desktop-menu .sub-menu a:focus::before {
    transform: translateY(-50%) translateX(2px);
    border-left-color: #333;   /* darker on hover */
    opacity: 1;
}

/* If your submenu has a different background, you can override arrow color here */
@media (min-width: 841px) {
    .desktop-menu .sub-menu {
        background-color: #bab59b; 
    }

    /* Optional: better contrast on that background */
    .desktop-menu .sub-menu a::before {
        border-left-color: #222;
    }
}

/* (Optional) If any submenu items are disabled or separators, you can skip arrows like this: */
/*
.desktop-menu .sub-menu .menu-item--no-arrow > a::before {
    content: none;
}
*/
/* Hover/Focus:   */
a {
    background-color: transparent;
    text-decoration-thickness: 1px;
    text-decoration: none;
}

.site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) {
    outline: 0px solid transparent;
    text-decoration: underline 0px dotted currentColor;
    text-decoration-skip-ink: none;
   background-color: transparent;
}






/* CONTENT BLOCK - LEFT IMAGE RIGHT TEXT START */

.left-image-right-text-block {
    padding-top: 60px;
	padding-bottom: 60px;
    display: flex;
    width: 100%;
    align-items: stretch;
    gap: 4%; /* replaces margin hack */
    box-sizing: border-box;
	padding-left:20px;
	padding-right:20px;
}

/* Columns */
.left-image-right-text-left,
.left-image-right-text-right {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

/* Image side */
.left-image-right-text-left {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 400px; /* ensures visible height */
}

/* Reverse layout */
.left-image-right-text-block.reverse-layout {
    flex-direction: row-reverse;
}

/* Title */
.left-image-right-text-block h2 {
    font-weight: 500;
    margin-bottom: 25px;
}

/* Text */
.left-image-right-text-block .right-text {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 650px;
}

/* Button & Link Wrapper */
.left-image-right-text-block .right-link {
    margin-top: 60px;
    margin-bottom: 30px;
}

/* Small inline image */
.right-inline-image {
    margin-top: 40px;
}

.show-on-mobile {
    display: none;
}
/* =========================
   Responsive
========================= */

@media (max-width: 767px) {

    .hide-on-mobile {
        display: none !important;
    }

    .show-on-mobile {
        display: block !important;
    }

    .left-image-right-text-block {
        flex-direction: column !important;
        padding: 25px;
        gap: 0;
    }

    .left-image-right-text-left {
        width: 100%;
        min-height: 280px;
        margin: 20px 0;
    }

    .left-image-right-text-right {
        width: 100%;
        text-align: center;
        padding: 20px 10px;
    }

    .left-image-right-text-right .right-text,
    .left-image-right-text-right .right-link {
        text-align: left;
    }

    .left-image-right-text-left.show-on-mobile {
        display: block;
        order: 2;
    }
}

/* CONTENT BLOCK - LEFT IMAGE RIGHT TEXT END */



/* BUTTONS */

.site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) {
  outline: 0px solid transparent;
  text-decoration: underline 0px dotted currentColor;
  text-decoration-skip-ink: none;
  background-color: #617753;
}
.elementor-widget-button .elementor-button:hover {
	background-color: #000;
}
.elementor-button-text {
	font-family: "Karla", sans-serif;
	letter-spacing: 0.5px;
    text-transform: uppercase;
	font-size: 18px;
}
.site .header-menubar a:focus {
  background-color: transparent !important;
}
.site .mobile-menu a:focus {
  background-color: transparent !important;
}
.event-scroll-button {
    background: #5f794c !important;
}

.event-scroll-button:hover{
    background: #000 !important;
}

.event-buttons a.event-button:hover {
    background: #000;
  
}

/* Commerce 7 */
.c7-product-collection .c7-product__title, .c7-product-allocation .c7-product__title, .c7-club-product__details__title {
   	font-size: 22px;
	font-family: "Noto Serif", serif !important;
}
.site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) {
	background-color: transparent !important;
}
.c7-btn--primary, .c7-btn--primary--small {
    background:  #5F794C;
}

.elementor-widget-custom_newsletter {
	background-color:#fafafa;
}
.newsletter-block-wrapper {
	max-width: 1400px;
  	margin: 0 auto;
  	padding: 0 20px;
  	box-sizing: border-box;
	padding-top:50px;
	padding-bottom:50px;
}
.newsletter-text {
	text-align:center;
}
.newsletter-block-form {
	width: 600px;
  	margin: auto;
	max-width:90%;
}
.newsletter-block-form label {
	display:none !important;
}
.c7-form__group .c7-form__field + button {
	margin-top:0px !important;
}

#wine-club-wrapper h1.c7-h1 {
	display:none;
}

button, .c7-btn, .c7-btn--primary {
    --global--color-primary: #5F794C;
	--global--color-background: #fff;
	text-transform:uppercase;
}
button, .c7-btn, .c7-btn--primary {
  	font-family: "Karla", sans-serif;
  	letter-spacing: 0.5px;
  	text-transform: uppercase;
  	font-size: 18px;
  	padding-top: 0px;
  	padding-bottom: 0px;
}
button.c7-btn:hover,
button.c7-btn--primary:hover {
	color:#fff !important;
	--c7-primary-button-bg-hover:#717a6b;
}


#c7-cart a.c7-btn,
#c7-cart a.c7-btn--primary {
	font-family: "Karla", sans-serif;
  	letter-spacing: 0.5px;
  	text-transform: uppercase;
  	font-size: 18px;
  	padding-top: 8px;
  	padding-bottom: 0px;
	font-weight: 500;
}

#c7-cart a.c7-btn:hover,
#c7-cart a.c7-btn--primary:hover {
	color:#fff !important;
	--c7-primary-button-bg-hover:#717a6b;
}

#c7-club a.c7-btn,
#c7-club a.c7-btn--primary {
	font-family: "Karla", sans-serif;
  	letter-spacing: 0.5px;
  	text-transform: uppercase;
  	font-size: 18px;
  	padding-top: 8px;
  	padding-bottom: 0px;
	font-weight: 500;
}

#c7-club a.c7-btn:hover,
#c7-club a.c7-btn--primary:hover {
	color:#fff !important;
	--c7-primary-button-bg-hover:#717a6b;
}

.c7-btn--primary:active, .c7-btn--primary:focus:not(:focus-visible), .c7-btn--primary:hover, .c7-btn--primary--small:active, .c7-btn--primary--small:focus:not(:focus-visible), .c7-btn--primary--small:hover, .c7-btn--alt:active, .c7-btn--alt:focus:not(:focus-visible), .c7-btn--alt:hover, .c7-btn--alt--small:active, .c7-btn--alt--small:focus:not(:focus-visible), .c7-btn--alt--small:hover {
    outline: 0;
    background-color: #717a6b;
}

.site .button:not(:hover):not(:active):not(.has-background), button:not(:hover):not(:active):not(.has-background), input[type=submit]:not(:hover):not(:active):not(.has-background), input[type=reset]:not(:hover):not(:active):not(.has-background), .wp-block-search .wp-block-search__button:not(:hover):not(:active):not(.has-background), .wp-block-button .wp-block-button__link:not(:hover):not(:active):not(.has-background), .wp-block-file a.wp-block-file__button:not(:hover):not(:active):not(.has-background) {
    background-color: var(--global--color-primary);
    padding: 8px;
}

.c7-link:not([disabled]):hover, .c7-link:not([disabled]):active, .c7-link:not([disabled]):focus {
    text-decoration: underline;
padding: 8px;
}


.c7-btn--primary:not([disabled]):active, .c7-btn--primary:not([disabled]):focus, .c7-btn--primary:not([disabled]):hover, .c7-btn--primary--small:not([disabled]):active, .c7-btn--primary--small:not([disabled]):focus, .c7-btn--primary--small:not([disabled]):hover {
    background:#3E2C31;
    text-decoration: none;
}

button, .c7-btn, .c7-btn--primary {
    font-family: "Karla", sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 18px;
    padding-top: 8px;
    padding-bottom: 0px;
}

 .c7-btn--primary:not([disabled]):active, .c7-btn--primary:not([disabled]):focus, .c7-btn--primary:not([disabled]):hover, .c7-btn--primary--small:not([disabled]):active, .c7-btn--primary--small:not([disabled]):focus, .c7-btn--primary--small:not([disabled]):hover {
    background: #3E2C31;
    text-decoration: none; 
     padding-top: 8px;
    padding-bottom: 0px;
}


.c7-btn--primary:not([disabled]):active, .c7-btn--primary:not([disabled]):focus, .c7-btn--primary:not([disabled]):hover, .c7-btn--primary--small:not([disabled]):active, .c7-btn--primary--small:not([disabled]):focus, .c7-btn--primary--small:not([disabled]):hover {
    background: #3E2C31;
    text-decoration: none;
    padding: 8px;
}
button, .c7-btn, .c7-btn--primary {
    font-family: "Karla", sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 18px;
    padding-top: 8px;
    padding-bottom: 0px;
    padding: 8px;
}

.c7-user-nav__cart__count {
    background: #5f794c;
   
}
.site textarea {
	border:solid 1px #ccc;
}