:root {
    --ve-wine-900: #4a0817;
    --ve-wine-800: #58091b;
    --ve-wine-700: #6f0d22;
    --ve-terracotta-700: #8f2528;
    --ve-terracotta-600: #a12c2f;
    --ve-terracotta-500: #b0413e;
    --ve-terracotta-300: #d98b7e;
    --ve-bg: #f3ede6;
    --ve-bg-alt: #fbf7f3;
    --ve-surface: #fff;
    --ve-border: #d8c9bf;
    --ve-muted: #a8968d;
    --ve-secondary: #6b5750;
    --ve-dark: #3a2228;
    --ve-ink: #2b2b2b;
    --ve-success: #3e7c57;
    --ve-shadow-sm: 0 2px 10px rgba(58, 34, 40, .07);
    --ve-shadow-md: 0 10px 28px rgba(58, 34, 40, .12);
    --ve-display: "Playfair Display", Georgia, serif;
    --ve-body: "Inter", Arial, sans-serif;
}

body {
    background: var(--ve-bg);
    color: var(--ve-ink);
    font-family: var(--ve-body);
    letter-spacing: 0;
}

body a {
    color: var(--ve-wine-700);
}

.ve-container {
    margin: 0 auto;
    max-width: 1248px;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
}

.ve-button {
    align-items: center;
    background: var(--ve-terracotta-600);
    border: 1px solid var(--ve-terracotta-600);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    justify-content: center;
    min-height: 46px;
    padding: 11px 20px;
    text-align: center;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.ve-button:hover {
    background: var(--ve-terracotta-700);
    border-color: var(--ve-terracotta-700);
    color: #fff;
    transform: translateY(-1px);
}

.ve-button--outline {
    background: transparent;
    border-color: var(--ve-wine-700);
    color: var(--ve-wine-700);
}

.ve-button--outline:hover {
    background: var(--ve-wine-700);
    border-color: var(--ve-wine-700);
}

.ve-button--small {
    font-size: 14px;
    min-height: 38px;
    padding: 8px 14px;
}

.ve-button.is-disabled {
    background: #e9e4de;
    border-color: #e9e4de;
    color: var(--ve-muted);
    cursor: not-allowed;
    pointer-events: none;
}

.ve-icon-button {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--ve-wine-700);
    display: inline-flex;
    height: 42px;
    justify-content: center;
    padding: 0;
    width: 42px;
}

.ve-eyebrow {
    color: var(--ve-terracotta-600);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    margin: 0;
    text-transform: uppercase;
}

.ve-header.sp-header {
    background: rgba(243, 237, 230, .92);
    border-bottom: 1px solid var(--ve-border);
    height: auto;
    left: auto;
    padding: 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.ve-header__inner {
    align-items: center;
    display: flex;
    gap: 22px;
    min-height: 76px;
}

.ve-header__logo {
    display: block;
    flex: 0 0 auto;
    width: 208px;
}

.ve-header__logo img {
    display: block;
    height: 40px;
    object-fit: contain;
    object-position: left center;
    width: auto;
}

.ve-header__nav-shell {
    flex: 1;
    min-width: 0;
}

.ve-header__nav {
    align-items: center;
    display: flex;
    gap: 2px;
}

.ve-header__link {
    border-radius: 8px;
    color: var(--ve-ink);
    display: block;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 11px;
    text-decoration: none;
    white-space: nowrap;
}

.ve-header__link:hover,
.ve-header__link--active {
    color: var(--ve-wine-700);
}

.ve-mega {
    position: relative;
}

.ve-mega__trigger-row {
    align-items: center;
    display: flex;
}

.ve-mega__toggle {
    height: 34px;
    margin-left: -8px;
    width: 28px;
}

.ve-mega__toggle i {
    font-size: 10px;
    transition: transform .2s ease;
}

.ve-mega__panel {
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: 16px;
    box-shadow: var(--ve-shadow-md);
    display: grid;
    gap: 24px;
    grid-template-columns: 210px 260px;
    left: 0;
    opacity: 0;
    padding: 18px;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 14px);
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease;
    visibility: hidden;
    width: max-content;
}

.ve-mega__panel::before {
    content: "";
    height: 16px;
    left: 0;
    position: absolute;
    right: 0;
    top: -16px;
}

.ve-mega__panel--menu {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 220px;
}

.ve-menu-submenu {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ve-menu-submenu__link {
    border-radius: 6px;
    color: var(--ve-ink);
    font-size: 14px;
    padding: 8px 10px;
    text-decoration: none;
    white-space: nowrap;
}

.ve-menu-submenu__link:hover,
.ve-menu-submenu__link:focus-visible {
    background: var(--ve-bg-alt);
    color: var(--ve-wine-700);
}

.ve-mega.ve-header__link--mobile-only {
    display: none;
}

.sp-menu-item--mobile-only {
    display: none !important;
}

.ve-mega:hover .ve-mega__panel,
.ve-mega:focus-within .ve-mega__panel,
.ve-mega.is-open .ve-mega__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.ve-mega.is-open .ve-mega__toggle i {
    transform: rotate(180deg);
}

.ve-mega__column,
.ve-mega__featured {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ve-mega__column p,
.ve-mega__featured p {
    color: var(--ve-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    margin: 0 0 7px;
    text-transform: uppercase;
}

.ve-mega__column a {
    border-radius: 6px;
    color: var(--ve-ink);
    font-size: 14px;
    padding: 7px 9px;
    text-decoration: none;
}

.ve-mega__column a:hover {
    background: var(--ve-bg-alt);
    color: var(--ve-wine-700);
}

.ve-mega__featured {
    background: var(--ve-bg-alt);
    border: 1px solid var(--ve-border);
    border-radius: 12px;
    color: var(--ve-ink);
    gap: 0;
    overflow: hidden;
    text-decoration: none;
}

.ve-mega__featured > img {
    display: block;
    height: 96px;
    object-fit: cover;
    width: 100%;
}

.ve-mega__featured > div {
    display: flex;
    flex-direction: column;
    padding: 12px 14px 14px;
}

.ve-mega__featured strong {
    color: var(--ve-wine-700);
    font-family: var(--ve-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.ve-mega__featured span {
    color: var(--ve-secondary);
    font-size: 13px;
    line-height: 1.45;
    margin-top: 5px;
}

.ve-mega__featured--empty {
    min-height: 170px;
}

.ve-mega__featured a {
    font-size: 13px;
    font-weight: 700;
    margin-top: 12px;
    text-decoration: none;
}

.ve-header__actions {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.ve-header__cart {
    position: relative;
}

.ve-header__cart i {
    font-size: 17px;
}

.ve-header .sp-header__cart-badge {
    align-items: center;
    background: var(--ve-terracotta-600);
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 10px;
    height: 16px;
    justify-content: center;
    min-width: 16px;
    padding: 0 3px;
    position: absolute;
    right: 1px;
    top: 1px;
}

.ve-header .sp-header__cart-badge--empty {
    display: none;
}

.ve-header .sp-header__burger,
.ve-header__drawer-bar {
    display: none;
}

.ve-header__event-count,
.ve-mobile-nearest,
.ve-header__link--mobile-only,
.ve-mega__all,
.ve-header__burger-close {
    display: none;
}

.ve-home-hero {
    align-items: center;
    display: flex;
    min-height: 620px;
    overflow: hidden;
    position: relative;
}

.ve-home-hero__image,
.ve-home-hero__overlay {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.ve-home-hero__image {
    object-fit: cover;
}

.ve-home-hero__overlay {
    background: linear-gradient(100deg, rgba(243, 237, 230, .98) 0%, rgba(243, 237, 230, .93) 35%, rgba(243, 237, 230, .22) 64%, rgba(58, 34, 40, .28) 100%);
}

.ve-home-hero__inner {
    padding-bottom: 68px;
    padding-top: 68px;
    position: relative;
}

.ve-home-hero__content {
    max-width: 620px;
}

.ve-home-hero h1,
.ve-events-archive__intro h1,
.ve-event-detail h1 {
    color: var(--ve-wine-700);
    font-family: var(--ve-display);
    font-weight: 600;
    letter-spacing: 0;
}

.ve-home-hero h1 {
    font-size: clamp(36px, 5.2vw, 56px);
    line-height: 1.08;
    margin: 18px 0 0;
}

.ve-home-hero__text {
    color: var(--ve-secondary);
    font-size: 18px;
    line-height: 1.6;
    margin: 18px 0 0;
    max-width: 540px;
}

.ve-home-search {
    align-items: end;
    background: rgba(255, 255, 255, .95);
    border: 1px solid var(--ve-border);
    border-radius: 8px;
    box-shadow: var(--ve-shadow-md);
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
    margin-top: 28px;
    padding: 16px;
}

.ve-home-search label {
    color: var(--ve-secondary);
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 700;
    gap: 6px;
}

.ve-home-search select,
.ve-events-results select {
    appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='m1 1 5 5 5-5' fill='none' stroke='%236f0d22' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 13px center;
    border: 1px solid var(--ve-border);
    border-radius: 8px;
    color: var(--ve-ink);
    font-size: 14px;
    height: 46px;
    padding: 0 36px 0 12px;
    width: 100%;
}

.ve-home-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 40px;
    margin-top: 32px;
}

.ve-home-hero__stats div {
    display: flex;
    flex-direction: column;
}

.ve-home-hero__stats strong {
    color: var(--ve-wine-700);
    font-family: var(--ve-display);
    font-size: 28px;
    line-height: 1;
}

.ve-home-hero__stats span {
    color: var(--ve-secondary);
    font-size: 13px;
    margin-top: 6px;
}

.ve-section {
    padding: 20px 0 80px 0;
}

.ve-section-heading h2,
.ve-wineries-feature h2,
.ve-host h2,
.ve-newsletter h2 {
    color: var(--ve-wine-700);
    font-family: var(--ve-display);
    font-size: clamp(30px, 3.6vw, 40px);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.16;
    margin: 10px 0 0;
}

.ve-section-heading p:not(.ve-eyebrow),
.ve-wineries-feature p,
.ve-host p {
    color: var(--ve-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin: 10px 0 0;
}

.ve-section-heading--row {
    align-items: flex-end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.ve-section-heading--center {
    margin: 0 auto;
    max-width: 680px;
    text-align: center;
}

.ve-text-link {
    flex: 0 0 auto;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.ve-text-link i {
    font-size: 12px;
    margin-left: 5px;
}

.ve-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ve-events-preview .ve-chip-row {
    margin-top: 26px;
}

.ve-chip {
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: 999px;
    color: var(--ve-secondary);
    cursor: pointer;
    font-family: var(--ve-body);
    font-size: 13px;
    line-height: 1;
    padding: 9px 13px;
    text-decoration: none;
}

.ve-chip:hover,
.ve-chip.is-active {
    background: var(--ve-wine-700);
    border-color: var(--ve-wine-700);
    color: #fff;
}

.ve-event-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ve-events-preview .ve-event-grid {
    margin-top: 26px;
}

.ve-event-card {
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: 8px;
    box-shadow: var(--ve-shadow-sm);
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.ve-event-card__image {
    aspect-ratio: 16 / 9;
    display: block;
    overflow: hidden;
    position: relative;
}

.ve-event-card__image img {
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
    width: 100%;
}

.ve-event-card:hover .ve-event-card__image img {
    transform: scale(1.025);
}

.ve-badge {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 999px;
    color: var(--ve-wine-700);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 9px;
}

.ve-event-card__image > .ve-badge {
    left: 12px;
    position: absolute;
    top: 12px;
}

.ve-event-card__date {
    align-items: center;
    background: var(--ve-surface);
    border-radius: 8px;
    bottom: 12px;
    color: var(--ve-secondary);
    display: flex;
    flex-direction: column;
    font-size: 11px;
    line-height: 1.1;
    padding: 8px 10px;
    position: absolute;
    right: 12px;
    text-transform: lowercase;
}

.ve-event-card__date strong {
    color: var(--ve-wine-700);
    font-family: var(--ve-display);
    font-size: 24px;
}

.ve-event-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.ve-event-card__location {
    color: var(--ve-terracotta-600);
    font-size: 12px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.ve-event-card h3 {
    font-family: var(--ve-body);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 9px 0 0;
}

.ve-event-card h3 a {
    color: var(--ve-wine-700);
    text-decoration: none;
}

.ve-event-card__details {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 14px;
}

.ve-event-card__details span {
    align-items: center;
    color: var(--ve-secondary);
    display: flex;
    font-size: 13px;
    gap: 8px;
}



.ve-event-card__details span:last-of-type {
    padding-bottom: 10px;
}

.ve-event-card__details i {
    color: var(--ve-terracotta-500);
    text-align: center;
    width: 16px;
}

.ve-event-card__footer {
    align-items: flex-end;
    border-top: 1px solid var(--ve-border);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 14px;
}

@media (min-width: 768px) {
    .ve-event-card__footer {
        margin-top: auto;
    }
}

.ve-event-card__footer > div {
    display: flex;
    flex-direction: column;
}

.ve-event-card__price {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 3px 8px;
}

.ve-event-card__price del {
    color: var(--ve-muted);
    font-size: 14px;
    white-space: nowrap;
}

.ve-event-card__footer strong {
    color: var(--ve-ink);
    font-family: var(--ve-display);
    font-size: 21px;
    white-space: nowrap;
}

.ve-event-card__spots {
    color: var(--ve-terracotta-600);
    font-size: 11px;
    font-weight: 700;
    margin-top: 3px;
}

.ve-step-grid,
.ve-format-grid,
.ve-article-grid {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.ve-step-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ve-how {
    padding-top: 40px;
}

.ve-how .ve-section-heading {
    max-width: 640px;
}

.ve-how .ve-section-heading h2 {
    font-size: clamp(27px, 3.6vw, 40px);
}

.ve-how .ve-section-heading p:not(.ve-eyebrow) {
    line-height: 1.5;
}

.ve-step {
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: 8px;
    box-shadow: var(--ve-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
}

.ve-step::before {
    background: var(--ve-terracotta-500);
    border-radius: 2px;
    content: "";
    display: block;
    flex: 0 0 2px;
    height: 2px;
    width: 28px;
}

.ve-step > strong {
    color: var(--ve-muted);
    font-family: var(--ve-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1.5;
    text-transform: uppercase;
}

.ve-step h3 {
    color: var(--ve-wine-700);
    font-family: var(--ve-display);
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.25;
    margin: 0;
}

.ve-step p {
    color: var(--ve-secondary);
    font-size: 15px;
    line-height: 1.55;
    margin: 2px 0 0;
}

.ve-formats {
    background: var(--ve-bg-alt);
    border-bottom: 1px solid var(--ve-border);
    border-top: 1px solid var(--ve-border);
    padding-top: 42px;
}

.ve-format-grid,
.ve-article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ve-format-card,
.ve-article-card {
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: 8px;
    box-shadow: var(--ve-shadow-sm);
    color: inherit;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
}

.ve-format-card__media,
.ve-article-card > img {
    display: block;
    height: 180px;
    width: 100%;
}

.ve-format-card__media {
    background: var(--ve-bg);
    overflow: hidden;
}

.ve-format-card__media img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.ve-article-card > img {
    object-fit: cover;
}

.ve-format-card > .ve-format-card__body,
.ve-article-card > div {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.ve-format-card h3,
.ve-article-card h3 {
    color: var(--ve-wine-700);
    font-size: 20px;
    line-height: 1.3;
    margin: 0;
}

.ve-format-card p,
.ve-article-card p {
    color: var(--ve-secondary);
    font-size: 14px;
    line-height: 1.55;
    margin: 10px 0 0;
}

.ve-format-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.ve-format-card__tags span {
    background: var(--ve-bg-alt);
    border: 1px solid var(--ve-border);
    border-radius: 999px;
    color: var(--ve-secondary);
    font-size: 11px;
    padding: 5px 8px;
}

.ve-format-card footer {
    align-items: center;
    border-top: 1px solid var(--ve-border);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
}

.ve-format-card footer strong {
    font-family: var(--ve-display);
    font-size: 21px;
}

.ve-split {
    align-items: center;
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.ve-wineries-feature .ve-button {
    margin-top: 24px;
}

.ve-winery-mosaic {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ve-winery-mosaic > a:not(.ve-winery-mosaic__more) {
    aspect-ratio: 5 / 4;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.ve-winery-mosaic img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.ve-winery-mosaic__placeholder {
	align-items: center;
	background:
		radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .72), transparent 27%),
		linear-gradient(145deg, #f7efea, #ead8cf);
	color: var(--ve-wine-700);
	display: flex;
	font-family: var(--ve-display);
	font-size: clamp(42px, 7vw, 72px);
	font-weight: 600;
	height: 100%;
	justify-content: center;
	letter-spacing: -.04em;
	line-height: 1;
	width: 100%;
}

.ve-winery-mosaic > a:not(.ve-winery-mosaic__more)::after {
    background: linear-gradient(180deg, transparent 28%, rgba(58, 34, 40, .95) 100%);
    content: "";
    inset: 0;
    position: absolute;
}

.ve-winery-mosaic > a > span {
    bottom: 12px;
    color: #fff;
    display: flex;
    flex-direction: column;
    left: 14px;
    position: absolute;
    right: 14px;
    z-index: 1;
}

.ve-winery-mosaic small {
    color: var(--ve-terracotta-300);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.ve-winery-mosaic__more {
    align-items: center;
    background: var(--ve-wine-700);
    border-radius: 8px;
    color: #fff;
    display: flex;
    grid-column: 1 / -1;
    justify-content: space-between;
    min-height: 78px;
    padding: 17px 21px;
    text-decoration: none;
}

.ve-winery-mosaic__more span {
    position: static !important;
}

.ve-winery-mosaic__more strong {
    font-family: var(--ve-display);
    font-size: 24px;
}

.ve-winery-mosaic__more small {
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    margin-top: 5px;
    text-transform: none;
}

.ve-host {
    background: var(--ve-dark);
}

.ve-host__inner {
    align-items: center;
    display: flex;
    gap: 56px;
}

.ve-host__inner > img {
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    flex: 0 0 340px;
    height: 380px;
    object-fit: cover;
    width: 340px;
}

.ve-host .ve-eyebrow {
    color: var(--ve-terracotta-300);
}

.ve-host h2 {
    color: var(--ve-bg);
}

.ve-host p {
    color: rgba(243, 237, 230, .82);
    font-size: 17px;
}

.ve-host__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 26px 44px;
    margin-top: 28px;
}

.ve-host__stats span {
    color: rgba(243, 237, 230, .64);
    display: flex;
    flex-direction: column;
    font-size: 13px;
}

.ve-host__stats strong {
    color: var(--ve-bg);
    font-family: var(--ve-display);
    font-size: 28px;
    margin-bottom: 4px;
}

.ve-article-card small {
    color: var(--ve-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.ve-article-card h3 {
    margin-top: 8px;
}

.ve-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 30px auto 0;
    max-width: 820px;
}

.ve-accordion {
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: 8px;
    overflow: hidden;
}

.ve-accordion button {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--ve-ink);
    display: flex;
    font-size: 15px;
    font-weight: 700;
    justify-content: space-between;
    padding: 17px 19px;
    text-align: left;
    width: 100%;
}

.ve-accordion button i {
    color: var(--ve-wine-700);
    transition: transform .2s ease;
}

.ve-accordion > div {
    display: none;
    padding: 0 19px 17px;
}

.ve-accordion.is-open > div {
    display: block;
}

.ve-accordion.is-open button i {
    transform: rotate(45deg);
}

.ve-accordion p {
    color: var(--ve-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.ve-faq-section--embedded {
    margin-top: 40px;
    padding: 0;
}

.ve-faq-section--embedded > .ve-container {
    padding-left: 0;
    padding-right: 0;
}

.ve-newsletter {
    background: var(--ve-wine-700);
    padding: 48px 0;
}

.ve-newsletter__inner {
    align-items: center;
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
}

.ve-newsletter h2 {
    color: var(--ve-bg);
    margin: 0;
}

.ve-newsletter p {
    color: rgba(243, 237, 230, .76);
    font-size: 14px;
    line-height: 1.6;
    margin: 10px 0 0;
}

.ve-newsletter .static_form_top p,
.ve-newsletter .static_form_top {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ve-newsletter .static_form_top input {
    background: #fff;
    border: 0;
    border-radius: 8px;
    height: 44px;
    padding: 0 12px;
    width: 100%;
}

.ve-newsletter .static_form_bot p,
.ve-newsletter .static_form_bot {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: 10px;
}

.ve-newsletter .wpcf7-submit {
    background: var(--ve-bg);
    border: 0;
    border-radius: 8px;
    color: var(--ve-wine-700);
    font-weight: 700;
    min-height: 42px;
    padding: 8px 18px;
}

.ve-newsletter .wpcf7-list-item-label {
    color: rgba(243, 237, 230, .72);
    font-size: 11px;
}

.ve-empty-state {
    background: var(--ve-bg-alt);
    border: 1px solid var(--ve-border);
    border-radius: 8px;
    padding: 34px;
    text-align: center;
}

.ve-empty-state h2,
.ve-empty-state h3 {
    color: var(--ve-wine-700);
    font-family: var(--ve-display);
    margin: 0;
}

.ve-empty-state p {
    color: var(--ve-secondary);
    margin: 9px 0 18px;
}

.ve-breadcrumbs {
    align-items: center;
    color: var(--ve-muted);
    display: flex;
    flex-wrap: nowrap;
    font-size: 13px;
    gap: 10px;
    line-height: 1.4;
    min-width: 0;
    overflow: hidden;
    padding-top: 22px;
    white-space: nowrap;
}

.ve-breadcrumbs a {
    color: var(--ve-muted);
    flex: 0 0 auto;
    text-decoration: none;
    transition: color .15s ease;
}

.ve-breadcrumbs a:hover {
    color: var(--ve-wine-700);
}

.ve-breadcrumbs > span[aria-current="page"] {
    color: var(--ve-secondary);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ve-breadcrumbs > i {
    color: var(--ve-muted);
    flex: 0 0 auto;
    font-size: 8px;
}

.winery-hero .ve-breadcrumbs {
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 8px;
    box-shadow: var(--ve-shadow-sm);
    max-width: 100%;
    padding: 9px 12px;
    width: fit-content;
}

.ve-events-archive__intro {
    padding: 28px 0 0;
}

.ve-events-archive__intro h1 {
    font-size: clamp(34px, 4.6vw, 46px);
    line-height: 1.12;
    margin: 10px 0 0;
}

.ve-events-archive__intro .ve-container > p:last-child {
    color: var(--ve-secondary);
    font-size: 17px;
    line-height: 1.55;
    margin: 10px 0 0;
    max-width: 680px;
}

.ve-events-archive__body {
    padding: 30px 0 84px;
}

.ve-events-layout {
    align-items: start;
    display: grid;
    gap: 32px;
    grid-template-columns: 280px minmax(0, 1fr);
}

.ve-events-filters {
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: 8px;
    box-shadow: var(--ve-shadow-sm);
    padding: 21px;
    position: sticky;
    top: 96px;
}

.ve-events-filters form,
.ve-filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ve-events-filters form {
    gap: 22px;
}

.ve-filter-group h2 {
    color: var(--ve-ink);
    font-family: var(--ve-body);
    font-size: 13px;
    font-weight: 700;
    margin: 0;
}

.ve-events-filters .ve-chip {
    font-size: 12px;
    padding: 8px 10px;
}

.ve-filter-checks {
    border-top: 1px solid var(--ve-border);
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding-top: 18px;
}

.ve-filter-checks label {
    align-items: center;
    color: var(--ve-secondary);
    display: flex;
    font-size: 13px;
    gap: 8px;
}

.ve-filter-checks input {
    accent-color: var(--ve-wine-700);
    height: 16px;
    width: 16px;
}

.ve-filter-reset {
    color: var(--ve-muted);
    font-size: 13px;
}

.ve-events-results {
    min-width: 0;
}

.ve-events-results__bar {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 22px;
}

.ve-events-results__bar p {
    color: var(--ve-secondary);
    font-size: 14px;
    margin: 0;
}

.ve-events-results select {
    min-width: 220px;
}

.ve-event-group {
    margin-bottom: 36px;
}

.ve-event-group > header {
    align-items: center;
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}

.ve-event-group > header h2 {
    color: var(--ve-wine-700);
    font-family: var(--ve-display);
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.ve-event-group > header span {
    background: var(--ve-border);
    flex: 1;
    height: 1px;
}

.ve-event-group > header p {
    color: var(--ve-muted);
    font-size: 12px;
    margin: 0;
}

.ve-events-results .ve-event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ve-private-cta {
    align-items: center;
    background: var(--ve-bg-alt);
    border: 1px solid var(--ve-border);
    border-radius: 8px;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-top: 40px;
    padding: 28px 30px;
}

.ve-private-cta h2 {
    color: var(--ve-wine-700);
    font-size: 20px;
    margin: 0;
}

.ve-private-cta p {
    color: var(--ve-secondary);
    font-size: 14px;
    line-height: 1.55;
    margin: 6px 0 0;
    max-width: 540px;
}

.ve-event-single__body {
    padding: 24px 0 84px;
}

.ve-event-detail-layout {
    align-items: start;
    display: grid;
    gap: 40px;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
}

.ve-event-detail {
    min-width: 0;
}

.ve-event-detail__image {
    border: 1px solid var(--ve-border);
    border-radius: 8px;
    height: clamp(260px, 34vw, 430px);
    overflow: hidden;
    position: relative;
}

.ve-event-detail__image > img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.ve-event-detail__image > div {
    display: flex;
    gap: 7px;
    left: 17px;
    position: absolute;
    top: 17px;
}

.ve-event-detail h1 {
    font-size: clamp(34px, 4.6vw, 44px);
    line-height: 1.12;
    margin: 25px 0 0;
}

.ve-event-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 15px;
}

.ve-event-detail__meta span {
    align-items: center;
    color: var(--ve-secondary);
    display: flex;
    font-size: 14px;
    gap: 8px;
}

.ve-event-detail__meta i {
    color: var(--ve-terracotta-500);
}

.ve-event-detail__lead {
    color: var(--ve-secondary);
    font-size: 17px;
    line-height: 1.65;
    margin-top: 20px;
}

.ve-event-detail__lead p {
    margin: 0 0 12px;
}

.ve-event-detail__section {
    margin-top: 40px;
}

.ve-event-detail__section > h2,
.ve-event-info-grid h2 {
    color: var(--ve-wine-700);
    font-family: var(--ve-display);
    font-size: 27px;
    font-weight: 600;
    margin: 0;
}

.ve-program {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
}

.ve-program > div {
    border-bottom: 1px solid var(--ve-border);
    display: grid;
    gap: 18px;
    grid-template-columns: 76px minmax(0, 1fr);
    padding: 16px 0;
}

.ve-program > div > strong {
    color: var(--ve-terracotta-500);
    font-family: var(--ve-display);
    font-size: 18px;
}

.ve-program b {
    color: var(--ve-ink);
    font-size: 15px;
}

.ve-program p {
    color: var(--ve-secondary);
    font-size: 14px;
    line-height: 1.55;
    margin: 4px 0 0;
}

.ve-muted {
    color: var(--ve-muted);
    font-size: 14px;
    margin: 7px 0 0;
}

.ve-pours {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 17px;
}

.ve-pours a,
.ve-pours__placeholder {
    align-items: center;
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: 8px;
    color: inherit;
    display: flex;
    gap: 13px;
    min-height: 68px;
    padding: 13px 15px;
    text-decoration: none;
}

.ve-pours a > span {
    align-items: center;
    background: var(--ve-bg-alt);
    border: 1px solid var(--ve-border);
    border-radius: 50%;
    color: var(--ve-wine-700);
    display: flex;
    flex: 0 0 34px;
    font-family: var(--ve-display);
    font-weight: 700;
    height: 34px;
    justify-content: center;
}

.ve-pours a div {
    display: flex;
    flex-direction: column;
}

.ve-pours a strong {
    color: var(--ve-ink);
    font-size: 14px;
}

.ve-pours a small {
    color: var(--ve-muted);
    font-size: 12px;
    margin-top: 2px;
}

.ve-event-info-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 40px;
}

.ve-event-info-grid > section {
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: 8px;
    padding: 23px;
}

.ve-event-info-grid h2 {
    font-family: var(--ve-body);
    font-size: 18px;
}

.ve-event-info-grid ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 15px 0 0;
    padding: 0;
}

.ve-event-info-grid li {
    color: var(--ve-secondary);
    display: flex;
    font-size: 14px;
    gap: 9px;
    line-height: 1.5;
}

.ve-event-info-grid li i {
    color: var(--ve-success);
    margin-top: 4px;
}

.ve-event-info-grid section > strong {
    display: block;
    font-size: 15px;
    margin-top: 13px;
}

.ve-event-info-grid section > p {
    color: var(--ve-secondary);
    font-size: 14px;
    line-height: 1.55;
    margin: 6px 0 0;
}

.ve-event-info-grid section > img {
    border: 1px solid var(--ve-border);
    border-radius: 8px;
    height: 128px;
    margin-top: 14px;
    object-fit: cover;
    width: 100%;
}

.ve-event-location {
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: 18px;
    box-shadow: var(--ve-shadow-sm);
    margin-top: 32px;
    padding: clamp(18px, 2.2vw, 22px);
}

.ve-event-location__eyebrow {
    color: var(--ve-terracotta-600);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    margin: 0;
    text-transform: uppercase;
}

.ve-event-location__heading {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    justify-content: space-between;
}

.ve-event-location__heading > span {
    color: var(--ve-muted);
    font-size: 12px;
    font-weight: 600;
}

.ve-event-location__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.ve-event-location__tabs button {
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: 12px;
    color: var(--ve-ink);
    cursor: pointer;
    display: flex;
    flex: 1 1 170px;
    flex-direction: column;
    font-family: inherit;
    min-width: 0;
    padding: 9px 13px;
    text-align: left;
    transition: background-color .14s ease, border-color .14s ease, color .14s ease;
}

.ve-event-location__tabs button strong,
.ve-event-location__tabs button small {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ve-event-location__tabs button strong {
    font-size: 14px;
    line-height: 1.25;
}

.ve-event-location__tabs button small {
    color: var(--ve-muted);
    font-size: 12px;
    line-height: 1.25;
    margin-top: 2px;
}

.ve-event-location__tabs button.is-active {
    background: var(--ve-wine-700);
    border-color: var(--ve-wine-700);
    color: #fff;
}

.ve-event-location__tabs button.is-active small {
    color: rgba(255, 255, 255, .74);
}

.ve-event-location__panel[hidden] {
    display: none;
}

.ve-event-location__title {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin-top: 16px;
}

.ve-event-location__title h2 {
    color: var(--ve-wine-700);
    font-family: var(--ve-display);
    font-size: clamp(20px, 2.2vw, 25px);
    font-weight: 600;
    line-height: 1.22;
    margin: 0;
}

.ve-event-location__title > span {
    background: var(--ve-bg-alt);
    border: 1px solid var(--ve-border);
    border-radius: 999px;
    color: var(--ve-muted);
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    text-transform: uppercase;
}

.ve-event-location > h2 {
    color: var(--ve-wine-700);
    font-family: var(--ve-display);
    font-size: clamp(20px, 2.2vw, 25px);
    font-weight: 600;
    line-height: 1.22;
    margin: 6px 0 0;
}

.ve-event-location__description {
    --about-collapsed-height: 12rem;
    color: var(--ve-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin: 8px 0 0;
    max-width: 62ch;
}

.ve-event-location__description .winery-text__content {
    height: auto;
    overflow: hidden;
    position: relative;
    transition: height .45s ease-in-out;
}

.ve-event-location__description .winery-text__content > :first-child {
    margin-top: 0;
}

.ve-event-location__description .winery-text__content > :last-child {
    margin-bottom: 0;
}

.ve-event-location__description.is-collapsed .winery-text__content {
    height: var(--about-collapsed-height);
}

.ve-event-location__description.is-collapsed .winery-text__content::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--ve-surface) 82%);
    bottom: 0;
    content: "";
    height: 72px;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
}

.ve-event-location__description .winery-text__toggle {
    background: transparent;
    border: 0;
    border-bottom: 1px solid currentColor;
    border-radius: 0;
    color: var(--ve-wine-700);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
    padding: 2px 0;
}

.ve-event-location__description .winery-text__toggle:hover,
.ve-event-location__description .winery-text__toggle:focus-visible {
    color: var(--ve-terracotta-600);
}

@media (prefers-reduced-motion: reduce) {
    .ve-event-location__description .winery-text__content {
        transition: none;
    }
}

.ve-event-location__media {
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    margin-top: 14px;
}

.ve-event-location__media.has-single-item {
    grid-template-columns: 1fr;
}

.ve-event-location__image {
	border-radius: 12px;
    display: block;
    height: 168px;
    object-fit: cover;
	width: 100%;
}

.ve-event-location__image.is-placeholder {
	align-items: center;
	background:
		radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .72), transparent 27%),
		linear-gradient(145deg, #f7efea, #ead8cf);
	display: flex;
	justify-content: center;
}

.ve-event-location__image.is-placeholder span {
	color: var(--ve-wine-700);
	font-family: var(--ve-display);
	font-size: clamp(48px, 8vw, 76px);
	font-weight: 600;
	letter-spacing: -.04em;
	line-height: 1;
}

.ve-event-location__map-wrap {
    border: 1px solid var(--ve-border);
    border-radius: 12px;
    height: 168px;
    overflow: hidden;
    position: relative;
}

.ve-event-location dl {
    border-top: 1px solid var(--ve-border);
    display: grid;
    gap: 14px 28px;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    margin: 14px 0 0;
    padding-top: 14px;
}

.ve-event-location dl > div {
    min-width: 0;
}

.ve-event-location dt {
    color: var(--ve-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.ve-event-location dd {
    color: var(--ve-ink);
    font-size: 15px;
    line-height: 1.5;
    margin: 5px 0 0;
}

.ve-event-location .ve-event-location__map {
    border: 0;
    display: block;
    height: 100%;
    filter: saturate(.72) sepia(.12);
    width: 100%;
}

.ve-event-location__map-wrap > a {
    background: rgba(255, 255, 255, .94);
    border-radius: 99px;
    bottom: 10px;
    box-shadow: var(--ve-shadow-sm);
    color: var(--ve-wine-700);
    font-size: 12px;
    font-weight: 600;
    left: 10px;
    padding: 6px 10px;
    position: absolute;
    text-decoration: none;
}

.ve-event-location__route {
    align-items: center;
    color: var(--ve-wine-700);
    display: inline-flex;
    font-size: 15px;
    font-weight: 600;
    gap: 8px;
    margin-top: 14px;
    text-decoration: none;
}

.ve-event-location__route em {
    color: var(--ve-muted);
    font-style: normal;
    font-weight: 500;
}

.ve-event-location__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

.ve-event-location__details-link {
    background: var(--ve-dark);
    border-color: var(--ve-dark);
    gap: 9px;
}

.ve-event-location__details-link:hover {
    background: var(--ve-dark);
    border-color: var(--ve-dark);
}

.ve-event-location__details-link i {
    font-size: 12px;
    transition: transform .2s ease;
}

.ve-event-location__details-link:hover i {
    transform: translateX(3px);
}

.ve-event-program {
    margin-top: 40px;
}

.ve-event-program > h2 {
    color: var(--ve-wine-700);
    font-family: var(--ve-display);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.ve-event-program__card {
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: 18px;
    box-shadow: var(--ve-shadow-sm);
    margin-top: 18px;
    padding: clamp(16px, 2vw, 24px) clamp(16px, 2.2vw, 26px);
}

.ve-event-program__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: -2px 0 18px;
}

.ve-event-program__tabs button {
    align-items: flex-start;
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: 12px;
    color: var(--ve-secondary);
    cursor: pointer;
    display: flex;
    flex: 0 1 auto;
    flex-direction: column;
    font-family: inherit;
    gap: 2px;
    min-width: 128px;
    padding: 9px 15px;
    text-align: left;
    transition: background-color .14s ease, border-color .14s ease, color .14s ease;
}

.ve-event-program__tabs button strong {
    font-size: 14px;
    line-height: 1.2;
}

.ve-event-program__tabs button small {
    color: var(--ve-muted);
    font-size: 12px;
    line-height: 1.2;
}

.ve-event-program__tabs button.is-active {
    background: var(--ve-wine-700);
    border-color: var(--ve-wine-700);
    color: #fff;
}

.ve-event-program__tabs button.is-active small {
    color: rgba(255, 255, 255, .74);
}

.ve-event-program__panel[hidden] {
    display: none;
}

.ve-event-program__date {
    color: var(--ve-terracotta-600);
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.ve-event-program__summary {
    border-bottom: 1px solid var(--ve-border);
    color: var(--ve-secondary);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 18px;
    padding-bottom: 16px;
}

.ve-event-program__timeline {
    display: flex;
    flex-direction: column;
}

.ve-event-program__item {
    display: grid;
    gap: 0 4px;
    grid-template-columns: 62px 22px minmax(0, 1fr);
}

.ve-event-program__item time {
    color: var(--ve-wine-700);
    font-family: var(--ve-display);
    font-size: 17px;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    line-height: 1.35;
    padding-top: 1px;
}

.ve-event-program__item > span {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ve-event-program__item > span::before {
    background: var(--ve-wine-700);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(111, 13, 34, .1);
    content: "";
    flex: 0 0 11px;
    height: 11px;
    margin-top: 6px;
    width: 11px;
}

.ve-event-program__item > span::after {
    background: var(--ve-border);
    content: "";
    flex: 1 1 auto;
    width: 1px;
}

.ve-event-program__item:last-child > span::after {
    opacity: 0;
}

.ve-event-program__item > div {
    padding: 0 0 22px 10px;
}

.ve-event-program__item h3 {
    color: var(--ve-ink);
    font-family: var(--ve-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.ve-event-program__item p {
    color: var(--ve-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin: 6px 0 0;
    max-width: 62ch;
}

.ve-mobile-booking-bar {
    display: none;
}

.ve-event-detail .ve-accordion-list {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

.ve-booking {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 96px;
}

.ve-booking__card,
.ve-booking__other {
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: 8px;
    box-shadow: var(--ve-shadow-md);
    padding: 23px;
}

.ve-booking__price {
    align-items: baseline;
    display: flex;
    gap: 8px;
}

.ve-booking__price strong {
    color: var(--ve-ink);
    font-family: var(--ve-display);
    font-size: 32px;
    line-height: 1;
}

.ve-booking__price > span {
    color: var(--ve-muted);
    font-size: 13px;
}

.ve-booking__price strong del,
.ve-booking__price strong ins {
    display: inline-flex;
    white-space: nowrap;
}

.ve-booking__price strong del {
    color: var(--ve-muted);
    font-size: .62em;
    margin-right: 6px;
}

.ve-booking__price strong ins {
    color: inherit;
    text-decoration: none;
}

.ve-booking__availability {
    color: var(--ve-terracotta-600);
    font-size: 13px;
    font-weight: 700;
    margin: 9px 0 0;
}

.ve-booking__progress {
    background: #e9e4de;
    border-radius: 4px;
    height: 6px;
    margin-top: 10px;
    overflow: hidden;
}

.ve-booking__progress span {
    background: var(--ve-terracotta-500);
    display: block;
    height: 100%;
}

.ve-booking__stepper {
    align-items: center;
    border: 1px solid var(--ve-border);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 11px 13px;
}

.ve-booking__stepper > span,
.ve-booking__total span {
    color: var(--ve-secondary);
    font-size: 14px;
}

.ve-booking__stepper > div {
    align-items: center;
    display: flex;
    gap: 13px;
}

.ve-booking__stepper button {
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: 6px;
    color: var(--ve-wine-700);
    height: 30px;
    padding: 0;
    width: 30px;
}

.ve-booking__stepper strong {
    font-family: var(--ve-display);
    min-width: 16px;
    text-align: center;
}

.ve-booking__total {
    align-items: baseline;
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
}

.ve-booking__total strong {
    color: var(--ve-wine-700);
    font-family: var(--ve-display);
    font-size: 21px;
}

.ve-booking__card > .ve-button,
.ve-booking__card > .ve-event-ticket-form {
    margin-top: 15px;
    width: 100%;
}

.ve-event-ticket-form {
    margin: 0;
}

.ve-event-ticket-form .ve-button {
    width: 100%;
}

.ve-booking__note {
    color: var(--ve-muted);
    font-size: 12px;
    line-height: 1.5;
    margin: 11px 0 0;
    text-align: center;
}

.ve-booking__other {
    background: var(--ve-bg-alt);
    border-radius: 16px;
    box-shadow: none;
    padding: 20px;
}

.ve-booking__other h2 {
    font-family: var(--ve-body);
    font-size: 15px;
    margin: 0 0 8px;
}

.ve-booking__other a {
    align-items: center;
    border-bottom: 1px solid var(--ve-border);
    color: var(--ve-ink);
    display: flex;
    font-size: 14px;
    gap: 12px;
    justify-content: space-between;
    padding: 11px 0;
    text-decoration: none;
}

.ve-booking__other small {
    color: var(--ve-muted);
    flex: 0 0 auto;
}

.ve-booking__other small.is-sold-out {
    color: var(--ve-terracotta-600);
    font-weight: 700;
}

.ve-event-modal.tour-booking-modal {
    background: var(--ve-bg-alt);
    border-radius: 8px;
    max-width: 650px;
}

.ve-event-modal .tour-booking-modal__calendar-block {
    display: none;
}

.ve-footer.sp-footer {
    background: #2b2b2b;
    color: var(--ve-bg);
    margin-top: 0;
    padding: 56px 0 40px;
}

.ve-footer__grid {
    display: grid;
    gap: 40px;
    grid-template-columns: minmax(220px, 1.2fr) repeat(4, minmax(150px, 1fr));
}

.ve-footer__brand > a {
    align-items: center;
    display: inline-flex;
}

.ve-footer__brand img {
    display: block;
    height: 42px;
    max-width: none;
    object-fit: contain;
    object-position: left center;
    width: auto;
}

.ve-footer__brand p {
    color: rgba(243, 237, 230, .68);
    font-size: 14px;
    line-height: 1.6;
    margin: 17px 0 0;
    max-width: 280px;
}

.ve-footer__column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ve-footer__column h2 {
    color: var(--ve-bg);
    font-family: var(--ve-body);
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 7px;
}

.ve-footer__column > a {
    color: rgba(243, 237, 230, .7);
    font-size: 14px;
    text-decoration: none;
}

.ve-footer__column > a:hover {
    color: #fff;
}

.ve-footer__socials {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.ve-footer__socials a {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    color: var(--ve-bg);
    display: flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.ve-footer__bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .13);
    color: rgba(243, 237, 230, .52);
    display: flex;
    font-size: 13px;
    justify-content: space-between;
    margin-top: 36px;
    padding-bottom: 0;
    padding-top: 20px;
}

.ve-footer__bottom div {
    display: flex;
    gap: 18px;
}

.ve-footer__bottom a {
    color: rgba(243, 237, 230, .52);
}

.ve-footer__legal-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ve-footer__legal-copy strong {
    color: rgba(243, 237, 230, .78);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
    max-width: 640px;
}

.ve-footer__cancel-link {
    border: 1px solid rgba(243, 237, 230, .48);
    border-radius: 7px;
    color: var(--ve-bg) !important;
    font-weight: 700;
    padding: 8px 12px;
    text-decoration: none;
}

.ve-footer__cancel-link:hover {
    background: var(--ve-bg);
    color: var(--ve-dark) !important;
}

.ve-event-age-notice {
    align-items: center;
    background: #fff6e6;
    border: 1px solid #e7c88c;
    border-radius: 12px;
    color: #684e21;
    display: flex;
    gap: 13px;
    margin: 22px 0 28px;
    padding: 14px 16px;
}

.ve-event-age-notice strong {
    color: var(--ve-wine-700);
    font-size: 23px;
}

.ve-event-age-notice span {
    font-size: 14px;
    line-height: 1.5;
}

.ve-booking__age {
    border-top: 1px solid var(--ve-border);
    color: var(--ve-secondary);
    font-size: 12px;
    line-height: 1.45;
    margin: 14px 0 0;
    padding-top: 12px;
}

.ve-booking__age strong {
    color: var(--ve-wine-700);
}

@media (max-width: 1120px) {
    .ve-header__logo {
        width: 174px;
    }

    .ve-header__link {
        font-size: 13px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .ve-header__cta {
        display: none;
    }

    .ve-event-grid,
    .ve-step-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .ve-header__inner {
        justify-content: space-between;
        min-height: 68px;
    }

    .ve-header__nav-shell {
        background: var(--ve-bg);
        display: block;
        height: 100dvh;
        left: auto;
        max-width: 420px;
        overflow-y: auto;
        padding: 20px;
        position: fixed;
        right: 0;
        top: 0;
        transform: translateX(100%);
        transition: transform .25s ease;
        width: min(90vw, 420px);
        z-index: 1100;
    }

    .sp-mobile-nav-open .ve-header__nav-shell {
        transform: translateX(0);
    }

    .sp-mobile-nav-open::before {
        background: rgba(43, 43, 43, .42);
        content: "";
        inset: 0;
        position: fixed;
        z-index: 1050;
    }

    .ve-header__drawer-bar {
        align-items: center;
        display: flex;
        justify-content: space-between;
        margin-bottom: 18px;
    }

    .ve-header__nav {
        align-items: stretch;
        flex-direction: column;
    }

    .ve-header__link {
        border-bottom: 1px solid var(--ve-border);
        border-radius: 0;
        font-size: 16px;
        padding: 14px 5px;
    }

    .ve-mega__trigger-row {
        border-bottom: 1px solid var(--ve-border);
        justify-content: space-between;
    }

    .ve-mega__trigger-row .ve-header__link {
        border: 0;
        flex: 1;
    }

    .ve-mega__toggle {
        height: 46px;
        margin: 0;
        width: 46px;
    }

    .ve-mega__panel {
        background: var(--ve-bg-alt);
        border: 0;
        box-shadow: none;
        display: none;
        grid-template-columns: 1fr;
        opacity: 1;
        padding: 16px;
        pointer-events: auto;
        position: static;
        transform: none;
        visibility: visible;
        width: 100%;
    }

    .ve-mega:hover .ve-mega__panel,
    .ve-mega:focus-within .ve-mega__panel {
        display: none;
    }

    .ve-mega.is-open .ve-mega__panel {
        display: grid;
    }

    .ve-header .sp-header__burger {
        display: inline-flex;
    }

    .ve-split,
    .ve-event-detail-layout {
        grid-template-columns: 1fr;
    }

    .ve-host__inner {
        align-items: stretch;
    }

    .ve-host__inner > img {
        flex-basis: 300px;
        width: 300px;
    }

    .ve-events-layout {
        grid-template-columns: 1fr;
    }

    .ve-events-filters,
    .ve-booking {
        position: static;
    }

    .ve-events-filters form {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ve-filter-checks,
    .ve-filter-reset {
        align-self: end;
    }

    .ve-booking {
        grid-row: 1;
    }

    .ve-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .ve-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ve-header__logo,
    .ve-header__logo img {
        max-width: 168px;
    }

    .ve-header__cart {
        height: 38px;
        width: 38px;
    }

    .ve-home-hero {
        align-items: flex-end;
        min-height: 650px;
    }

    .ve-home-hero__overlay {
        background: linear-gradient(180deg, rgba(243, 237, 230, .3) 0%, rgba(243, 237, 230, .94) 35%, rgba(243, 237, 230, 1) 100%);
    }

    .ve-home-hero__inner {
        padding-bottom: 38px;
        padding-top: 120px;
    }

    .ve-home-hero h1 {
        font-size: 36px;
    }

    .ve-home-hero__text {
        font-size: 16px;
        line-height: 1.5;
    }

    .ve-home-search {
        grid-template-columns: 1fr;
    }

    .ve-home-search .ve-button {
        width: 100%;
    }

    .ve-home-hero__stats {
        display: grid;
        gap: 18px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ve-home-hero__stats strong {
        font-size: 22px;
    }

    .ve-home-hero__stats span {
        font-size: 10px;
    }

    .ve-section {
        padding: 56px 0;
    }

    .ve-section-heading--row {
        align-items: flex-start;
        flex-direction: column;
    }

    .ve-event-grid,
    .ve-events-results .ve-event-grid,
    .ve-step-grid,
    .ve-format-grid,
    .ve-article-grid,
    .ve-event-info-grid,
    .ve-pours {
        grid-template-columns: 1fr;
    }

    .ve-event-location__content {
        grid-template-columns: 1fr;
    }

    .ve-event-location__image {
        aspect-ratio: 4 / 3;
    }

    .ve-split {
        gap: 34px;
    }

    .ve-winery-mosaic {
        grid-template-columns: 1fr;
    }

    .ve-winery-mosaic__more {
        grid-column: auto;
    }

    .ve-host__inner {
        flex-direction: column;
        gap: 30px;
    }

    .ve-host__inner > img {
        flex-basis: auto;
        height: 280px;
        width: 100%;
    }

    .ve-newsletter__inner {
        grid-template-columns: 1fr;
    }

    .ve-newsletter .static_form_top p,
    .ve-newsletter .static_form_top {
        grid-template-columns: 1fr;
    }

    .ve-events-filters form {
        display: flex;
    }

    .ve-events-results__bar,
    .ve-event-group > header,
    .ve-private-cta,
    .ve-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .ve-events-results__bar form,
    .ve-events-results select {
        width: 100%;
    }

    .ve-event-group > header span {
        display: none;
    }

    .ve-event-group > header {
        gap: 3px;
    }

    .ve-event-detail h1 {
        font-size: 34px;
    }

    .ve-event-detail__image {
        height: 260px;
    }

    .ve-program > div {
        gap: 12px;
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .ve-booking__price strong {
        font-size: 28px;
    }

    .ve-footer__grid {
        grid-template-columns: 1fr;
    }

    .ve-footer__bottom div {
        flex-direction: column;
        gap: 6px;
    }
}

/* Compact WooCommerce sale price shared by every product-card variant. */
.ve-card-price {
    align-items: baseline;
    display: inline-flex;
    flex: 0 1 auto;
    flex-wrap: wrap;
    gap: 3px 7px;
    line-height: 1.15;
    max-width: 100%;
}

.ve-card-price del,
.ve-card-price ins {
    align-items: baseline;
    display: inline-flex;
    white-space: nowrap;
}

.ve-card-price del {
    color: var(--ve-muted);
    font-family: var(--ve-body);
    font-size: .72em;
    font-weight: 500;
    text-decoration-color: currentColor;
    text-decoration-thickness: 1px;
}

.ve-card-price ins {
    color: inherit;
    font: inherit;
    text-decoration: none;
}

.ve-catalog-wine-card footer .ve-card-price .amount,
.ve-wine-catalog .ve-wine-card--home footer .ve-card-price .amount,
.ve-wine-catalog .ve-wine-featured footer .ve-card-price .amount,
.ve-catalog-wine-card footer .ve-card-price .woocommerce-Price-currencySymbol,
.ve-wine-catalog .ve-wine-card--home footer .ve-card-price .woocommerce-Price-currencySymbol,
.ve-wine-catalog .ve-wine-featured footer .ve-card-price .woocommerce-Price-currencySymbol {
    color: inherit;
    font: inherit;
}

.ve-card-price > .screen-reader-text {
    font-family: inherit;
    font-size: inherit;
}

/* Homepage refinements from the events prototype. */
.ve-header__nearest {
    border-left: 1px solid var(--ve-border);
    color: var(--ve-wine-700);
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    padding-left: 12px;
    text-decoration: none;
    white-space: nowrap;
}

.ve-header__nearest span {
    color: var(--ve-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ve-header__nearest strong {
    font-size: 12px;
    margin-top: 4px;
}

.ve-button--ghost {
    background: transparent;
    border-color: transparent;
    color: var(--ve-wine-700);
}

.ve-button--ghost:hover {
    background: var(--ve-bg-alt);
    border-color: var(--ve-border);
    color: var(--ve-wine-700);
}

.ve-catalog-cta {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.ve-catalog-cta .ve-button {
    gap: 9px;
    min-height: 50px;
    min-width: 230px;
}

.ve-filter-empty {
    color: var(--ve-secondary);
    margin: 28px 0 0;
    text-align: center;
}

.ve-event-card[hidden],
.ve-wine-card[hidden],
.ve-wine-featured[hidden] {
    display: none;
}

.ve-format-card,
.ve-step,
.ve-event-card {
    border-radius: 16px;
}

.ve-format-card__tags {
    gap: 8px;
}

.ve-format-card__tags span {
    align-items: center;
    background: #f7f1ec;
    border-color: #e1d4cb;
    color: #65524c;
    display: inline-flex;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    min-height: 25px;
    padding: 6px 10px;
}

.ve-about {
    padding-bottom: 84px;
    padding-top: 42px;
}

.ve-about__header {
    align-items: baseline;
    border-top: 1px solid #b8a59a;
    display: flex;
    gap: 24px 48px;
    padding-top: 24px;
}

.ve-about__header .ve-eyebrow {
    flex: 0 0 auto;
    padding-top: 10px;
}

.ve-about__header h2 {
    color: var(--ve-wine-700);
    flex: 1 1 560px;
    font-family: var(--ve-display);
    font-size: clamp(30px, 3.9vw, 44px);
    font-weight: 600;
    line-height: 1.14;
    margin: 0;
}

.ve-about__copy {
    display: grid;
    gap: 48px;
    grid-template-columns: 100px repeat(2, minmax(0, 1fr));
    margin-top: 30px;
}

.ve-about__copy p {
    color: var(--ve-secondary);
    font-size: 16px;
    line-height: 1.72;
    margin: 0;
}

.ve-about__gallery {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 44px;
}

.ve-about__gallery figure {
    margin: 0;
}

.ve-about__gallery img {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    display: block;
    object-fit: cover;
    width: 100%;
}

.ve-about__gallery figcaption {
    color: var(--ve-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    margin-top: 10px;
    text-transform: uppercase;
}

.ve-about__footer {
    align-items: flex-end;
    border-top: 1px solid #b8a59a;
    display: flex;
    gap: 28px 48px;
    justify-content: space-between;
    margin-top: 44px;
    padding-top: 24px;
}

.ve-about__stats,
.ve-about__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 48px;
}

.ve-about__stats div {
    display: flex;
    flex-direction: column;
    max-width: 170px;
}

.ve-about__stats strong {
    color: var(--ve-wine-700);
    font-family: var(--ve-display);
    font-size: 32px;
    line-height: 1;
}

.ve-about__stats span {
    color: var(--ve-muted);
    font-size: 13px;
    line-height: 1.4;
    margin-top: 8px;
}

.ve-wineries-feature {
    padding-top: 34px;
}

.ve-wineries-feature__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.ve-wineries-feature__actions .ve-button {
    margin-top: 0;
}

.ve-winery-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ve-winery-mosaic > a:not(.ve-winery-mosaic__more) {
    border: 1px solid var(--ve-border);
    border-radius: 14px;
    box-shadow: var(--ve-shadow-sm);
}

.ve-winery-mosaic > a > span em {
    color: rgba(243, 237, 230, .72);
    font-size: 11px;
    font-style: normal;
    line-height: 1.35;
    margin-top: 4px;
}

.ve-winery-mosaic__more {
    border-radius: 14px;
}

.ve-winery-regions {
    display: grid;
    gap: 10px;
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ve-winery-regions > div {
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    padding: 12px 14px;
}

.ve-winery-regions strong {
    color: var(--ve-wine-700);
    font-family: var(--ve-display);
    font-size: 22px;
}

.ve-winery-regions span {
    color: var(--ve-secondary);
    font-size: 11px;
    line-height: 1.3;
    margin-top: 5px;
}

.ve-wine-catalog {
    padding-top: 20px;
}

.ve-wine-catalog .ve-section-heading {
    max-width: 650px;
}

.ve-wine-catalog .ve-chip-row {
    margin-top: 24px;
}

.ve-wine-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.ve-wine-featured {
    background: #302226;
    border-radius: 16px;
    box-shadow: var(--ve-shadow-sm);
    color: var(--ve-bg);
    display: flex;
    gap: 24px;
    grid-column: span 2;
    padding: 26px 28px;
    text-decoration: none;
}

.ve-wine-featured:hover {
    color: var(--ve-bg);
}

.ve-wine-featured__image {
    align-self: stretch;
    background: var(--ve-bg-alt);
    border: 1px solid rgba(243, 237, 230, .3);
    border-radius: 10px;
    flex: 0 0 116px;
    min-height: 210px;
    overflow: hidden;
    position: relative;
}

.ve-wine-featured__image img,
.ve-wine-card__image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.ve-wine-featured__image span {
    background: rgba(251, 247, 243, .9);
    bottom: 0;
    color: var(--ve-muted);
    font-size: 10px;
    font-weight: 700;
    left: 0;
    letter-spacing: .1em;
    padding: 6px;
    position: absolute;
    right: 0;
    text-align: center;
}

.ve-wine-featured__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
}

.ve-wine-featured__meta,
.ve-wine-card__meta,
.ve-wine-featured footer,
.ve-wine-card footer {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.ve-wine-featured__meta .ve-badge {
    position: static;
}

.ve-wine-featured__meta strong,
.ve-wine-card__meta strong {
    color: var(--ve-terracotta-300);
    font-size: 12px;
}

.ve-wine-featured h3 {
    color: var(--ve-bg);
    font-family: var(--ve-display);
    font-size: 27px;
    font-weight: 600;
    line-height: 1.2;
    margin: 12px 0 0;
}

.ve-wine-featured__body > small {
    color: rgba(243, 237, 230, .6);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    margin-top: 8px;
    text-transform: uppercase;
}

.ve-wine-featured p {
    color: rgba(243, 237, 230, .8);
    font-size: 14px;
    line-height: 1.6;
    margin: 12px 0 0;
}

.ve-wine-featured footer {
    color: var(--ve-bg);
    font-size: 13px;
    margin-top: auto;
    padding-top: 18px;
}

.ve-wine-featured footer strong {
    color: var(--ve-terracotta-300);
}

.ve-wine-card {
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: 16px;
    box-shadow: var(--ve-shadow-sm);
    color: inherit;
    display: flex;
    gap: 16px;
    padding: 18px;
    text-decoration: none;
    transition: box-shadow .2s ease, transform .2s ease;
}

.ve-wine-card:hover {
    box-shadow: var(--ve-shadow-md);
    color: inherit;
    transform: translateY(-2px);
}

.ve-wine-card__image {
    align-self: stretch;
    background: var(--ve-bg-alt);
    border: 1px solid var(--ve-border);
    border-radius: 10px;
    flex: 0 0 72px;
    min-height: 132px;
    overflow: hidden;
}

.ve-wine-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
}

.ve-wine-card__meta span {
    align-items: center;
    color: var(--ve-muted);
    display: flex;
    font-size: 10px;
    font-weight: 700;
    gap: 7px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ve-wine-card__meta span > i {
    background: var(--ve-wine-700);
    border-radius: 50%;
    height: 9px;
    width: 9px;
}

.ve-wine-card[data-wine-color="white"] .ve-wine-card__meta span > i { background: #d5ba5a; }
.ve-wine-card[data-wine-color="rose"] .ve-wine-card__meta span > i { background: #d98b7e; }
.ve-wine-card[data-wine-color="orange"] .ve-wine-card__meta span > i { background: #c47a3d; }

.ve-wine-card h3 {
    color: var(--ve-wine-700);
    font-family: var(--ve-display);
    font-size: 19px;
    line-height: 1.25;
    margin: 9px 0 0;
}

.ve-wine-card__body > p {
    color: var(--ve-secondary);
    font-size: 12px;
    line-height: 1.45;
    margin: 7px 0 0;
}

.ve-wine-card footer {
    border-top: 1px dashed var(--ve-border);
    flex-wrap: wrap;
    font-size: 11px;
    margin-top: auto;
    padding-top: 12px;
}

.ve-wine-card footer span {
    color: var(--ve-muted);
}

.ve-wine-card footer strong {
    color: var(--ve-wine-700);
}

.ve-wine-more {
    background: var(--ve-bg-alt);
    border: 1px dashed #b8a59a;
    border-radius: 16px;
    color: var(--ve-wine-700);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    padding: 20px;
    text-decoration: none;
}

.ve-wine-more span {
    color: var(--ve-secondary);
    display: flex;
    flex-direction: column;
    font-size: 13px;
    line-height: 1.45;
}

.ve-wine-more strong {
    color: var(--ve-wine-700);
    font-family: var(--ve-display);
    font-size: 30px;
    line-height: 1;
    margin-bottom: 8px;
}

.ve-wine-more small {
    color: var(--ve-muted);
    line-height: 1.45;
}

.ve-article-card {
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(58, 34, 40, .07);
    transition: box-shadow .2s ease, transform .2s ease;
}

.ve-article-card:hover {
    box-shadow: var(--ve-shadow-md);
    transform: translateY(-2px);
}

.ve-article-card > img {
    height: 160px;
}

.ve-article-card > div {
    padding: 20px 22px 22px;
}

.ve-newsletter {
    background: transparent;
    padding: 0 0 84px;
}

.ve-newsletter__panel {
    align-items: center;
    border-radius: 20px;
    display: flex;
    min-height: 380px;
    overflow: hidden;
    position: relative;
}

.ve-newsletter__panel > img,
.ve-newsletter__overlay {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.ve-newsletter__panel > img {
    object-fit: cover;
}

.ve-newsletter__overlay {
    background: linear-gradient(95deg, rgba(58, 34, 40, .96) 0%, rgba(58, 34, 40, .88) 48%, rgba(58, 34, 40, .36) 100%);
}

.ve-newsletter__content {
    box-sizing: border-box;
    max-width: 650px;
    padding: clamp(30px, 5vw, 56px);
    position: relative;
    width: 100%;
}

.ve-newsletter__content h2 {
    color: var(--ve-bg);
}

.ve-newsletter__content > p {
    font-size: 17px;
    margin: 14px 0 24px;
}

.ve-newsletter__content > small {
    color: rgba(243, 237, 230, .62);
    display: block;
    font-size: 12px;
    margin-top: 12px;
}

.ve-newsletter .static_form_top {
    display: block;
    max-width: 480px;
    width: 100%;
}

.ve-newsletter .static_form_top > p {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    width: 100%;
}

.ve-newsletter .static_form_top .wpcf7-form-control-wrap {
    min-width: 0;
}

.ve-newsletter .static_form_top input {
    box-sizing: border-box;
    height: 46px;
    min-width: 0;
}

.ve-newsletter .static_form_bot {
    display: block;
    margin-top: 16px;
}

.ve-newsletter .static_form_bot > p {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    justify-content: flex-start;
    margin: 0;
}

.ve-newsletter .wpcf7-submit {
    flex: 0 0 auto;
    min-height: 50px;
    min-width: 190px;
    padding-left: 22px;
    padding-right: 22px;
}

.ve-newsletter [data-name="tel-659"],
.ve-newsletter [data-name="acceptance-861"],
.ve-newsletter .wpcf7-acceptance {
    display: none;
}

.ve-newsletter .static_form_bot .ve-newsletter__note {
    color: rgba(243, 237, 230, .62);
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
}

.ve-newsletter__form .wpcf7-spinner {
    margin: 0;
}

.ve-newsletter__form .wpcf7-response-output {
    color: var(--ve-bg);
    font-size: 13px;
    margin: 14px 0 0;
}

@media (max-width: 1240px) {
    .ve-header__nearest {
        display: none;
    }
}

@media (max-width: 991px) {
    .ve-about__copy {
        gap: 28px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ve-about__copy > span {
        display: none;
    }

    .ve-about__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .ve-winery-mosaic {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ve-wine-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .ve-about__header,
    .ve-about__copy,
    .ve-about__gallery {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ve-about__header {
        gap: 14px;
    }

    .ve-about__header .ve-eyebrow {
        padding-top: 0;
    }

    .ve-about__copy {
        gap: 18px;
    }

    .ve-about__gallery {
        gap: 26px;
    }

    .ve-about__stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ve-winery-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ve-winery-mosaic__more,
    .ve-winery-regions {
        grid-column: 1 / -1;
    }

    .ve-winery-regions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ve-wine-grid {
        grid-template-columns: 1fr;
    }

    .ve-wine-featured {
        flex-direction: column;
        grid-column: auto;
        padding: 22px;
    }

    .ve-wine-featured__image {
        align-self: auto;
        height: 250px;
        min-height: 0;
        width: 116px;
    }

    .ve-newsletter__panel {
        min-height: 440px;
    }

    .ve-newsletter .static_form_top > p {
        grid-template-columns: 1fr;
    }

    .ve-newsletter__content {
        padding: 30px 24px;
    }

    .ve-newsletter .static_form_bot > p {
        align-items: flex-start;
        flex-direction: column;
    }

    .ve-newsletter .wpcf7-submit {
        width: 100%;
    }
}

/* Responsive behavior aligned with the approved events prototype. */
.ve-filter-toggle {
    display: none;
}

@media (max-width: 991px) {
    .ve-header__inner {
        flex-wrap: nowrap;
        gap: 12px;
        min-height: 60px;
        padding: 9px 18px;
    }

    .ve-header__logo {
        width: auto;
    }

    .ve-header__logo img {
        height: 30px;
        max-width: none;
    }

    .ve-header__actions {
        margin-left: auto;
    }

    .ve-header__cart,
    .ve-header__cta,
    .ve-header__nearest {
        display: none;
    }

    .ve-header .sp-header__burger {
        background: var(--ve-surface);
        border: 1px solid var(--ve-border);
        border-radius: 12px;
        color: var(--ve-wine-700);
        cursor: pointer;
        display: inline-flex;
        height: 44px;
        transition: background-color .15s ease, border-color .15s ease;
        width: 44px;
    }

    .ve-header .sp-header__burger:hover {
        background: var(--ve-bg-alt);
        border-color: var(--ve-muted);
    }

    .ve-header .sp-header__burger:focus-visible {
        outline: 2px solid var(--ve-terracotta-500);
        outline-offset: 2px;
    }

    .ve-header .sp-header__burger i {
        align-items: center;
        font-size: 20px;
        height: 20px;
        justify-content: center;
        line-height: 1;
        width: 20px;
    }

    .sp-mobile-nav-open .ve-header__burger-open {
        display: none;
    }

    .sp-mobile-nav-open .ve-header__burger-close {
        display: inline-block;
    }

    .ve-header__nav-shell {
        background: var(--ve-surface);
        border-top: 1px solid var(--ve-border);
        bottom: auto;
        box-shadow: var(--ve-shadow-md);
        display: none;
        flex: none;
        flex-direction: column;
        gap: 2px;
        height: auto;
        left: 0;
        margin: 0;
        max-height: calc(100dvh - 60px);
        max-width: none;
        min-height: 0;
        overflow-y: auto;
        padding: 12px 18px 20px;
        position: absolute;
        right: 0;
        top: 60px;
        width: 100%;
    }

    .sp-mobile-nav-open .ve-header__nav-shell {
        display: flex;
    }

    .sp-mobile-nav-open::before {
        display: none;
    }

    .ve-header__drawer-bar {
        display: none;
    }

    .ve-header__nav {
        gap: 2px;
    }

    .ve-header__link,
    .ve-mega__trigger-row .ve-header__link {
        align-items: center;
        display: flex;
        font-size: 17px;
        font-weight: 500;
        justify-content: space-between;
        padding: 13px 4px;
        width: 100%;
    }

    .ve-mega__trigger-row .ve-header__link {
        color: var(--ve-wine-700);
        gap: 10px;
        font-weight: 600;
        justify-content: flex-start;
        padding-bottom: 12px;
        padding-top: 12px;
    }

    .ve-header__link--mobile-only {
        display: flex;
    }

    .ve-header__link--mobile-hidden {
        display: none;
    }

    .ve-header__nav > .ve-header__link:last-child {
        border-bottom: 0;
    }

    .ve-header__event-count {
        color: var(--ve-muted);
        display: inline;
        font-size: 13px;
        font-weight: 500;
    }

    .ve-mega__toggle {
        border-left: 0;
        display: inline-flex;
        flex: 0 0 18px;
        height: 48px;
        margin: 0;
        width: 18px;
    }

    .ve-mega__toggle i {
        font-size: 11px;
    }

    .ve-mega__panel {
        background: transparent;
        border: 0;
        border-left: 1px solid var(--ve-border);
        border-radius: 0;
        box-shadow: none;
        display: none;
        margin-left: 6px;
        opacity: 1;
        padding: 0 4px 8px 14px;
        pointer-events: auto;
        position: static;
        transform: none;
        visibility: visible;
        width: 100%;
    }

    .ve-mega.is-open .ve-mega__panel {
        display: block;
    }

    .ve-mega__panel .ve-mega__featured,
    .ve-mega__column > p {
        display: none;
    }

    .ve-mega__column {
        display: flex;
        gap: 0;
    }

    .ve-mega__column a {
        align-items: center;
        background: transparent;
        border: 0;
        border-radius: 0;
        color: var(--ve-secondary);
        display: flex;
        font-size: 15px;
        font-weight: 500;
        justify-content: flex-start;
        line-height: 1.25;
        min-height: 40px;
        padding: 0;
        text-align: left;
    }

    .ve-mega__column a:hover {
        background: transparent;
        color: var(--ve-wine-700);
    }

    .ve-mega__column .ve-mega__all {
        color: var(--ve-wine-700);
        display: flex;
        font-weight: 600;
    }

    .ve-mobile-nearest {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
    }

    .ve-mobile-nearest__head {
        align-items: center;
        display: flex;
        gap: 10px;
        justify-content: space-between;
    }

    .ve-mobile-nearest__head > span {
        color: var(--ve-terracotta-600);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .ve-mobile-nearest__head > a {
        color: var(--ve-muted);
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
    }

    .ve-mobile-nearest__card {
        background: var(--ve-bg-alt);
        border: 1px solid var(--ve-border);
        border-radius: 14px;
        box-shadow: var(--ve-shadow-sm);
        color: var(--ve-ink);
        display: flex;
        gap: 12px;
        padding: 12px;
        text-decoration: none;
    }

    .ve-mobile-nearest__image {
        border-radius: 10px;
        flex: 0 0 84px;
        height: 96px;
        overflow: hidden;
        position: relative;
    }

    .ve-mobile-nearest__image > img {
        height: 100%;
        object-fit: cover;
        width: 100%;
    }

    .ve-mobile-nearest__image > span {
        background: rgba(58, 34, 40, .82);
        bottom: 0;
        color: #fff;
        display: flex;
        flex-direction: column;
        font-size: 9px;
        left: 0;
        letter-spacing: .1em;
        padding: 5px 6px;
        position: absolute;
        right: 0;
        text-align: center;
        text-transform: uppercase;
    }

    .ve-mobile-nearest__image strong {
        font-family: var(--ve-display);
        font-size: 16px;
        letter-spacing: 0;
        line-height: 1;
    }

    .ve-mobile-nearest__body {
        display: flex;
        flex: 1 1 0;
        flex-direction: column;
        gap: 5px;
        min-width: 0;
    }

    .ve-mobile-nearest__body > small {
        color: var(--ve-terracotta-600);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .ve-mobile-nearest__body > strong {
        color: var(--ve-wine-700);
        font-size: 15px;
        line-height: 1.3;
    }

    .ve-mobile-nearest__body > em {
        color: var(--ve-muted);
        font-size: 12px;
        font-style: normal;
        line-height: 1.35;
    }

    .ve-mobile-nearest__body > span {
        align-items: baseline;
        display: flex;
        gap: 8px;
        margin-top: auto;
    }

    .ve-mobile-nearest__body b {
        font-family: var(--ve-display);
        font-size: 18px;
    }

    .ve-mobile-nearest__body i {
        color: var(--ve-terracotta-600);
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
    }

    .ve-mobile-nearest__button {
        background: var(--ve-wine-700);
        border-color: var(--ve-wine-700);
        font-size: 17px;
        min-height: 50px;
        width: 100%;
    }
}

@media (max-width: 900px) {
    .ve-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .ve-home-hero {
        align-items: center;
        min-height: 0;
    }

    .ve-home-hero__image {
        object-position: 50% 72%;
    }

    .ve-home-hero__overlay {
        background: linear-gradient(180deg, rgba(243, 237, 230, .42) 0%, rgba(243, 237, 230, .8) 14%, rgba(243, 237, 230, .93) 34%, rgba(243, 237, 230, .9) 100%);
    }

    .ve-home-hero__inner {
        padding-bottom: 40px;
        padding-top: 22px;
    }

    .ve-home-search {
        border-radius: 16px;
    }

    .ve-home-search label {
        font-size: 14px;
        font-weight: 400;
        gap: 8px;
    }

    .ve-home-search select {
        border-radius: 12px;
        font-size: 16px;
        height: 48px;
    }

    .ve-home-search .ve-button {
        min-height: 54px;
    }

    .ve-home-hero__stats {
        border-bottom: 1px solid var(--ve-border);
        border-top: 1px solid var(--ve-border);
        gap: 0;
        margin-top: 26px;
        padding: 14px 4px;
    }

    .ve-home-hero__stats div {
        border-left: 1px solid var(--ve-border);
        min-width: 0;
        padding: 0 6px;
        text-align: center;
    }

    .ve-home-hero__stats div:first-child {
        border-left: 0;
    }

    .ve-section {
        padding-bottom: 52px;
        padding-top: 52px;
    }

    .ve-format-grid {
        display: flex;
        gap: 14px;
        margin: 26px -18px 0;
        overflow-x: auto;
        padding: 4px 18px;
        scroll-padding-left: 18px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .ve-format-grid::-webkit-scrollbar {
        display: none;
    }

    .ve-format-grid > * {
        flex: 0 0 82%;
        scroll-snap-align: start;
    }

    .ve-format-card__media {
        height: 150px;
    }

    .ve-events-archive__intro {
        padding-top: 20px;
    }

    .ve-events-archive__body {
        padding-bottom: 52px;
        padding-top: 22px;
    }

    .ve-filter-toggle {
        align-items: center;
        background: transparent;
        border: 0;
        color: var(--ve-wine-700);
        display: flex;
        font-size: 15px;
        font-weight: 700;
        justify-content: space-between;
        padding: 0;
        width: 100%;
    }

    .ve-filter-toggle span {
        align-items: center;
        display: flex;
        gap: 8px;
    }

    .ve-filter-toggle em {
        color: var(--ve-muted);
        font-size: 13px;
        font-style: normal;
        font-weight: 600;
    }

    .ve-events-filters {
        max-width: none;
        padding: 14px 16px;
        width: 100%;
    }

    .ve-events-filters form {
        display: none;
        margin-top: 18px;
    }

    .ve-events-filters.is-open form {
        display: flex;
    }

    .ve-booking {
        grid-row: auto;
    }

    .ve-event-single__body {
        padding-bottom: 52px;
    }

    .ve-event-detail__image {
        border-radius: 18px;
        height: clamp(230px, 62vw, 360px);
    }

    .ve-event-detail h1 {
        font-size: 30px;
    }

    .ve-event-detail__meta {
        gap: 10px 22px;
    }

    .ve-event-detail__meta span {
        font-size: 15px;
    }

    .ve-event-detail__meta i {
        display: none;
    }

    .ve-event-detail__lead {
        font-size: 18px;
    }

    .ve-event-location__media {
        grid-template-columns: 1fr;
    }

    .ve-event-location__image,
    .ve-event-location__map-wrap {
        height: 150px;
    }

    .ve-mobile-booking-bar {
        align-items: center;
        background: rgba(255, 255, 255, .97);
        border-top: 1px solid var(--ve-border);
        bottom: 0;
        box-shadow: 0 -8px 24px rgba(58, 34, 40, .14);
        display: flex;
        gap: 14px;
        justify-content: space-between;
        left: 0;
        padding: 10px 18px calc(10px + env(safe-area-inset-bottom));
        position: fixed;
        right: 0;
        z-index: 1200;
    }

    .ve-mobile-booking-bar > div {
        align-items: baseline;
        display: flex;
        flex-wrap: wrap;
        gap: 4px 6px;
        min-width: 0;
    }

    .ve-mobile-booking-bar strong {
        color: var(--ve-ink);
        font-family: var(--ve-display);
        font-size: 22px;
        line-height: 1;
    }

    .ve-mobile-booking-bar > div > span {
        color: var(--ve-muted);
        font-size: 13px;
    }

    .ve-mobile-booking-bar strong del,
    .ve-mobile-booking-bar strong ins {
        display: inline-flex;
        white-space: nowrap;
    }

    .ve-mobile-booking-bar strong del {
        color: var(--ve-muted);
        font-size: .68em;
        margin-right: 4px;
    }

    .ve-mobile-booking-bar strong ins {
        color: inherit;
        text-decoration: none;
    }

    .ve-mobile-booking-bar small {
        color: var(--ve-terracotta-600);
        flex-basis: 100%;
        font-size: 12px;
        font-weight: 600;
    }

    .ve-mobile-booking-bar .ve-event-ticket-form,
    .ve-mobile-booking-bar .ve-button {
        flex: 0 0 auto;
    }

    .ve-mobile-booking-bar .ve-button {
        min-height: 44px;
    }

    .ve-event-single {
        padding-bottom: 74px;
    }
}

@media (max-width: 560px) {
    .ve-section {
        padding-bottom: 42px;
        padding-top: 42px;
    }

    .ve-home-hero h1 {
        font-size: 36px;
    }

    .ve-event-location {
        padding: 20px;
    }

    .ve-event-location dl {
        grid-template-columns: 1fr;
    }

    .ve-event-location__tabs button {
        flex-basis: 100%;
    }

    .ve-event-location__details-link {
        width: 100%;
    }

    .ve-event-program__tabs button {
        flex: 1 1 128px;
    }

    .ve-event-program__item {
        grid-template-columns: 52px 18px minmax(0, 1fr);
    }

    .ve-event-program__item time {
        font-size: 15px;
    }

    .ve-event-program__item > div {
        padding-left: 8px;
    }

    .ve-footer__grid {
        grid-template-columns: 1fr;
    }

    .ve-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Final alignment with the responsive events reference. */
@media (min-width: 992px) {
    .ve-header__inner {
        gap: 20px;
    }

    .ve-header__logo {
        width: auto;
    }

    .ve-header__nav-shell {
        flex: 1 1 auto;
    }

    .ve-header__nav {
        justify-content: flex-start;
    }
}

.ve-formats .ve-format-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr);
    margin: 36px auto 0;
    max-width: 1000px;
}

.ve-formats .ve-format-card {
    flex-direction: row;
}

.ve-formats .ve-format-card > .ve-format-card__media {
    flex: 0 0 216px;
    height: auto;
    min-height: 158px;
    width: 216px;
}

.ve-formats .ve-format-card > .ve-format-card__body {
    align-items: center;
    display: flex;
    flex: 1 1 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px 24px;
    min-width: 0;
    padding: 18px 22px;
}

.ve-format-card__copy {
    flex: 1 1 300px;
    min-width: 0;
}

.ve-formats .ve-format-card__tags {
    margin-top: 12px;
}

.ve-formats .ve-format-card footer {
    align-self: stretch;
    border-left: 1px solid var(--ve-border);
    border-top: 0;
    flex: 0 0 150px;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 0 0 0 24px;
}

.ve-about__layout {
    align-items: center;
    display: grid;
    gap: clamp(36px, 5vw, 72px);
    grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
}

.ve-about__image {
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    width: 100%;
}

.ve-about__content > h2 {
    color: var(--ve-wine-700);
    font-family: var(--ve-display);
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 600;
    line-height: 1.15;
    margin: 14px 0 0;
}

.ve-about__content > p:not(.ve-eyebrow) {
    color: var(--ve-secondary);
    font-size: 17px;
    line-height: 1.7;
    margin: 20px 0 0;
}

.ve-about__content > p:not(.ve-eyebrow) + p {
    margin-top: 14px;
}

.ve-about__content .ve-about__stats {
    border-top: 1px solid #b8a59a;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 32px;
    padding-top: 26px;
}

.ve-about__content .ve-about__stats div {
    max-width: none;
}

.ve-about__content .ve-about__actions {
    gap: 12px;
    margin-top: 28px;
}

.ve-footer__brand > a {
    line-height: 0;
    overflow: visible;
    width: 112px;
}

.ve-footer__brand img {
    height: auto;
    max-height: none;
    max-width: 100%;
    object-fit: contain;
    width: 100%;
}

.ve-footer__socials a {
    background-image: none;
    box-shadow: none;
    text-decoration: none !important;
}

.ve-footer__socials a::after {
    display: none !important;
}

.ve-newsletter .static_form_top {
    max-width: 620px;
}

.ve-newsletter .static_form_top > p {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ve-newsletter .static_form_bot,
.ve-newsletter .static_form_bot > p {
    margin-left: 0;
    padding-left: 0;
}

.ve-newsletter .static_form_bot > p {
    justify-content: flex-start;
}

.ve-newsletter .wpcf7-submit {
    margin-left: 0 !important;
}

@media (max-width: 991px) {
    .ve-header.sp-header {
        margin: 0 !important;
    }

    .ve-header + main,
    .ve-header + .site-main,
    .ve-home-hero {
        margin-top: 0 !important;
    }

    .ve-header .sp-header__burger .ve-header__burger-open {
        display: inline-block !important;
    }

    .ve-header .sp-header__burger .ve-header__burger-close {
        display: none !important;
    }

    .sp-mobile-nav-open .ve-header .sp-header__burger .ve-header__burger-open {
        display: none !important;
    }

    .sp-mobile-nav-open .ve-header .sp-header__burger .ve-header__burger-close {
        display: inline-block !important;
    }
}

/*
 * Keep the mobile header visually attached to iOS browser chrome.
 *
 * Safari 26 renders its translucent toolbar over scrolled page content. A
 * sticky header can therefore be correctly positioned while the page behind
 * it remains visible in the obscured area above. The oversized, out-of-flow
 * backdrop follows the sticky header and paints that area without changing
 * document geometry. Safe-area padding keeps controls clear of notches in
 * edge-to-edge and standalone modes.
 */
@media (max-width: 991px) {
    .ve-header.sp-header {
        --ve-header-safe-top: env(safe-area-inset-top, 0px);
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        background: var(--ve-bg);
        isolation: isolate;
        padding-top: var(--ve-header-safe-top);
    }

    .ve-header.sp-header::before {
        background: var(--ve-bg);
        bottom: calc(100% - 1px);
        content: "";
        height: 100vh;
        height: 100lvh;
        left: 0;
        pointer-events: none;
        position: absolute;
        right: 0;
        z-index: -1;
    }

    .ve-header__inner {
        padding-left: max(18px, env(safe-area-inset-left, 0px));
        padding-right: max(18px, env(safe-area-inset-right, 0px));
    }

    .ve-header__nav-shell {
        max-height: calc(100dvh - 60px - var(--ve-header-safe-top));
        padding-bottom: max(20px, env(safe-area-inset-bottom, 0px));
        top: calc(60px + var(--ve-header-safe-top));
    }
}

@media (max-width: 900px) {
    .ve-formats .ve-format-grid {
        display: flex;
        gap: 14px;
        margin: 26px -18px 0;
        max-width: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 4px 18px;
        scroll-padding-left: 18px;
        scroll-snap-type: x mandatory;
    }

    .ve-formats .ve-format-card {
        flex: 0 0 82%;
        flex-direction: column;
        scroll-snap-align: start;
    }

    .ve-formats .ve-format-card > .ve-format-card__media {
        flex-basis: auto;
        height: 150px;
        min-height: 0;
        width: 100%;
    }

    .ve-formats .ve-format-card > .ve-format-card__body {
        align-items: stretch;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 0;
        padding: 18px 22px;
    }

    .ve-format-card__copy {
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
    }

    .ve-formats .ve-format-card footer {
        align-items: center;
        border-left: 0;
        border-top: 1px solid var(--ve-border);
        flex: 0 0 auto;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 18px;
        padding: 14px 0 0;
        width: 100%;
    }

    .ve-about__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .ve-about__image {
        aspect-ratio: 3 / 2;
    }

    .ve-about__content .ve-about__stats {
        gap: 0;
    }

    .ve-about__content .ve-about__stats > div {
        border-left: 1px solid var(--ve-border);
        padding: 0 10px;
    }

    .ve-about__content .ve-about__stats > div:first-child {
        border-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .ve-newsletter .static_form_top > p {
        grid-template-columns: minmax(0, 1fr);
    }
}

.ve-formats .ve-format-card footer .ve-button {
    min-width: 132px;
    white-space: nowrap;
}

.ve-formats .ve-format-card footer {
    flex-basis: 170px;
}

/* Compact shared contact panel before the footer. */
.ve-footer-cta {
    padding: 0 0 56px;
}

.ve-footer-cta .ve-newsletter__panel {
    min-height: 300px;
}

.ve-footer-cta .ve-newsletter__overlay {
    background: linear-gradient(95deg, rgba(58, 34, 40, .97) 0%, rgba(58, 34, 40, .9) 58%, rgba(58, 34, 40, .42) 100%);
}

.ve-footer-cta .ve-newsletter__content {
    max-width: 1080px;
    padding: clamp(28px, 4vw, 42px);
}

.ve-footer-cta .ve-newsletter__content h2 {
    font-size: clamp(28px, 3.3vw, 38px);
}

.ve-footer-cta .ve-newsletter__content > p {
    margin: 10px 0 20px;
    max-width: 720px;
}

.ve-footer-cta .static_form_top {
    max-width: none;
}

.ve-footer-cta .static_form_top > p {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ve-footer-cta [data-name="tel-659"],
.ve-footer-cta [data-name="acceptance-861"],
.ve-footer-cta .wpcf7-acceptance {
    display: block;
}

.ve-footer-cta .static_form_bot,
.ve-footer-cta .static_form_bot > p {
    margin-top: 12px;
}

.ve-footer-cta .static_form_bot > p {
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
}

.ve-footer-cta [data-name="acceptance-861"] {
    flex: 1 1 420px;
}

.ve-footer-cta .wpcf7-acceptance label {
    align-items: flex-start;
    display: flex;
    gap: 8px;
}

.ve-footer-cta .wpcf7-acceptance input {
    flex: 0 0 auto;
    margin-top: 3px;
}

.ve-footer-cta .wpcf7-submit {
    background: var(--ve-bg);
    color: var(--ve-dark);
    margin-left: 0 !important;
    min-height: 46px;
}

@media (max-width: 1050px) {
    .ve-footer-cta .static_form_top > p {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .ve-footer-cta {
        padding: 0 0 40px;
    }

    .ve-footer-cta .ve-newsletter__panel {
        min-height: 0;
    }

    .ve-footer-cta .ve-newsletter__content {
        padding: 26px 20px;
    }

    .ve-footer-cta .static_form_top > p {
        grid-template-columns: minmax(0, 1fr);
    }

    .ve-footer-cta .static_form_bot > p {
        align-items: stretch;
        flex-direction: column;
    }

    .ve-footer-cta [data-name="acceptance-861"] {
        flex-basis: auto;
    }
}

/* Shared wine card used by events, wineries and the wine archive. */
.ve-wine-card:not(.ve-wine-card--home) {
    align-items: stretch;
    min-height: 248px;
    position: relative;
}

.ve-wine-card:not(.ve-wine-card--home) .ve-wine-card__image {
    flex-basis: 96px;
    min-height: 214px;
}

.ve-wine-card:not(.ve-wine-card--home) .ve-wine-card__image img {
    object-fit: contain;
}

.ve-wine-card__badge {
    align-self: flex-start;
    background: #f7f1ec;
    border: 1px solid #e1d4cb;
    border-radius: 999px;
    color: var(--ve-wine-700);
    font-size: 10px;
    font-weight: 700;
    margin-top: 8px;
    padding: 5px 8px;
}

.ve-wine-card__facts {
    display: grid;
    gap: 7px 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 12px 0 14px;
}

.ve-wine-card__facts div {
    min-width: 0;
}

.ve-wine-card__facts dt {
    color: var(--ve-muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.ve-wine-card__facts dd {
    color: var(--ve-secondary);
    font-size: 11px;
    line-height: 1.35;
    margin: 3px 0 0;
    overflow-wrap: anywhere;
}

.ve-wine-card:not(.ve-wine-card--home) footer span {
    color: var(--ve-wine-700);
    font-size: 14px;
    font-weight: 700;
}

.ve-wine-card:not(.ve-wine-card--home) footer strong {
    white-space: nowrap;
}

.ve-wine-card--featured {
    grid-column: span 2;
}

.ve-wine-card--featured .ve-wine-card__image {
    flex-basis: 132px;
}

.ve-wine-card--featured .ve-wine-card__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ve-event-wine-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.winery-top-wines.ve-wine-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 0;
}

@media (max-width: 900px) {
    .ve-formats .ve-format-card footer {
        flex-basis: auto;
    }

    .ve-wine-card--featured {
        grid-column: auto;
    }

    .ve-wine-card--featured .ve-wine-card__image {
        flex-basis: 96px;
    }

    .ve-wine-card--featured .ve-wine-card__facts,
    .ve-event-wine-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 480px) {
    .ve-wine-card:not(.ve-wine-card--home) {
        gap: 13px;
        padding: 14px;
    }

    .ve-wine-card:not(.ve-wine-card--home) .ve-wine-card__image,
    .ve-wine-card--featured .ve-wine-card__image {
        flex-basis: 82px;
    }

    .ve-wine-card__facts {
        gap: 7px 10px;
    }
}

/* The home showcase keeps the original compact, editorial wine cards. */
.ve-wine-catalog [data-home-wine-grid] > .ve-wine-featured,
.ve-wine-catalog [data-home-wine-grid] > .ve-wine-card--home {
    height: 236px;
    min-height: 236px;
    overflow: hidden;
}

.ve-wine-catalog .ve-wine-featured__image,
.ve-wine-catalog .ve-wine-card--home .ve-wine-card__image {
    height: auto;
    min-height: 0;
}

.ve-wine-catalog .ve-wine-featured__image img,
.ve-wine-catalog .ve-wine-card--home .ve-wine-card__image img {
    object-fit: contain;
}

.ve-wine-catalog .ve-wine-featured__body > small,
.ve-wine-catalog .ve-wine-card--home .ve-wine-card__body > p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.ve-wine-catalog .ve-wine-featured__body > small {
    -webkit-line-clamp: 2;
}

.ve-wine-catalog .ve-wine-featured p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ve-wine-catalog .ve-wine-card--home h3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ve-wine-catalog .ve-wine-card--home .ve-wine-card__body > p {
    -webkit-line-clamp: 3;
}

.ve-wine-catalog .ve-wine-featured footer span,
.ve-wine-catalog .ve-wine-card--home footer span {
    font-family: var(--ve-body);
    font-size: 13px;
    font-weight: 600;
}

.ve-wine-catalog .ve-wine-featured footer span {
    font-size: 15px;
}

@media (max-width: 767px) {
    .ve-wine-catalog .ve-wine-featured {
        flex-direction: row;
        gap: 16px;
        padding: 18px;
    }

    .ve-wine-catalog .ve-wine-featured__image {
        align-self: stretch;
        flex: 0 0 82px;
        height: auto;
        width: auto;
    }

    .ve-wine-catalog .ve-wine-featured p {
        display: none;
    }
}

/* Wine showcase on the home page. */
.ve-wine-catalog {
    padding: 84px 0 84px;
}

.ve-wine-catalog__heading {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}

.ve-wine-catalog__heading > a {
    color: var(--ve-wine-700);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.ve-wine-catalog [data-home-wine-grid] {
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.ve-wine-catalog [data-home-wine-panel][hidden] {
    display: none !important;
}

.ve-wine-catalog [data-home-wine-grid] > .ve-wine-featured,
.ve-wine-catalog [data-home-wine-grid] > .ve-wine-card--home {
    height: 236px;
    min-height: 236px;
    overflow: hidden;
}

.ve-wine-catalog .ve-wine-featured {
    flex-wrap: wrap;
}

.ve-wine-catalog .ve-wine-featured__image {
    flex: 0 0 116px;
    min-height: 0;
}

.ve-wine-catalog .ve-wine-featured__image,
.ve-wine-catalog .ve-wine-card--home .ve-wine-card__image {
    contain: paint;
    isolation: isolate;
    overflow: hidden;
    position: relative;
}

.ve-wine-catalog .ve-wine-featured__image img,
.ve-wine-catalog .ve-wine-card--home .ve-wine-card__image img {
    bottom: auto;
    display: block;
    height: 100%;
    left: 50%;
    max-height: none;
    max-width: none;
    position: absolute;
    right: auto;
    top: 0;
    transform: translateX(-50%);
    width: auto;
}

.ve-wine-catalog .ve-home-wine-image-glow {
    align-items: center;
    display: var(--sp-wine-card-glow-display, flex);
    inset: 3% -10% -2%;
    justify-content: center;
    opacity: .42;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.ve-wine-catalog .ve-home-wine-image-glow img {
    filter: blur(16px) saturate(2.2) brightness(1.08) contrast(1.04);
    transform: translateX(-50%) scale(1.12);
}

.ve-wine-catalog img.ve-home-wine-product-image {
    filter: var(--sp-wine-card-product-filter, drop-shadow(0 3px 4px rgba(35, 25, 28, .1)));
    z-index: 1;
}

.ve-wine-catalog .ve-wine-featured__image .ve-home-wine-image-glow img {
    filter: blur(18px) saturate(2.2) brightness(1.08) contrast(1.04);
}

.ve-wine-catalog .ve-wine-featured__details {
    align-items: center;
    color: rgba(243, 237, 230, .7);
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    gap: 8px 14px;
    line-height: 1.45;
    margin-top: 8px;
}

.ve-wine-catalog .ve-wine-featured__details strong {
    color: rgba(243, 237, 230, .6);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ve-wine-catalog .ve-wine-featured footer {
    border-top: 0;
    margin-top: 14px;
    padding-top: 0;
}

.ve-wine-catalog .ve-wine-featured footer span {
    color: var(--ve-bg);
    font-family: var(--ve-display);
    font-size: 20px;
    font-weight: 700;
}

.ve-wine-catalog .ve-wine-featured footer strong {
    font-size: 14px;
}

.ve-wine-catalog .ve-wine-card--home {
    gap: 16px;
    padding: 18px;
}

.ve-wine-catalog .ve-wine-card--home .ve-wine-card__image {
    flex: 0 0 72px;
    min-height: 0;
}

.ve-wine-catalog .ve-wine-card--home .ve-wine-card__body {
    gap: 8px;
}

.ve-wine-catalog .ve-wine-card--home .ve-wine-card__meta span {
    font-size: 11px;
}

.ve-wine-catalog .ve-wine-card--home h3,
.ve-wine-catalog .ve-wine-card--home .ve-wine-card__body > p {
    margin: 0;
}

.ve-wine-catalog .ve-wine-card--home .ve-wine-card__body > p {
    -webkit-line-clamp: 2;
    font-size: 13px;
}

.ve-wine-catalog .ve-wine-card--home .ve-wine-card__body > small {
    color: var(--ve-muted);
    font-size: 13px;
    line-height: 1.4;
}

.ve-wine-catalog .ve-wine-card--home footer {
    flex-wrap: wrap;
    margin-top: auto;
}

.ve-wine-catalog .ve-wine-card--home footer span {
    color: var(--ve-ink);
    font-family: var(--ve-display);
    font-size: 17px;
    font-weight: 700;
}

.ve-wine-catalog .ve-wine-card--home footer strong {
    font-size: 13px;
    white-space: nowrap;
}

/* Vertical wine card shared by the archive, events and winery pages. */
.ve-catalog-wine-card {
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: 16px;
    box-shadow: var(--ve-shadow-sm);
    color: inherit;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow .2s ease, transform .2s ease;
}

.ve-catalog-wine-card:hover {
    box-shadow: var(--ve-shadow-md);
    color: inherit;
    transform: translateY(-2px);
}

.ve-catalog-wine-card__image {
    align-items: center;
    aspect-ratio: 1 / 1;
    background: linear-gradient(165deg, var(--ve-surface) 0%, #f8f3ef 58%, var(--ve-bg) 100%);
    contain: paint;
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    min-height: 0;
    overflow: hidden;
    padding: 14px 0 10px;
    position: relative;
    isolation: isolate;
    width: 100%;
}

/*
 * The same decoded product image supplies the colour glow and the foreground.
 * Keeping both copies lazy avoids an eager background-image download while the
 * static, paint-contained filter remains considerably cheaper than canvas-based
 * colour extraction for every card in the grid.
 */
.ve-catalog-wine-card__image-glow {
    align-items: center;
    display: var(--sp-wine-card-glow-display, flex);
    inset: 6% 4% -1%;
    justify-content: center;
    opacity: .42;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.ve-catalog-wine-card__image-glow img {
    filter: blur(24px) saturate(2.2) brightness(1.08) contrast(1.04);
    height: 100%;
    max-height: 100%;
    max-width: 68%;
    object-fit: contain;
    transform: scale(1.13);
    width: auto;
}

.ve-catalog-wine-card__tasting-clip {
    align-items: center;
    background: var(--ve-wine-700);
    border-radius: 0 6px 6px 0;
    box-shadow: 0 5px 14px rgba(74, 18, 38, .2);
    color: #fff;
    display: inline-flex;
    font-size: 10px;
    font-weight: 700;
    gap: 6px;
    left: 0;
    letter-spacing: .04em;
    line-height: 1;
    padding: 8px 11px 8px 10px;
    pointer-events: none;
    position: absolute;
    text-transform: uppercase;
    top: 12px;
    z-index: 2;
}

.ve-catalog-wine-card__tasting-clip i {
    font-size: 10px;
}

@media (min-width: 769px) {
    .ve-catalog-wine-card__tasting-clip {
        box-sizing: border-box;
        gap: 0;
        height: 30px;
        justify-content: center;
        padding: 0;
        transition: width .22s ease, padding .22s ease, gap .22s ease;
        white-space: nowrap;
        width: 30px;
    }

    .ve-catalog-wine-card__tasting-clip > span {
        max-width: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-width .22s ease, opacity .14s ease;
    }

    .ve-catalog-wine-card__image:hover .ve-catalog-wine-card__tasting-clip,
    .ve-catalog-wine-card__image:focus-visible .ve-catalog-wine-card__tasting-clip {
        gap: 6px;
        justify-content: flex-start;
        padding: 0 11px 0 10px;
        width: 132px;
    }

    .ve-catalog-wine-card__image:hover .ve-catalog-wine-card__tasting-clip > span,
    .ve-catalog-wine-card__image:focus-visible .ve-catalog-wine-card__tasting-clip > span {
        max-width: 96px;
        opacity: 1;
    }
}

.ve-catalog-wine-card__image > .ve-catalog-wine-card__product-image {
    filter: var(--sp-wine-card-product-filter, drop-shadow(0 3px 4px rgba(35, 25, 28, .1)));
    height: 100%;
    max-height: 100%;
    max-width: 60%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    width: auto;
}

/*
 * Wine image effect modes. The PHP toggle adds one of these classes to body.
 * Keeping both recipes here makes switching modes a class change only.
 */
.sp-wine-card-effect--color {
    --sp-wine-card-glow-display: flex;
    --sp-wine-card-product-filter: drop-shadow(0 3px 4px rgba(35, 25, 28, .1));
}

.sp-wine-card-effect--monochrome {
    --sp-wine-card-glow-display: none;
    --sp-wine-card-product-filter: drop-shadow(0 14px 20px rgba(58, 34, 40, .22));
}

.ve-catalog-wine-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    padding: 14px 16px 16px;
}

.ve-catalog-wine-card h3 {
    color: var(--ve-wine-700);
    font-family: var(--ve-display);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0;
    overflow-wrap: anywhere;
}

.ve-catalog-wine-card h3 a,
.ve-catalog-wine-card footer a {
    color: inherit;
    text-decoration: none;
}

.ve-catalog-wine-card__brand {
    align-self: flex-start;
    color: var(--ve-wine-700);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
}

.ve-catalog-wine-card__brand:hover {
    color: var(--ve-wine-900);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ve-catalog-wine-card p,
.ve-catalog-wine-card small {
    font-size: 12.5px;
    line-height: 1.45;
    margin: 0;
    overflow-wrap: anywhere;
}

.ve-catalog-wine-card p {
    color: var(--ve-secondary);
}

.ve-catalog-wine-card small {
    color: var(--ve-muted);
}

.ve-catalog-wine-card footer {
    align-items: center;
    border-top: 1px dashed var(--ve-border);
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
}

.ve-catalog-wine-card footer span {
    color: var(--ve-ink);
    font-family: var(--ve-display);
    font-size: 18px;
    font-weight: 700;
}

.ve-catalog-wine-card footer strong {
    color: var(--ve-wine-700);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

/* Wines archive. */
.ve-wines-archive {
    background: var(--ve-bg);
    overflow: visible;
    padding: 0 0 84px;
}

.ve-wines-breadcrumb,
.ve-wines-intro,
.ve-wines-catalog {
    margin-left: auto;
    margin-right: auto;
    max-width: 1248px;
    padding-left: 24px;
    padding-right: 24px;
}

.ve-wines-breadcrumb {
    align-items: center;
    color: var(--ve-muted);
    display: flex;
    font-size: 14px;
    gap: 5px;
    padding-top: 22px;
}

.ve-wines-breadcrumb a,
.ve-wines-breadcrumb strong {
    color: inherit;
    font-weight: 400;
}

.ve-wines-breadcrumb strong {
    color: var(--ve-secondary);
}

.ve-wines-intro {
    padding-top: 26px;
}

.ve-wines-intro h1 {
    color: var(--ve-wine-700);
    font-family: var(--ve-display);
    font-size: 46px;
    font-weight: 600;
    line-height: 1.12;
    margin: 10px 0 0;
    max-width: 920px;
    overflow-wrap: anywhere;
}

.ve-wines-intro > p:last-child {
    color: var(--ve-secondary);
    font-size: 17px;
    line-height: 1.5;
    margin: 10px 0 0;
    max-width: 660px;
}

.ve-wines-catalog {
    padding-top: 28px;
}

.ve-wines-catalog__layout,
.ve-catalog-filter-sidebar,
.ve-wines-results {
    min-width: 0;
}

/* Shared filter component used by the shop and winery catalogs. */
.ve-catalog-filter-sidebar {
    position: relative;
}

.ve-catalog-filter {
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: 16px;
    box-shadow: var(--ve-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
    padding: 16px;
}

.ve-catalog-filter__header {
    display: none;
}

.ve-catalog-filter__top {
    align-items: flex-start;
    display: flex;
    gap: 12px;
}

.ve-catalog-filter__search {
    align-items: center;
    border: 1px solid var(--ve-border);
    border-radius: 10px;
    display: flex;
    flex: 1 1 auto;
    min-height: 48px;
    min-width: 0;
    padding: 0 14px;
    position: relative;
}

.ve-catalog-filter__search > i {
    color: var(--ve-muted);
    flex: none;
    font-size: 14px;
}

.ve-catalog-filter__search input {
    background: transparent;
    border: 0;
    color: var(--ve-ink);
    flex: 1;
    font: inherit;
    min-width: 0;
    outline: 0;
    padding: 12px 10px;
}

.ve-catalog-filter__submit {
    background: var(--ve-wine-700);
    border: 1px solid var(--ve-wine-700);
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 700;
    min-height: 48px;
    padding: 10px 22px;
}

.ve-catalog-filter__sort {
    flex: 0 0 210px;
}

.ve-catalog-filter select,
.ve-catalog-filter__control {
    appearance: none;
    background: #fff;
    background-image: url('data:image/svg+xml,<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 1L5 5L1 1" stroke="%23756F80" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: right 14px center;
    background-repeat: no-repeat;
    border: 1px solid var(--ve-border);
    border-radius: 10px;
    color: var(--ve-secondary);
    cursor: pointer;
    font: inherit;
    min-height: 48px;
    padding: 10px 38px 10px 14px;
    width: 100%;
}

.ve-catalog-filter__control {
    align-items: center;
    display: flex;
    justify-content: space-between;
    text-align: left;
}

.ve-catalog-filter__control > i {
    display: none;
}

.ve-catalog-filter__chips {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.ve-catalog-filter__chip {
    align-items: center;
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: 999px;
    color: var(--ve-secondary);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    gap: 7px;
    height: 34px;
    padding: 0 13px;
    white-space: nowrap;
}

.ve-wines-color i {
    background: var(--ve-wine-700);
    border-radius: 50%;
    height: 9px;
    width: 9px;
}

.ve-wines-color[data-wines-color="white"] i { background: #d5ba5a; }
.ve-wines-color[data-wines-color="rose"] i { background: #d98b7e; }
.ve-wines-color[data-wines-color="orange"] i { background: #c8782d; }

.ve-catalog-filter__chip.is-active {
    background: var(--ve-wine-700);
    border-color: var(--ve-wine-700);
    color: #fff;
}

.ve-catalog-filter__reset {
    background: transparent;
    border: 0;
    color: var(--ve-muted);
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    margin-left: auto;
    padding: 7px 0;
}

.ve-catalog-filter__fields {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ve-catalog-filter__tasting {
    align-items: center;
    background: #fff;
    border: 1px solid var(--ve-border);
    border-radius: 10px;
    color: var(--ve-secondary);
    cursor: pointer;
    display: flex;
    gap: 10px;
    min-height: 44px;
    padding: 8px 12px;
}

.ve-catalog-filter__tasting input {
    height: 1px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 1px;
}

.ve-catalog-filter__tasting > span {
    align-items: center;
    border: 1px solid #cdbeb7;
    border-radius: 5px;
    color: transparent;
    display: inline-flex;
    flex: 0 0 20px;
    height: 20px;
    justify-content: center;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.ve-catalog-filter__tasting strong {
    font-size: 13px;
    font-weight: 600;
}

.ve-catalog-filter__tasting input:checked + span {
    background: var(--ve-wine-700);
    border-color: var(--ve-wine-700);
    color: #fff;
}

.ve-catalog-filter__tasting input:focus-visible + span {
    outline: 2px solid var(--ve-wine-700);
    outline-offset: 2px;
}

.ve-catalog-filter__fieldset {
    border: 0;
    margin: 0;
    min-width: 0;
    padding: 0;
}

.ve-catalog-filter__fieldset legend {
    color: var(--ve-secondary);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 7px;
    padding: 0;
}

.ve-catalog-filter__vintage-inputs {
    display: grid;
    gap: 7px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ve-catalog-filter__vintage-inputs label {
    align-items: center;
    background: #fff;
    border: 1px solid var(--ve-border);
    border-radius: 10px;
    display: flex;
    min-width: 0;
    padding-left: 10px;
}

.ve-catalog-filter__vintage-inputs span {
    color: var(--ve-muted);
    flex: none;
    font-size: 11px;
}

.ve-catalog-filter__vintage-inputs input {
    appearance: textfield;
    background: transparent;
    border: 0;
    color: var(--ve-ink);
    font: inherit;
    font-size: 13px;
    min-height: 42px;
    min-width: 0;
    outline: 0;
    padding: 8px 7px;
    width: 100%;
}

.ve-catalog-filter__vintage-inputs input::-webkit-inner-spin-button,
.ve-catalog-filter__vintage-inputs input::-webkit-outer-spin-button {
    appearance: none;
    margin: 0;
}

.ve-catalog-filter__price-range {
    grid-column: span 2;
}

.ve-catalog-filter__range-values {
    color: var(--ve-secondary);
    display: flex;
    font-size: 12px;
    font-weight: 600;
    justify-content: space-between;
    margin-bottom: 4px;
}

.ve-catalog-filter__range-track {
    --ve-range-end: 100%;
    --ve-range-start: 0%;
    height: 24px;
    position: relative;
}

.ve-catalog-filter__range-track::before {
    background: linear-gradient(to right, var(--ve-border) 0 var(--ve-range-start), var(--ve-wine-700) var(--ve-range-start) var(--ve-range-end), var(--ve-border) var(--ve-range-end) 100%);
    border-radius: 999px;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 10px;
}

.ve-catalog-filter__range-track input[type="range"] {
    appearance: none;
    background: transparent;
    height: 24px;
    left: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
}

.ve-catalog-filter__range-track input[type="range"]::-webkit-slider-runnable-track {
    background: transparent;
    border: 0;
    height: 4px;
}

.ve-catalog-filter__range-track input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    background: #fff;
    border: 2px solid var(--ve-wine-700);
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(48, 18, 33, .22);
    cursor: grab;
    height: 18px;
    margin-top: -7px;
    pointer-events: auto;
    width: 18px;
}

.ve-catalog-filter__range-track input[type="range"]::-moz-range-track {
    background: transparent;
    border: 0;
    height: 4px;
}

.ve-catalog-filter__range-track input[type="range"]::-moz-range-thumb {
    background: #fff;
    border: 2px solid var(--ve-wine-700);
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(48, 18, 33, .22);
    cursor: grab;
    height: 14px;
    pointer-events: auto;
    width: 14px;
}

.ve-catalog-filter__range-track input[type="range"]:focus-visible::-webkit-slider-thumb {
    outline: 3px solid rgba(122, 30, 74, .24);
    outline-offset: 2px;
}

.ve-wines-results__count {
    color: var(--ve-secondary);
    font-size: 15px;
    margin: 22px 0 16px;
}

.ve-wines-results__count strong {
    color: var(--ve-ink);
}

.ve-wines-grid {
    align-items: stretch;
    display: grid;
    gap: 20px;
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ve-wines-archive.is-loading .ve-wines-grid {
    opacity: .45;
    pointer-events: none;
}

.ve-wines-empty {
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: 16px;
    grid-column: 1 / -1;
    padding: 40px 24px;
    text-align: center;
}

.ve-wines-empty h2 {
    color: var(--ve-wine-700);
    font-family: var(--ve-display);
    font-size: 22px;
    margin: 0;
}

.ve-wines-empty p {
    color: var(--ve-secondary);
    font-size: 15px;
    margin: 8px 0 18px;
}

.ve-wines-empty button {
    background: transparent;
    border: 0;
    color: var(--ve-wine-700);
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
}

.ve-wines-pagination {
    margin-top: 34px;
}

.ve-wines-pagination .page-numbers {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ve-wines-pagination a,
.ve-wines-pagination span {
    align-items: center;
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: 8px;
    color: var(--ve-secondary);
    display: inline-flex;
    height: 44px;
    justify-content: center;
    min-width: 44px;
    padding: 0 10px;
}

.ve-wines-pagination .current {
    background: var(--ve-wine-700);
    border-color: var(--ve-wine-700);
    color: #fff;
}

@media (min-width: 901px) {
    .ve-wines-catalog__layout {
        align-items: start;
        display: grid;
        gap: 32px;
        grid-template-columns: 304px minmax(0, 1fr);
    }

    .ve-catalog-filter-sidebar {
        /* align-self: start;
        position: sticky;
        top: 88px; */
        width: 304px;
        z-index: 4;
    }

    .ve-catalog-filter-sidebar::before {
        background: var(--ve-wine-700);
        border-radius: 8px 8px 0 0;
        content: "";
        height: 4px;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 2;
    }

    .ve-catalog-filter-sidebar .ve-catalog-filter {
        border-radius: 8px;
        gap: 18px;
        padding: 22px 18px 20px;
    }

    .ve-catalog-filter__header {
        align-items: center;
        border-bottom: 1px solid var(--ve-border);
        display: flex;
        justify-content: space-between;
        padding-bottom: 14px;
    }

    .ve-catalog-filter__header h2 {
        align-items: center;
        color: var(--ve-ink);
        display: flex;
        font-family: var(--ve-body);
        font-size: 17px;
        gap: 9px;
        margin: 0;
    }

    .ve-catalog-filter__header h2 i {
        color: var(--ve-wine-700);
        font-size: 15px;
    }

    .ve-catalog-filter__header .ve-catalog-filter__reset {
        color: var(--ve-wine-700);
        font-size: 12px;
        margin: 0;
        padding: 2px 0;
    }

    .ve-catalog-filter__top {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .ve-catalog-filter__search,
    .ve-catalog-filter__sort {
        flex: none;
        width: 100%;
    }

    .ve-catalog-filter__search {
        padding-left: 12px;
        padding-right: 8px;
    }

    .ve-catalog-filter__search input {
        font-size: 13px;
    }

    .ve-catalog-filter__submit {
        min-height: 44px;
        width: 100%;
    }

    .ve-catalog-filter select,
    .ve-catalog-filter__control {
        font-size: 13px;
        min-height: 44px;
    }

    .ve-catalog-filter__chips {
        align-items: flex-start;
        gap: 7px 6px;
    }

    .ve-catalog-filter__chip {
        font-size: 12px;
        height: 32px;
        padding: 0 11px;
    }

    .ve-catalog-filter__reset--inline {
        display: none !important;
    }

    .ve-catalog-filter__fields {
        grid-template-columns: minmax(0, 1fr);
    }

    .ve-catalog-filter__price-range {
        grid-column: auto;
    }

    .ve-wines-results__count {
        margin-top: 0;
        padding-top: 2px;
    }

    .ve-wines-grid {
        gap: 20px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .ve-wines-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 901px) and (max-width: 1159px) {
    .ve-wines-catalog__layout {
        gap: 20px;
        grid-template-columns: 280px minmax(0, 1fr);
    }

    .ve-catalog-filter-sidebar {
        width: 280px;
    }

    .ve-wines-grid {
        gap: 16px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .ve-wine-catalog {
        padding-bottom: 52px;
        padding-top: 6px;
    }

    .ve-wine-catalog [data-home-wine-grid] {
        grid-auto-rows: auto;
        grid-template-columns: minmax(0, 1fr);
    }

    .ve-wine-catalog .ve-wine-featured {
        grid-column: auto;
        gap: 18px;
        padding: 20px;
    }

    .ve-wine-catalog .ve-wine-featured p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    .ve-wine-catalog .ve-wine-more {
        align-items: center;
        flex-direction: row;
        gap: 14px;
        min-height: 0;
        padding: 16px 18px;
    }

    .ve-wine-catalog .ve-wine-more > span {
        align-items: baseline;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .ve-wine-catalog .ve-wine-more > span strong {
        font-size: 24px;
    }

    .ve-wine-catalog .ve-wine-more > small {
        display: none;
    }

    .ve-wines-breadcrumb,
    .ve-wines-intro,
    .ve-wines-catalog {
        padding-left: 18px;
        padding-right: 18px;
    }

    .ve-wines-archive {
        padding-bottom: 52px;
    }

    .ve-wines-intro h1 {
        font-size: 36px;
    }

    .ve-catalog-filter__top {
        flex-wrap: wrap;
    }

    .ve-catalog-filter__sort {
        flex: 1 1 100%;
    }

    .ve-catalog-filter__fields,
    .ve-wines-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ve-wines-grid {
        gap: 12px;
    }

    .ve-catalog-wine-card__body {
        gap: 6px;
        padding: 12px 12px 14px;
    }

    .ve-catalog-wine-card h3 {
        font-size: 15px;
    }
}

@media (max-width: 560px) {
    .ve-wine-catalog__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .ve-wine-catalog .ve-wine-featured__image {
        flex-basis: 92px;
        min-height: 150px;
    }

    .ve-wines-intro h1 {
        font-size: 31px;
    }

    .ve-wines-intro > p:last-child {
        font-size: 15px;
    }

    .ve-catalog-filter {
        padding: 14px;
    }

    .ve-catalog-filter__search {
        flex-basis: calc(100% - 92px);
    }

    .ve-catalog-filter__submit {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ve-catalog-filter__reset {
        flex-basis: 100%;
        margin-left: 0;
        text-align: left;
    }

    .ve-catalog-wine-card footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .ve-catalog-wine-card footer strong {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .ve-wine-catalog [data-home-wine-grid] > .ve-wine-featured {
        flex-wrap: nowrap;
        height: 268px;
        min-height: 268px;
    }

    .ve-wine-catalog .ve-wine-featured__image {
        align-self: flex-start;
        flex: 0 0 92px;
        height: 228px;
        max-height: 228px;
        min-height: 0;
    }

    .ve-wine-catalog .ve-wine-featured p {
        display: none;
    }
}

@media (max-width: 360px) {
    .ve-wine-catalog [data-home-wine-grid] > .ve-wine-featured {
        gap: 12px;
        padding: 14px;
    }

    .ve-wine-catalog .ve-wine-featured__image {
        flex: 0 0 72px;
        height: 240px;
        max-height: 240px;
    }

    .ve-wine-catalog .ve-wine-featured h3 {
        display: -webkit-box;
        font-size: 24px;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 991px) {
    .ve-mega.ve-header__link--mobile-only {
        display: block;
    }

    .sp-menu-item--desktop-only {
        display: none !important;
    }

    .sp-menu-item--mobile-only {
        display: flex !important;
    }

    .ve-mega__panel--menu {
        gap: 0;
    }

    .ve-menu-submenu__link {
        border-radius: 0;
        color: var(--ve-secondary);
        font-size: 15px;
        min-height: 40px;
        padding: 9px 0;
        white-space: normal;
    }

    .ve-menu-submenu__link:hover,
    .ve-menu-submenu__link:focus-visible {
        background: transparent;
    }
}
