/**
 * Dishcourse Theme Main Stylesheet
 * Version: 1.0.0
 * Author: Colour Club Studio
 * Description: Core frontend styling for Dishcourse Theme.
 */

/* ==========================================================================
   1. Design System & CSS Variables
   ========================================================================== */
:root {
    /* Color Palette */
    --primary-color: #b96b35;
    --primary-hover: #a55721;
    --secondary-color: #06b6d4;
    --secondary-hover: #0891b2;
    --text-color: #1f2937;
    --text-muted: #6b7280;
    --bg-color: #F7F3EB;
    --card-bg: #ffffff;
    --border-color: #e5e7eb;
    --footer-bg: #111827;
    --footer-text: #9ca3af;

    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --font-headings: 'Outfit', var(--font-family);

    /* Spacing & Borders */
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --transition-speed: 0.3s;
    --container-width: 1200px;
    --header-height: 82px;
    --logo-width: auto;
    --logo-max-width: 100%;
    --logo-height: auto;
    --logo-max-height: 56px;
    /* Mobile default */

    /* Shadow system */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Fallback dynamic theme option variables injected via PHP header will override these */

/* ==========================================================================
   2. Reset & Global Styles
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: clip;
    /* Using clip instead of hidden keeps position: sticky working! */
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Recommended Lenis CSS to fix extra scroll space issues */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* Checkout page: force native scrolling, override any Lenis interference */
body.page-template-page-checkout-php,
body.page-template-page-checkout-php html {
    overflow-y: auto !important;
    height: auto !important;
}

body.home {
    --bg-color: #f3eee5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--primary-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.25;
    color: #111827;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
}

ul,
ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

/* ==========================================================================
   3. Layout & Structure
   ========================================================================== */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex: 1 0 auto;
    padding: 3rem 0;
}

body.home .site-content {
    padding-top: 0;
    padding-bottom: 0;
}

.site-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .site-main-grid.has-sidebar {
        grid-template-columns: 2fr 1fr;
    }
}

/* ==========================================================================
   4. Header & Navigation
   ========================================================================== */
.site-header {
    background-color: var(--bg-color);
    backdrop-filter: blur(8px);
    box-shadow: inset 0px -1px 0px rgba(23, 22, 19, 0.14);
    position: sticky;
    top: 0;
    transition: all var(--transition-speed);

    /* Figma Layout Styles */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 0px 2px;
    isolation: isolate;

    width: 100%;
    max-width: 100%;
    min-height: 82px;
    height: auto;

    /* Inside auto layout / flex parent */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    margin: -2px auto;
    z-index: 1000;
    /* Standard sticky header z-index, Figma specified 7 */
}

/* Adjust sticky header position when WordPress Admin Bar is visible */
.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--header-height);
    height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
    position: relative;
    /* Positioning context for absolute centering of main-navigation */
}

.site-branding {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .site-branding {
        position: absolute;
        left: 96px;
        top: 50%;
        transform: translateY(-50%);
    }
}

.site-logo,
.custom-logo-link img {
    width: var(--logo-width);
    max-width: var(--logo-max-width);
    height: var(--logo-height);
    max-height: var(--logo-max-height);
    object-fit: contain;
    transition: max-height 0.3s ease;
}

/* Tablet: slightly larger logo */
@media (min-width: 768px) {

    .site-logo,
    .custom-logo-link img {
        max-height: 68px;
    }
}

/* Desktop: full logo size */
@media (min-width: 1024px) {

    .site-logo,
    .custom-logo-link img {
        max-height: 80px;
    }
}

.site-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-navigation {
    display: none;
}

@media (min-width: 1024px) {
    .main-navigation {
        display: flex;
        align-items: center;

        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        white-space: nowrap;
    }
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.main-navigation .current-menu-item>a {
    color: var(--primary-color);
}

.main-navigation .current-menu-item>a::after {
    width: 100%;
}

.main-navigation a:hover {
    color: #b96b35;
}

.main-navigation a:hover::after {
    background-color: #b96b35;
    width: 100%;
}

.header-cta {
    display: none;
    /* Hide on mobile */
}

@media (min-width: 1024px) {
    .header-cta {
        /* Figma Layout Styles for absolute positioning on right */
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        padding: 0px;
        gap: 10px;

        position: absolute;
        width: auto;
        min-width: 143px;
        height: auto;
        right: 96px;
        top: 50%;
        transform: translateY(-50%);
    }
}

.header-cta-btn {
    /* Figma button styles */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 14px 20px !important;

    width: auto !important;
    min-width: 143px !important;
    height: auto !important;
    white-space: nowrap !important;

    background-color: #13251F !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border: 1px solid #13251F !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease !important;

    /* Inside auto layout / flex parent */
    flex: none !important;
    order: 0 !important;
    flex-grow: 0 !important;
}

.header-cta-btn:hover {
    background-color: #1d382f !important;
    /* Slightly lighter shade for interactive feedback */
    color: #ffffff !important;
}

/* Tablet Layout Adjustments to prevent header overlapping */
@media (min-width: 1024px) and (max-width: 1199px) {
    .site-branding {
        left: 24px !important;
    }

    .header-cta {
        right: 24px !important;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 9.5px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid #D4D4D4;
    border-radius: 999px;
    flex: none;
    order: 0;
    flex-grow: 0;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    background-color: var(--text-color);
    margin-bottom: 4px;
    transition: all 0.3s;
}

.menu-toggle span:last-child {
    margin-bottom: 0;
}

/* Mobile Navigation Panel */
.mobile-nav-active .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(-45deg);
}

.mobile-nav-active .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-active .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(45deg);
}

.mobile-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #F3EEE5;
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    box-shadow: var(--shadow-lg);

    /* Smooth slide and fade animation */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
    z-index: -1;
    /* Prevents overlapping the header during animation */
}

.mobile-navigation .container {
    display: block;
}

.mobile-cta {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}

.mobile-cta .header-cta-btn {
    width: 100% !important;
}

.mobile-navigation.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-navigation li {
    margin-bottom: 1rem;
}

.mobile-navigation a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
}

/* ==========================================================================
   5. Posts & Grid Layout
   ========================================================================== */
.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.post-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.post-thumbnail-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: #eaeaea;
}

.post-thumbnail-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.post-card:hover .post-thumbnail-link img {
    transform: scale(1.05);
}

.post-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-card-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.post-card-title {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.post-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.post-card-read-more {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* ==========================================================================
   6. Sidebar & Widgets
   ========================================================================== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.widget {
    background-color: var(--card-bg);
    padding: 1.75rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 1.15rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.widget li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget li a {
    color: var(--text-color);
}

.widget li a:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   7. Single Post & Page Content
   ========================================================================== */
.entry-header {
    margin-bottom: 2.5rem;
}

.entry-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.entry-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h2 {
    margin-top: 2rem;
}

.entry-content h3 {
    margin-top: 1.5rem;
}

.entry-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-tags a {
    background-color: #f3f4f6;
    color: var(--text-muted);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    display: inline-block;
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* Comments section styling */
.comments-area {
    margin-top: 4rem;
    border-top: 2px solid var(--border-color);
    padding-top: 2.5rem;
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.comment-body {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.comment-author .avatar {
    border-radius: 50%;
}

.comment-author .fn {
    font-weight: 700;
    font-style: normal;
}

.comment-metadata {
    color: var(--text-muted);
}

.comment-content {
    font-size: 1rem;
}

.comment-reply-link {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Comment Form */
.comment-respond {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.comment-reply-title {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.comment-form label {
    font-weight: 600;
    margin-bottom: 0.25rem;
    display: block;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition-speed);
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus {
    border-color: var(--primary-color);
}

.comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.comment-form-cookies-consent label {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   8. Buttons & Controls
   ========================================================================== */
.btn,
input[type="submit"] {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn:hover,
input[type="submit"]:hover {
    background-color: var(--primary-hover);
}

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
}

.pagination {
    margin-top: 3rem;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.page-numbers {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-weight: 600;
}

.page-numbers.current {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.page-numbers:hover:not(.current) {
    background-color: #f3f4f6;
}

/* ==========================================================================
   9. Homepage — Hero Section
   ========================================================================== */
.homepage {
    padding: 0;
}

.hero-section {
    /* Figma Layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 40px 60px;
    /* mobile default */

    width: 100%;
    box-sizing: border-box;
    overflow: hidden;

    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    z-index: 6;

    background: rgba(255, 255, 255, 0.01);
    box-shadow: inset 0px -1px 0px rgba(23, 22, 19, 0.14);
    margin: -2px 0px;
}

/* Tablet */
@media (min-width: 768px) {
    .hero-section {
        padding: 32px 40px 32px;
    }
}

/* Small desktop: left/right 24px matches header */
@media (min-width: 1024px) and (max-width: 1199px) {
    .hero-section {
        padding: 40px 24px 40px;
        position: relative;
        min-height: auto;
    }
}

/* Full desktop: left/right 96px matches header logo/btn */
@media (min-width: 1200px) {
    .hero-section {
        padding: 48px 96px 48px;
        position: relative;
        min-height: auto;
        margin: -2px 0px;
    }
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
    padding: 30px 0;
}

@media (min-width: 1024px) {
    .hero-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 48px;
        width: 100%;
        min-height: 510px;
        position: relative;
    }
}

@media (min-width: 1200px) {
    .hero-inner {
        gap: 60px;
    }
}

/* Left: Text Content */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 28px;
    width: 100%;
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .hero-content {
        width: 100%;
        flex-shrink: 0;
    }
}

@media (min-width: 1200px) {
    .hero-content {
        width: 100%;
        max-width: 536px;
        flex-shrink: 0;
    }
}

.hero-eyebrow {
    /* Figma mobile */
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 2.88px;
    text-transform: uppercase;
    color: #B96B35;
    margin: 0;

    /* Ensure long words and large letter spacing wrap properly on mobile */
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;

    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

@media (min-width: 768px) {
    .hero-eyebrow {
        font-size: 16px;
        line-height: 19px;
        letter-spacing: 2.2px;
    }
}

.hero-heading {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -1px;
    color: #171511;
    margin: 0;

    /* Inside auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

@media (min-width: 768px) {
    .hero-heading {
        font-size: 48px;
        line-height: 58px;
        letter-spacing: -1.5px;
    }
}

@media (min-width: 1024px) {
    .hero-heading {
        font-size: 56px;
        line-height: 69px;
        letter-spacing: -2.16px;
    }
}

.hero-body {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #70675D;
    margin: 0;

    /* Inside auto layout */
    flex: none;
    order: 2;
    align-self: stretch;
    flex-grow: 0;
}

.hero-body-desktop {
    display: block;
}

.hero-body-mobile {
    display: none;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0px;
    gap: 12px;
    margin-top: 0.5rem;
    order: 3;
    width: 100%;
    /* Inside auto layout */
    flex: none;
    align-self: stretch;
    flex-grow: 0;
}

@media (min-width: 768px) {
    .hero-actions {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        width: auto;
    }
}

.hero-btn-primary {
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: row;
    gap: 8px;
    justify-content: center;
    align-items: center;
    padding: 14px 20px;
    width: auto;
    min-width: 143px;
    height: auto;
    background-color: #13251F;
    border: 1px solid #13251F;
    border-radius: 999px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;

    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
}

.hero-btn-primary:hover {
    background-color: #1d382f;
    border-color: #1d382f;
    color: #ffffff;
}

/* Secondary Button (outlined) */
.hero-btn-secondary {
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: row;
    gap: 8px;
    justify-content: center;
    align-items: center;
    padding: 14px 20px;
    width: auto;
    min-width: 143px;
    height: auto;
    border: 1px solid #B96B35;
    border-radius: 999px;
    background-color: transparent;
    color: #B96B35;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;

    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
}

.hero-btn-secondary:hover {
    background-color: #B96B35;
    color: #ffffff;
    border-color: #B96B35;
}

/* Right: Image */
.hero-image-container {
    display: contents;
}

@media (min-width: 768px) {
    .hero-image-container {
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
    }
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    max-height: 540px;
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .hero-image-wrap {
        margin-left: 0;
        max-height: 510px;
        border-radius: 20px;
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .hero-image-wrap {
        margin-left: 0;
        max-height: 510px;
        border-radius: 20px;
        width: 100%;
    }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    max-height: 540px;
}

/* Badge */
.hero-badge {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;

    position: absolute;
    width: 147px;
    height: 33px;
    left: 30px;
    top: 30px;
    z-index: 3;

    background: rgba(250, 247, 242, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 9999px;

    color: #13251F;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Overlay Card */
.hero-overlay-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: calc(100% - 48px);
    word-wrap: break-word;
    z-index: 2;
    background-color: rgba(19, 37, 31, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 14px;
    padding: 16px 20px;
    display: none;
    /* Hidden on mobile */
    flex-direction: column;
    gap: 4px;
}

@media (min-width: 768px) {
    .hero-overlay-card {
        display: flex;
        /* Visible on tablet and up */
    }
}

.hero-overlay-headline {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: -0.5px;
    color: #F3EEE5;
    margin: 0;
    text-transform: capitalize;
}

@media (min-width: 768px) {
    .hero-overlay-headline {
        font-size: 28px;
        line-height: 28px;
        letter-spacing: -1px;
    }
}

.hero-overlay-sub {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 3.08px;
    text-transform: uppercase;
    color: rgba(250, 247, 242, 0.6);
    margin: 0;

    /* Inside auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

/* ==========================================================================
   9b. Homepage — Why Dishcourse Section
   ========================================================================== */
.why-section {
    background: rgba(255, 255, 255, 0.01);
    box-shadow: inset 0px -1px 0px rgba(23, 22, 19, 0.14);
    margin: -2px 0px;
    z-index: 4;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 40px 60px;
    /* matches table-section */
}

/* Tablet */
@media (min-width: 768px) {
    .why-section {
        padding: 60px 40px 70px;
    }
}

/* Small desktop: left/right 24px matches header */
@media (min-width: 1024px) and (max-width: 1199px) {
    .why-section {
        padding: 80px 24px 80px;
    }
}

/* Full desktop: left/right 96px matches header logo/btn & hero */
@media (min-width: 1200px) {
    .why-section {
        padding: 96px 96px 96px;
    }
}

.why-inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

@media (min-width: 1200px) {
    .why-inner {
        gap: 60px;
    }
}

.why-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 680px;
    gap: 16px;
}

.why-eyebrow {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #B96B35;
    margin: 0;

    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.why-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    text-align: center;
    letter-spacing: -0.5px;
    color: #171511;
    margin: 0;

    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
}

@media (min-width: 768px) {
    .why-title {
        font-size: 38px;
        line-height: 42px;
        letter-spacing: -0.7px;
    }
}

@media (min-width: 1024px) {
    .why-title {
        font-size: 46px;
        line-height: 48px;
        letter-spacing: -0.92px;
    }
}

.why-lead {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #70675D;
    margin: 0;

    /* Inside auto layout */
    flex: none;
    order: 2;
    align-self: stretch;
    flex-grow: 0;
}

@media (min-width: 768px) {
    .why-lead {
        font-size: 18px;
        line-height: 28px;
    }
}

/* Feature Grid */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* Feature Card */
.why-card {
    position: relative;
    box-sizing: border-box;
    background-color: #F8F1E8;
    /* warm card background */
    border: 1px solid #D6C8B7;
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
    .why-card {
        border: 1px solid rgba(19, 37, 31, 0.08);
    }
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(19, 37, 31, 0.05);
}

/* Gradient Border Cap */
.why-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 10px;
    background: linear-gradient(90deg, #13251F 0%, #B96B35 100%);
    z-index: 3;
}

.why-card-icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4px;
}

.why-card-icon {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 13px;
    width: 56px;
    height: 56px;
    background-color: #F2E7D9;
    border: 1px solid #D6C8B7;
    border-radius: 24.5px;
    color: #B96B35;

    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
}

.why-card-icon svg {
    display: block;
}

.why-card-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #171511;
    margin: 0;
}

.why-card-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    color: #171511;
    margin: 0;
}

/* ==========================================================================
   9c. Homepage — This Month's Table Section
   ========================================================================== */
.table-section {
    position: relative;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: inset 0px -1px 0px rgba(23, 22, 19, 0.14);
    margin: -2px 0px;
    z-index: 4;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 40px 60px;
    /* responsive top/bottom matching hero / why */
}

/* Tablet */
@media (min-width: 768px) {
    .table-section {
        padding: 60px 40px 70px;
    }
}

/* Small desktop */
@media (min-width: 1024px) and (max-width: 1199px) {
    .table-section {
        padding: 80px 24px 80px;
    }
}

/* Full desktop */
@media (min-width: 1200px) {
    .table-section {
        padding: 96px 96px 96px;
    }
}

.conversation-eyebrow {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 19px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #B96B35;
    margin: 0;
}

.conversation-description-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 31px 40px;
    gap: 18px;
    width: 100%;
    background: #F7F3EB;
    border: 1px solid #D6DAE2;
    border-radius: 24px;
}

@media (max-width: 767px) {
    .conversation-description-card {
        padding-left: 0;
        padding-right: 0;
        border: none;
    }
}

.conversation-description-card .table-description p {
    margin-bottom: 0;
}

.conversation-description-section {
    padding-top: 0 !important;
    padding-bottom: 80px !important;
    box-shadow: none !important;
}

@media (max-width: 767px) {
    .conversation-description-section {
        padding-bottom: 40px !important;
    }
}

.table-inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

@media (min-width: 1200px) {
    .table-inner {
        gap: 32px;
    }
}

.table-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    max-width: 680px;
    gap: 16px;
    align-self: flex-start;
}

.table-eyebrow {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    text-align: left;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #B96B35;
    margin: 0;
}

.table-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    text-align: left;
    letter-spacing: -0.5px;
    color: #171511;
    margin: 0;
}

@media (min-width: 768px) {
    .table-title {
        font-size: 38px;
        line-height: 42px;
        letter-spacing: -0.7px;
    }
}

@media (min-width: 1024px) {
    .table-title {
        font-size: 46px;
        line-height: 48px;
        letter-spacing: -0.92px;
    }
}

.table-lead {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #70675D;
    margin: 0;
    align-self: stretch;
}

@media (min-width: 768px) {
    .table-lead {
        font-size: 18px;
        line-height: 28px;
    }
}

/* Event Card Container */
.event-card {
    box-sizing: border-box;
    width: 100%;
    background-color: #13251F;
    /* Dark Forest Green */
    background-image: linear-gradient(rgba(19, 37, 31, 0.88), rgba(19, 37, 31, 0.88)), url('../images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #475249;
    border-radius: 24px;
    padding: 0;
    gap: 0;
    display: flex;
    flex-direction: column;
    color: #FAF7F2;
    isolation: isolate;
}

@media (min-width: 1024px) {
    .event-card {
        flex-direction: row;
        align-items: stretch;
        padding: 23px;
        gap: 24px;
        width: 100%;
        max-width: none;
        min-height: 400px;
        height: auto;
    }
}

/* Graphic Column */
.event-graphic {
    width: calc(100% + 2px);
    margin: -1px -1px 0 -1px;
    height: 300px;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .event-graphic {
        flex: 1 1 50%;
        max-width: none;
        height: auto;
        border-radius: 16px;
        margin: 0;
        width: auto;
    }
}

.event-graphic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Details Column */
.event-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    gap: 12px;
}

@media (min-width: 1024px) {
    .event-details {
        flex: 1 1 50%;
        min-width: 420px;
        height: 100%;
        justify-content: flex-start;
        padding: 20px 24px 0px 24px;
        /* inherits gap: 12px from base */
    }

    .event-details>.event-badge-wrap {
        margin-bottom: 4px;
    }

    .event-details>.event-theme-eyebrow {
        margin-bottom: 0;
    }

    .event-details>.event-title {
        margin-bottom: 0;
    }

    .event-details>.event-description {
        margin-bottom: 0px;
    }

    .event-details>.event-action-wrap {
        margin-top: auto;
        width: 100%;
    }
}

.event-badge-wrap {
    margin-bottom: 20px;
}

@media (max-width: 1023px) {
    .event-badge-wrap {
        margin-bottom: 0px;
    }
}

.event-badge {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 13px;
    width: max-content;
    min-width: 96px;
    height: 30px;
    background: #B96B35;
    border-radius: 999px;
    color: #FFFFFF;
    /* Dark Green text for premium contrast */
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
}

.event-badge.waitlist-open {
    background: #E8D8C7;
    border: 1px solid #F3EEE5;
    color: #13251F;
    /* Dark text for light background */
    align-items: flex-start;
    min-width: 90px;
}

.event-theme-eyebrow {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #F3EEE5;
    margin: 0;
    align-self: stretch;
    display: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .event-theme-eyebrow {
        display: block;
        position: static;
        width: auto;
        height: auto;
        overflow: visible;
    }
}

.event-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    color: #F3EEE5;
    margin: 0;
}

@media (max-width: 1023px) {
    .event-title {
        margin-bottom: 0px;
    }
}

@media (min-width: 768px) {
    .event-title {
        font-size: 38px;
        line-height: 42px;
    }
}

.event-description {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #F3EEE5;
    margin: 0 0 12px;
}

.event-description p {
    margin: 0;
}

@media (min-width: 768px) {
    .event-description {
        font-size: 16px;
        line-height: 28px;
    }
}

@media (min-width: 1024px) {
    .event-description {
        max-width: none;
    }
}

/* Meta List */
.event-meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
}

.event-meta-list li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    box-sizing: border-box;
}

.event-meta-list li .meta-icon {
    width: 20px;
    height: 20px;
    color: #B96B35;
    flex-shrink: 0;
}

.event-meta-list li .meta-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.event-meta-list li .meta-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #F3EEE5;
}

.event-meta-list li .meta-value {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(250, 247, 242, 0.9);
}

@media (min-width: 1024px) {
    .event-meta-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 8px;
    }

    .event-meta-list li {
        flex-direction: row;
        align-items: center;
        padding: 0;
        gap: 14px;
        background: transparent;
        border: none;
        border-radius: 0;
    }

    .event-meta-list li .meta-icon {
        width: 18px;
        height: 18px;
    }

    .event-meta-list li .meta-text-wrap {
        display: block;
    }

    .event-meta-list li .meta-label {
        display: none;
    }
}

/* Facilitator Box */
.event-tbd-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
    margin-bottom: 0px;
}

.event-facilitator-box {
    background-color: rgba(255, 255, 255, 0.05);
    /* subtle overlay */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0px;
}

.facilitator-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.facilitator-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.facilitator-label {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #85817A;
    align-self: stretch;
}

.facilitator-name {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #F3EEE5;
    margin: 0;
}

.facilitator-bio {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(250, 247, 242, 0.65);
    margin: 0;
}

/* Actions */
.event-action-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
}

@media (min-width: 768px) {
    .event-action-wrap {
        align-items: flex-start;
    }
}

.btn-event-reserve {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 23px;
    width: 100%;
    height: 44px;
    background: #B96B35;
    border-radius: 999px;
    color: #FAF7F2;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
    text-align: center;
    border: none;
    flex: none;
    order: 0;
    flex-grow: 1;
}

.btn-event-reserve:hover {
    background-color: #B96B35;
    color: #FAF7F2;
}

.event-waitlist-notice {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
    color: #F3EEE5;
    text-align: center;
    margin-top: 4px;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .event-waitlist-notice {
        text-align: left;
    }
}

/* ==========================================================================
   10. Footer
   ========================================================================== */
.site-footer {
    /* Figma Layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 40px 40px;
    /* mobile: matches header container padding: 0 40px */

    width: 100%;
    min-height: 379px;

    /* Inside auto layout */
    flex: none;
    order: 7;
    flex-grow: 0;
    z-index: 0;

    background-color: var(--bg-color);
    box-shadow: inset 0px -1px 0px rgba(23, 22, 19, 0.14);
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .site-footer {
        padding: 0 40px 40px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .site-footer {
        padding: 0 24px 24px;
    }
}

@media (min-width: 1200px) {
    .site-footer {
        padding: 0 96px 96px;
    }
}

.footer-inner {
    background-color: #13251F;
    border-radius: 20px;
    padding: 48px 56px 32px;
    /* internal content spacing */
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    width: 100%;
    align-self: stretch;
}

/* Reduce footer-inner internal padding on smaller screens */
@media (max-width: 767px) {
    .footer-inner {
        padding: 40px 24px 28px;
        border-radius: 16px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .footer-inner {
        padding: 44px 40px 28px;
    }
}

/* Footer Top: responsive grid */
.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Tablet: 2 columns to prevent clipping */
@media (min-width: 768px) and (max-width: 1023px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: start;
    }
}

/* Desktop: full 4-column layout */
@media (min-width: 1024px) {
    .footer-top {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

/* Brand Column */
.footer-col-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-site-name {
    font-family: var(--font-headings);
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.footer-logo {
    max-height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.footer-logo-link {
    display: inline-block;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 36px;
    /* 120% */
    color: #F3EEE5;
    margin: 0;
}

/* Column Headings (orange) */
.footer-col-heading {
    font-size: 0.85rem;
    font-weight: 600;
    color: #b96b35;
    text-transform: none;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
}

/* Contact column */
.footer-col-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact-link {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.footer-contact-link:hover {
    color: #ffffff;
}

/* Links list (Socials + Legal) */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links-list li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links-list li a:hover {
    color: #ffffff;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        align-items: center;
    }
}

.footer-copyright {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-tagline-bottom {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
}

/* Legacy classes kept for widget compatibility */
.footer-logo-link img {
    max-height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.copyright {
    font-size: 0.85rem;
}

/* ==========================================================================
   10. Core WordPress Alignment Classes & WP Requirements
   ========================================================================== */
.alignleft {
    float: left;
    margin: 0.5rem 1.5rem 1.5rem 0;
}

.alignright {
    float: right;
    margin: 0.5rem 0 1.5rem 1.5rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.wp-caption {
    background-color: #f3f4f6;
    border: 1px solid var(--border-color);
    max-width: 100%;
    padding: 5px;
    text-align: center;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
}

.wp-caption img {
    margin: 0;
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 5px 0 0;
}

.gallery-caption {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

.sticky {
    border: 2px solid var(--primary-color);
}

.bypostauthor {
    border-color: var(--secondary-color);
}

/* ==========================================================================
   14. Seat Booking Reservation Modal
   ========================================================================== */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 37, 31, 0.85);
    /* matching dark forest green */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal-overlay.active {
    opacity: 1;
}

.booking-modal-content {
    background-color: #FAF7F2;
    border: 1px solid #E5DFD5;
    border-radius: 24px;
    padding: 40px;
    width: 90%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.booking-modal-overlay.active .booking-modal-content {
    transform: translateY(0);
}

.booking-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 28px;
    color: #85817A;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.booking-modal-close:hover {
    color: #171511;
}

.booking-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: #171511;
    margin-bottom: 8px;
}

.booking-modal-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #70675D;
    margin-bottom: 28px;
}

.booking-modal-subtitle strong {
    color: #B96B35;
}

.booking-modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-form-field label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #85817A;
    text-align: left;
}

.booking-form-field input {
    box-sizing: border-box;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E5DFD5;
    border-radius: 999px;
    background-color: #FAF7F2;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #171511;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form-field input:focus {
    border-color: #B96B35;
    box-shadow: 0 0 0 1px #B96b35;
}

.btn-booking-submit {
    box-sizing: border-box;
    width: 100%;
    padding: 14px;
    background-color: #B96B35;
    color: #F3EEE5;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    margin-top: 10px;
    text-align: center;
}

.btn-booking-submit:hover {
    background-color: #A05726;
}

.btn-booking-submit:active {
    transform: scale(0.98);
}

.booking-form-message {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    line-height: 1.4;
}

.booking-form-message.success {
    color: #13251F;
    font-weight: 600;
}

.booking-form-message.error {
    color: #D32F2F;
    font-weight: 600;
}

/* ==========================================================================
   15. How a Dishcourse Evening Unfolds
   ========================================================================== */

.unfolds-section {
    padding: 48px 40px 60px;
    background-color: var(--bg-color);
    box-shadow: inset 0px -1px 0px rgba(23, 22, 19, 0.14);
    box-sizing: border-box;
    width: 100%;
}

@media (min-width: 768px) {
    .unfolds-section {
        padding: 60px 40px 70px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .unfolds-section {
        padding: 80px 24px 80px;
    }
}

@media (min-width: 1200px) {
    .unfolds-section {
        padding: 96px 96px 96px;
    }
}

.unfolds-inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

@media (min-width: 1024px) {
    .unfolds-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 80px;
    }
}

/* Left Column */
.unfolds-content {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.unfolds-eyebrow {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #B96B35;
    margin-bottom: 16px;
}

.unfolds-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 700;
    font-size: 46px;
    line-height: 1.1;
    letter-spacing: -0.92px;
    color: #171511;
    margin-bottom: 24px;
}

.unfolds-lead {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #70675D;
    margin-bottom: 40px;
    max-width: 400px;
}

.btn-unfolds {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 16px 32px;
    background-color: #13251F;
    color: #FAF7F2;
    border: 1px solid #13251F !important;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-unfolds:hover {
    background-color: #1a332a;
    color: #FAF7F2;
}

@media (min-width: 768px) {
    .btn-unfolds {
        display: inline-block;
        width: auto;
    }
}

/* Right Column */
.unfolds-steps {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.unfolds-step {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 24px 20px;
    background-color: #F8F1E8;
    border: 1px solid rgba(23, 22, 19, 0.14);
    border-radius: 16px;
    gap: 16px;
}

@media (min-width: 1024px) {
    .unfolds-step {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 40px;
        padding: 32px 40px;
        border: 1px solid rgba(23, 22, 19, 0.12);
    }
}

.step-number {
    width: 72px;
    height: 42px;
    font-family: 'Instrument Serif', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 42px;
    color: #B96B35;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.step-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #171511;
    margin: 0;
}

.step-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #70675D;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   16. Events Grids (Active & Upcoming)
   ========================================================================== */

.events-grid-section {
    padding: 48px 40px 60px;
    background-color: #F3EEE5;
    box-sizing: border-box;
    width: 100%;
}

.events-grid-section.bg-page-color {
    background-color: #F7F3EB;
}

@media (min-width: 768px) {
    .events-grid-section {
        padding: 60px 40px 70px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .events-grid-section {
        padding: 80px 24px 80px;
    }
}

@media (min-width: 1200px) {
    .events-grid-section {
        padding: 96px 96px 96px;
    }
}

.events-grid-inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Header */
.events-grid-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
}

@media (min-width: 768px) {
    .events-grid-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.events-eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #B96B35;
    margin-bottom: 12px;
}

.events-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.1;
    color: #171511;
    margin: 0;
}

.btn-outline-brand {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    width: 100%;
    min-width: 124px;
    height: 48px;
    border: 1px solid #B96B35;
    border-radius: 100px;
    background-color: transparent;
    color: #B96B35;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.btn-outline-brand:hover {
    background-color: #B96B35;
    color: #fff;
}

@media (min-width: 768px) {
    .btn-outline-brand {
        display: inline-flex;
        width: max-content;
    }
}

/* Grid */
.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Scrollable Events for Events Grids */
@media (max-width: 767px) {
    .events-grid-header-right {
        display: none;
    }

    .events-grid-section .events-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 8px;
        margin-right: -40px;
        /* Counteract section padding to allow scroll to edge */
        padding-right: 40px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
    }

    .events-grid-section .events-grid::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome/Safari */
    }

    .events-grid-section .event-grid-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .mobile-swipe-indicator {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: -32px;
    }

    .swipe-dots {
        display: flex;
        gap: 6px;
        margin-bottom: 8px;
    }

    .swipe-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #D3CDC2;
        transition: all 0.3s ease;
    }

    .swipe-dot.active {
        width: 24px;
        border-radius: 4px;
        background-color: #171511;
    }

    .swipe-text {
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        color: #9A948A;
        margin: 0;
    }
}

@media (min-width: 768px) {
    .mobile-swipe-indicator {
        display: none;
    }
}

/* Cards */
.event-grid-card {
    background: #F8F1E8;
    border: 1px solid rgba(23, 22, 19, 0.1);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* View More Card (Mobile Only) */
.view-more-card {
    background: transparent;
    border: 2px dashed rgba(23, 22, 19, 0.2);
    justify-content: center;
    align-items: center;
    min-height: 250px;
    display: none;
    /* Hide by default on desktop */
}

@media (max-width: 767px) {
    .view-more-card {
        display: flex;
    }

    .view-more-card .hero-btn-secondary {
        margin-bottom: 0 !important;
    }
}

.view-more-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 24px;
}

.view-more-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #171613;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-more-link .arrow {
    font-size: 20px;
}

.event-card-image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

@media (max-width: 767px) {
    .event-card-image {
        height: 200px;
    }
}

.event-card-image img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.event-date-badge {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: absolute;
    width: 64px;
    height: 68px;
    left: 20px;
    top: 20px;
    background: rgba(19, 37, 31, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    color: #fff;
    flex: none;
    order: 1;
    flex-grow: 0;
    z-index: 1;
}

.date-day {
    font-family: 'Instrument Serif', serif;
    font-size: 24px;
    line-height: 1;
}

.date-month {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 4px;
}

@media (max-width: 767px) {
    .event-date-badge {
        padding: 0;
        width: 56px;
        height: 62px;
        left: 16px;
        top: 16px;
        border-radius: 16px;
    }

    .date-day {
        font-size: 22px;
    }

    .date-month {
        font-size: 10px;
        margin-top: 2px;
    }
}

/* Status badge when inside image */
.event-card-image .status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    margin-bottom: 0;
    z-index: 1;
}

@media (max-width: 767px) {
    .event-card-image .status-badge {
        top: 16px;
        right: 16px;
    }
}

/* Card Content */
.event-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.status-badge {
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 13px;
    width: max-content;
    min-width: 96px;
    height: 30px;
    background: #B96B35;
    border-radius: 999px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
    border: none;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.status-badge.waitlist-open {
    background: #E8D8C7;
    border: 1px solid #F3EEE5;
    color: #13251F;
    align-items: flex-start;
    min-width: 90px;
}

.status-badge.available-now,
.status-badge.upcoming {
    background: #F3EEE5;
    color: #B96B35;
    border: 1px solid #B96B35;
}

.event-card-content .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #171511;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-card-content .card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #70675D;
    margin: 0 0 24px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-card-action {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    background: #13251F;
    color: #fff;
    text-decoration: none;
    margin-top: auto;
    margin-bottom: 16px;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    border: 1px solid #13251F;
}

.btn-card-action.btn-outline {
    background: transparent;
    border: 1px solid #B96B35;
    color: #B96B35;
}

.btn-card-action:hover {
    background: #1a332a;
    color: #fff;
}

.btn-card-action.btn-outline:hover {
    background: #B96B35;
    color: #fff;
    border-color: #B96B35;
}

.card-footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #70675D;
    width: 100%;
    text-align: center;
    margin: 0;
}

/* Upcoming Content doesn't have status badge */
.upcoming-content {
    /* padding-top: 32px; Removed since we added the Upcoming badge */
}

/* Ensure Upcoming descriptions and titles are strictly clamped to 2 lines */
.event-card-content.upcoming-content .card-desc,
.event-card-content.upcoming-content .card-title {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Divider under Upcoming Events */
.upcoming-events-section {
    box-shadow: inset 0px -1px 0px rgba(23, 22, 19, 0.14);
}

.upcoming-events-section.bg-page-color {
    box-shadow: none;
}

.upcoming-events-section.no-top-padding {
    padding-top: 0 !important;
}

/* Membership CTA Section */
.membership-cta-section {
    padding: 48px 40px 60px;
    background-color: var(--bg-color);
    box-sizing: border-box;
    width: 100%;
}

@media (min-width: 768px) {
    .membership-cta-section {
        padding: 60px 40px 70px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .membership-cta-section {
        padding: 80px 24px 80px;
    }
}

@media (min-width: 1200px) {
    .membership-cta-section {
        padding: 96px 96px 96px;
    }
}

.membership-cta-card {
    background: radial-gradient(circle at +8% -5%, rgba(185, 107, 53, 0.4) 0%, #13251F 30%);
    background-color: #13251F;
    border-radius: 24px;
    padding: 80px 24px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    color: #F2E7D9;
}

.membership-cta-eyebrow {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #B96B35;
    margin-bottom: 24px;
}

.membership-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    text-transform: uppercase;
    color: #F3EEE5;
    margin: 0 auto 24px;
    max-width: 754px;
}

@media (min-width: 768px) {
    .membership-cta-title {
        font-size: 48px;
        line-height: 55px;
    }
}

.membership-cta-desc {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: #9A948A;
    margin: 0 auto 40px;
    max-width: 536px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .membership-cta-desc {
        font-size: 18px;
        line-height: 30px;
        padding: 0;
    }
}

.membership-cta-price {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 55px;
    text-align: center;
    text-transform: uppercase;
    color: #F3EEE5;
    margin-bottom: 32px;
}

.membership-cta-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 22px;
    width: 100%;
    max-width: 464px;
    height: 48px;
    margin: 0 auto;
    box-sizing: border-box;

    background-color: #B96B35;
    color: #FFFFFF;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.membership-cta-btn:hover {
    background-color: #A35A2A;
    color: #FFFFFF;
}

.membership-cta-footer {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    color: #9A948A;
    margin: 24px auto 0;
    max-width: 536px;
    width: 100%;
}

/* ==========================================================================
   Membership Page Hero
   ========================================================================== */

.membership-hero-section {
    padding: 24px 40px 24px;
    background-color: var(--bg-color);
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .membership-hero-section {
        padding: 24px 24px 24px;
    }
}

@media (min-width: 1200px) {
    .membership-hero-section {
        padding: 24px 96px 24px;
    }
}

.membership-hero-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.membership-hero-card {
    background-color: #F7F3EB;
    border: 2px solid #d7d4cd;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 100%;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .membership-hero-card {
        flex-direction: row;
        align-items: center;
        padding: 24px 24px 24px 32px;
        gap: 40px;
    }
}

@media (min-width: 1200px) {
    .membership-hero-card {
        padding: 18px 18px 18px 48px;
        gap: 60px;
    }
}

.membership-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .membership-hero-content {
        width: 100%;
    }
}

.membership-hero-image {
    flex: none;
    order: 0;
    flex-grow: 0;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .membership-hero-image {
        width: 45%;
    }
}

@media (min-width: 1200px) {
    .membership-hero-image {
        max-width: 640px;
        width: 100%;
    }
}

.membership-hero-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .membership-hero-image img {
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

@media (min-width: 1200px) {
    .membership-hero-image img {
        height: 583px;
        aspect-ratio: auto;
    }
}

.membership-hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    color: #B96B35;
    text-transform: uppercase;
    margin-bottom: 4px;
    padding-bottom: 18px;
}

.membership-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #171511;
    margin-bottom: 6px;
}

@media (min-width: 1200px) {
    .membership-hero-title {
        font-size: 70px;
        line-height: 67px;
        letter-spacing: -2.1px;
    }
}

.membership-hero-price {
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.membership-hero-price .price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: #13251F;
}

@media (min-width: 1200px) {
    .membership-hero-price .price-amount {
        font-size: 48px;
    }
}

.membership-hero-price .price-period {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #13251F;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.membership-hero-desc {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #70675D;
    margin-bottom: 10px;
    padding-bottom: 18px;
    max-width: 535px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

@media (min-width: 1200px) {
    .membership-hero-desc {
        font-size: 18px;
        line-height: 22px;
    }
}

.membership-hero-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 16px;
    gap: 12px;
    margin: 0 0 12px;
}

.membership-hero-features li {
    position: relative;
    padding-left: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #70675D;
}

.membership-hero-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #B96B35;
    font-size: 16px;
}

.membership-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .membership-hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .membership-hero-actions .btn {
        width: 100%;
    }
}

.btn-filled {
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    width: max-content;
    min-width: 168px;
    height: 48px;
    background: #B96B35;
    border: 1px solid #B96B35;
    border-radius: 100px;
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.btn-filled:hover {
    background-color: #A35A2A;
    color: #FFF;
}

/* ==========================================================================
   Membership Page: Why Section
   ========================================================================== */

.membership-why-section {
    padding: 24px 40px;
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .membership-why-section {
        padding: 24px 24px;
    }
}

@media (min-width: 1200px) {
    .membership-why-section {
        padding: 24px 96px 64px;
    }
}

.membership-why-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.membership-why-card {
    background-color: #F7F3EB;
    border: 1px solid #d7d4cd;
    border-radius: 24px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .membership-why-card {
        padding: 32px 24px;
    }
}

.membership-why-header {
    margin-bottom: 24px;
}

.membership-why-eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    color: #B96B35;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.membership-why-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 48px;
    color: #171511;
    margin-bottom: 0;
}

.membership-why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media (min-width: 992px) {
    .membership-why-grid {
        flex-wrap: nowrap;
        gap: 20px;
    }
}

.why-item {
    background-color: #f2e7d9;
    border: 2px solid #d7d4cd;
    border-radius: 16px;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 calc(50% - 8px);
}

@media (min-width: 992px) {
    .why-item {
        padding: 24px 16px;
        flex: 1 1 0;
    }
}

.why-item-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #B96B35;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #171511;
    margin-bottom: 24px;
}

.why-item-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #171511;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .break-mobile {
        display: block;
    }
}

.why-item-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #70675D;
    margin-bottom: 0;
}

/* ==========================================================================
   Conversations Page
   ========================================================================== */

.conversations-hero-section {
    padding: 52px 0 0;
}

@media (min-width: 1024px) {
    .conversations-hero-section {
        padding: 68px 0 0;
    }
}

@media (max-width: 768px) {
    .conversations-hero-section {
        padding: 36px 0 0;
    }
}

.conversations-hero-content {
    max-width: 800px;
    margin-bottom: 0px;
    padding: 0 40px 64px;
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .conversations-hero-content {
        padding: 0 24px 64px;
    }
}

@media (min-width: 1200px) {
    .conversations-hero-content {
        padding: 0 96px 64px;
    }
}

.conversations-hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    color: #B96B35;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.conversations-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 56px;
    color: #171511;
    margin-bottom: 16px;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .conversations-hero-title {
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .conversations-hero-title {
        font-size: 40px;
    }
}

.conversations-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #70675D;
    margin-bottom: 0;
    max-width: 480px;
}

.conversations-filter-bar {
    padding: 24px 0;
    margin: 0 40px;
    border-top: 1px solid rgba(23, 22, 19, 0.14);
    border-bottom: 1px solid rgba(23, 22, 19, 0.14);
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .conversations-filter-bar {
        margin: 0 24px;
    }
}

@media (min-width: 1200px) {
    .conversations-filter-bar {
        margin: 0 96px;
    }
}

.filter-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.filter-group {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
}

.filter-divider {
    width: 1px;
    background-color: #d7d4cd;
    margin: 0 4px;
    flex-shrink: 0;
}

.filter-container::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .filter-container {
        flex-wrap: wrap;
        overflow-x: visible;
    }
}

.filter-pill {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #70675D;
    background: transparent;
    border: 1px solid #d7d4cd;
    border-radius: 999px;
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-pill:hover {
    border-color: #B96B35;
    color: #B96B35;
}

.swipe-indicator {
    display: none;
}

@media (max-width: 768px) {
    .swipe-indicator {
        display: block;
        font-family: 'Inter', sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        color: #A3A3A3;
        margin: 12px 0 0 0;
    }
}

.filter-pill.active {
    background-color: #B96B35;
    border-color: #B96B35;
    color: #FFFFFF;
}

/* ==========================================================================
   WAITLIST GUIDE SECTION
   ========================================================================== */

.waitlist-guide-section {
    padding: 0px 40px 70px;
    position: relative;
    z-index: 4;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .waitlist-guide-section {
        padding: 0px 24px 80px;
    }
}

@media (min-width: 1200px) {
    .waitlist-guide-section {
        padding: 0px 96px 96px;
    }
}

.waitlist-guide-inner {
    width: 100%;
    margin: 0 auto;
}

.waitlist-guide-card {
    border: 1px solid #D6DAE2;
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    box-sizing: border-box;
}

.waitlist-eyebrow {
    color: #B96B35;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.waitlist-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    color: #171511;
    margin-bottom: 32px;
}

.waitlist-steps {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.waitlist-step {
    flex: 1;
    min-width: 150px;
    background-color: #f8f1e8;
    border: 1px solid #f2e7d9;
    border-radius: 12px;
    padding: 40px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.waitlist-step .step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #B96B35;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
}

.waitlist-step p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

@media (max-width: 767px) {
    .waitlist-guide-card {
        border: none;
        padding: 0;
    }

    .waitlist-steps {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .waitlist-step {
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 20px;
        gap: 16px;
        width: 100%;
        height: 68px;
        background: #E5D9C9;
        border: none;
        border-radius: 16px;
        text-align: left;
    }

    .waitlist-step .step-num {
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0px;
        width: 28px;
        height: 28px;
        background: #F7F5EF;
        border: 1px solid #D4D4D4;
        border-radius: 999px;
        flex: none;
        order: 0;
        flex-grow: 0;
        margin-bottom: 0;
        margin-right: 0;
        font-size: 12px;
        font-weight: 700;
        color: #171511;
    }

    .waitlist-step p {
        margin: 0;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: #171511;
        line-height: 20px;
    }
}

/* ==========================================================================
   PRODUCT HERO SECTION (Single Event)
   ========================================================================== */
.product-hero-section {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 40px 70px;
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .product-hero-section {
        padding: 80px 24px 80px;
    }
}

@media (min-width: 1200px) {
    .product-hero-section {
        padding: 96px 96px 96px;
    }
}

/* Table Full Notice Action Wrap */
.table-full-notice-box {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    width: 100%;
    min-height: 70px;
    background: rgba(185, 107, 53, 0.1);
    border: 1px solid #B96B35;
    border-radius: 18px;
    color: #F8F1E8;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 0px;
}

.btn-waitlist-primary {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 12px;
    width: 100%;
    height: 44px;
    background: #F8F1E8;
    border: 1px solid #B96B35;
    border-radius: 999px;
    color: #13251F;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-waitlist-primary:hover {
    background: #B96B35;
    border-color: #B96B35;
    color: #FAF7F2;
}

.event-price-footer {
    margin-top: 0px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-style: italic;
    color: #F8F1E8;
    text-align: center;
    opacity: 0.8;
}

/* ==========================================================================
   16. Waitlist Modal
   ========================================================================== */
.waitlist-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(133, 129, 122, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.waitlist-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.waitlist-modal-content {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 41px;
    gap: 16px;
    width: 650px;
    height: auto;
    max-width: 90%;
    background: #F7F3EB;
    border: 1px solid #D6C8B7;
    box-shadow: 0px 28px 90px rgba(23, 21, 17, 0.25);
    border-radius: 16px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.waitlist-modal-overlay.active .waitlist-modal-content {
    transform: translateY(0);
}

.waitlist-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 28px;
    color: #85817A;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.waitlist-modal-close:hover {
    color: #171511;
}

.waitlist-modal-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #B96B35;
    margin-bottom: 0;
    margin-top: 0;
}

.waitlist-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: #171511;
    margin-bottom: 8px;
    margin-top: 0;
    line-height: 1.2;
}

.waitlist-modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.waitlist-form-field {
    display: flex;
    flex-direction: column;
}

.waitlist-form-field input {
    box-sizing: border-box;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E5DFD5;
    border-radius: 4px;
    background-color: #F8F1E8;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #171511;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-form-field input::placeholder {
    color: #85817A;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.waitlist-form-field input:focus {
    border-color: #B96B35;
    box-shadow: 0 0 0 1px #B96B35;
}

.btn-waitlist-submit {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 24px;
    width: 100%;
    height: 52px;
    background: #B96B35;
    border: 1px solid #B96B35;
    border-radius: 100px;
    color: #F3EEE5;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
    margin-top: 8px;
    flex: none;
    align-self: stretch;
}

.btn-waitlist-submit:hover {
    background-color: #A05726;
}

.btn-waitlist-submit:active {
    transform: scale(0.98);
}

.waitlist-form-message {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    line-height: 1.4;
}

.waitlist-form-message:empty {
    display: none;
}

.waitlist-form-message.success {
    color: #13251F;
    font-weight: 600;
}

.waitlist-form-message.error {
    color: #D32F2F;
    font-weight: 600;
}

/* ==========================================================================
   17. Waitlist Confirmation Page
   ========================================================================== */
.confirmation-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centered visually in design */
    justify-content: center;
    padding: 57px 65px;
    gap: 24px;
    width: 720px;
    height: auto;
    min-height: 475px;
    max-width: 100%;
    background: #F8F1E8;
    border: 1px solid #D6C8B7;
    border-radius: 16px;
    text-align: center;
}

.confirmation-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid #D6C8B7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.confirmation-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 400;
    color: #171511;
    margin: 0;
}

.confirmation-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #70675D;
    max-width: 500px;
    margin: 0 auto;
}

.confirmation-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.confirmation-btn-primary {
    background-color: #B96B35;
    color: #F3EEE5;
    border: 1px solid #B96B35;
    border-radius: 100px;
    padding: 12px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
    display: inline-block;
}

.confirmation-btn-primary:hover {
    background-color: #A05726;
    border-color: #A05726;
    color: #F3EEE5;
}

.confirmation-btn-secondary {
    background-color: transparent;
    color: #B96B35;
    border: 1px solid #B96B35;
    border-radius: 100px;
    padding: 12px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
    display: inline-block;
}

.confirmation-btn-secondary:hover {
    background-color: #B96B35;
    color: #F3EEE5;
}

@media (max-width: 1023px) {
    .confirmation-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
    }

    .confirmation-btn-primary,
    .confirmation-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .confirmation-card {
        padding: 40px 24px;
    }

    .confirmation-title {
        font-size: 32px;
    }
}

/* ==========================================================================
   18. Checkout Page
   ========================================================================== */
.checkout-page-main {
    padding: 60px 0;
    background-color: #F7F3EB;
}

.cart-page-main .container,
.checkout-page-main .container {
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
}

/* Match header branding position at 1024-1199px (left/right: 24px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .cart-page-main .container,
    .checkout-page-main .container {
        padding: 0 24px;
    }
}

/* Match header branding position at 1200px+ (left/right: 96px) */
@media (min-width: 1200px) {
    .cart-page-main .container,
    .checkout-page-main .container {
        padding: 0 96px;
    }
}



.checkout-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.checkout-main {
    min-width: 0;
}

.checkout-sidebar {
    min-width: 0;
}

.checkout-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #85817A;
    margin-bottom: 16px;
}

.checkout-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    color: #171511;
    margin: 0 0 12px 0;
    line-height: 1.1;
}

.checkout-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #70675D;
    margin-bottom: 40px;
}

/* Pricing Options */
.checkout-pricing-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.pricing-card {
    border: 1px solid #D6C8B7;
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    background-color: #F8F1E8;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: #B96B35;
}

.pricing-card.active {
    border-color: #171511;
    background-color: #F8F1E8;
}

.pricing-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.pricing-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.pricing-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #171511;
}

.pricing-badge {
    background-color: #13251F;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}

.pricing-card-price {
    margin-bottom: 16px;
}

.price-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: #171511;
}

.price-suffix {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #85817A;
    margin-left: 4px;
}

.pricing-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #70675D;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-card-footer {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #171511;
    margin: 0;
    font-weight: 500;
}

/* Promo Banner */
.checkout-promo-banner {
    background-color: #EFE4D6;
    border: 1px solid #E5D5C1;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 40px;
}

.checkout-promo-banner p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #8D562B;
    margin: 0;
    line-height: 1.5;
}

.checkout-promo-banner a {
    color: #B96B35;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 4px;
}

.checkout-promo-banner a:hover {
    text-decoration: underline;
}

.checkout-membership-promo {
    background-color: #E8DECE;
    border: 1px solid #D2BA9E;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #4A443E;
    line-height: 1.6;
}

.promo-become-member-link {
    color: #B96B35;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 4px;
}

.promo-become-member-link:hover {
    text-decoration: underline;
}

/* Form Sections */
.checkout-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #85817A;
    margin: 0 0 16px 0;
}

.checkout-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.checkout-input-group input {
    box-sizing: border-box;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #D6C8B7;
    border-radius: 4px;
    background-color: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #171511;
    outline: none;
}

.checkout-input-group input:focus {
    border-color: #B96B35;
}

.checkout-payment-placeholder {
    border: 1px solid #D6C8B7;
    border-radius: 8px;
    background-color: transparent;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.payment-placeholder-inner {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #85817A;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-checkout-submit {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 52px;
    background: #B96B35;
    border: 1px solid #B96B35;
    border-radius: 100px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-checkout-submit:hover {
    background: #A05726;
    border-color: #A05726;
}

/* Sidebar Order Summary */
.summary-card {
    background-color: #F8F1E8;
    border: 1px solid #D6C8B7;
    border-radius: 12px;
    padding: 32px;
}

.summary-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: #171511;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.summary-meta {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #70675D;
    line-height: 1.5;
    margin-bottom: 24px;
}

.summary-image-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
}

.summary-image-wrapper::after {
    content: '';
    position: absolute;
    left: 1px;
    right: 1px;
    top: 1px;
    bottom: 1px;
    background: linear-gradient(180deg, rgba(23, 37, 31, 0.1) 0%, rgba(0, 0, 0, 0) 40%, rgba(23, 37, 31, 0.35) 100%);
    pointer-events: none;
    z-index: 1;
}

.summary-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.summary-details-box {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 21px;
    gap: 16px;
    background-color: #F7F3EB;
    border: 1px solid #D6C8B7;
    border-radius: 12px;
    margin-bottom: 16px;
    width: 100%;
}

.summary-box-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #85817A;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
}

.summary-grid-item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 15px 14px;
    gap: 4px;
    background: #F7F3EB;
    border: 1px solid #D6C8B7;
    border-radius: 8px;
    position: relative;
}

.summary-grid-item i {
    font-size: 14px;
    color: #B96B35;
    margin-bottom: 4px;
}

.summary-label {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #85817A;
}

.summary-value {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #171511;
}

.summary-price-box {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 21px;
    gap: 8px;
    background: #F7F3EB;
    border: 1px solid #D6C8B7;
    border-radius: 12px;
    margin-bottom: 16px;
    width: 100%;
}

.summary-price-state {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: #171511;
    text-align: center;
}

.summary-error-box {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 21px;
    gap: 8px;
    background: #FFF5F5;
    border: 1px solid #FFDCDC;
    border-radius: 12px;
    margin-bottom: 16px;
    width: 100%;
}

.summary-error-box .summary-box-eyebrow {
    color: #D32F2F;
}

.summary-error-box i {
    color: #D32F2F;
}

.summary-error-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #171511;
    text-align: center;
}

/* WP Swings Subscriptions Recurring Information Styling */
.summary-recurring-container {
    box-sizing: border-box;
    background: #F7F3EB;
    border: 1px solid #D6C8B7;
    border-radius: 12px;
    padding: 21px;
    margin-top: 16px;
    margin-bottom: 16px;
    width: 100%;
}

.summary-recurring-container table {
    width: 100%;
    border-collapse: collapse;
}

.summary-recurring-container th {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0 0 16px 0;
    border: none;
    border-bottom: 1px solid #E5D5C1;
}

.summary-recurring-container th h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #4A4137;
    margin: 0;
    line-height: 1.4;
}

.summary-recurring-container th h4 a {
    color: #B96B35;
    text-decoration: none;
}

.summary-recurring-container td {
    display: block;
    width: 100%;
    padding: 16px 0 0 0;
    border: none;
    text-align: left;
}

.summary-recurring-container td ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.summary-recurring-container td ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #70675D;
    margin-bottom: 12px;
    padding: 0;
    border: none;
}

.summary-recurring-container td ul li:last-child {
    margin-bottom: 0;
    padding-top: 12px;
    border-top: 1px solid #E5D5C1;
    font-size: 14px;
    color: #171511;
}

.summary-recurring-container td ul li label {
    font-weight: 500;
}

.summary-recurring-container td ul li span {
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .checkout-wrapper {
        display: flex;
        flex-direction: column;
        gap: 32px;
        width: 100%;
        max-width: 100%;
    }

    .checkout-main {
        display: contents;
    }

    .checkout-pricing-section {
        order: 1;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .checkout-sidebar {
        order: 2;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .checkout-form-section {
        order: 3;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
}

@media (max-width: 600px) {
    .checkout-pricing-options {
        grid-template-columns: 1fr;
    }

    .checkout-form-row {
        grid-template-columns: 1fr;
    }
}

/* Override header and footer backgrounds for checkout page */
body.page-template-page-checkout-php,
body.page-template-page-checkout-php .site-header,
body.page-template-page-checkout-php .site-footer {
    background-color: #F3EEE5 !important;
}
body.page-template-page-checkout-php {
    overflow-x: hidden;
}

/* Hide WooCommerce extra checkout fields, keep only payment box */
.checkout-payment-woo .woocommerce-form-coupon-toggle,
.checkout-payment-woo .woocommerce-form-coupon,
.checkout-payment-woo .woocommerce-billing-fields,
.checkout-payment-woo .woocommerce-shipping-fields,
.checkout-payment-woo .woocommerce-additional-fields,
.checkout-payment-woo .woocommerce-account-fields,
.checkout-payment-woo .create-account,
.checkout-payment-woo h3#order_review_heading {
    display: none !important;
}

/* Make WooCommerce payment box blend in */
.checkout-payment-woo #payment {
    background: transparent !important;
    border-radius: 0 !important;
}

.checkout-payment-woo #payment ul.payment_methods {
    border-bottom: 0 !important;
    padding: 0 !important;
}

.checkout-payment-woo #payment div.payment_box {
    background-color: #FAF7F2 !important;
    border: 1px solid #E5DFD5 !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    color: #70675D !important;
}

.checkout-payment-woo #payment div.payment_box::before {
    border-bottom-color: #E5DFD5 !important;
}

/* Style the WooCommerce place order button */
.checkout-payment-woo #place_order {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    height: 52px !important;
    background: #B96B35 !important;
    border: 1px solid #B96B35 !important;
    border-radius: 100px !important;
    color: #FFFFFF !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    margin-top: 24px !important;
    text-transform: none !important;
}

.checkout-payment-woo #place_order:hover {
    background: #A05726 !important;
    border-color: #A05726 !important;
}

/* ==========================================================================
   14. THANK YOU PAGE
   ========================================================================== */

.woocommerce-order {
    width: 100%;
}

.thankyou-confirmation-box {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border: 1px solid #D6CEBE;
    border-radius: 12px;
    background: transparent;
    margin-bottom: 60px;
    margin-top: 40px;
}

.thankyou-left {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thankyou-right {
    flex: 1;
    padding: 16px;
    display: flex;
}

.thankyou-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.thankyou-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #D6CEBE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.thankyou-eyebrow {
    color: #B96B35;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.thankyou-title {
    color: #1A1816;
    font-family: 'Instrument Serif', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 32px;
    margin-top: 0;
}

.thankyou-event-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.thankyou-event-meta li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #70675D;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.thankyou-event-meta li svg {
    margin-right: 12px;
    color: #B96B35;
    flex-shrink: 0;
}

.thankyou-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-calendar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 20px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-calendar.apple-cal {
    background: #B96B35;
    color: #fff;
    border: 1px solid #B96B35;
}

.btn-calendar.apple-cal:hover {
    background: #A05726;
    border-color: #A05726;
    color: #fff;
}

.btn-calendar.google-cal {
    background: transparent;
    color: #4A4A4A;
    border: 1px solid #D6CEBE;
}

.btn-calendar.google-cal:hover {
    border-color: #B96B35;
    color: #B96B35;
}

.thankyou-footer {
    color: #928B82;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-style: italic;
    margin: 0;
}

.thankyou-cross-sells {
    margin-top: 80px;
    margin-bottom: 80px;
}

@media (max-width: 991px) {
    .thankyou-confirmation-box {
        flex-direction: column;
    }

    .thankyou-left {
        padding: 40px 20px;
    }

    .thankyou-right {
        height: 300px;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .btn-calendar {
        width: 100%;
    }
}

.thankyou-page-main {
    background-color: #f7f3eb !important;
}

/* ==========================================================================
   MOBILE PADDING OVERRIDES
   ========================================================================== */
@media (max-width: 768px) {

    /* Reduce Header & Footer Edge Padding */
    .site-header .container,
    .site-footer {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* Reduce Section Edge Padding (preserves top/bottom padding) */
    section,
    .hero-section,
    .why-section,
    .table-section,
    .unfolds-section,
    .events-grid-section,
    .membership-hero,
    .membership-hero-section,
    .membership-why-section,
    .conversations-hero-content,
    .membership-benefits-section,
    .checkout-section {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .conversations-filter-bar {
        margin-left: 16px !important;
        margin-right: 16px !important;
    }

    /* Ensure container padding is minimal on mobile to avoid double-padding */
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* Remove double-padding for containers inside sections that already have their own padding */
    .membership-hero-section .container,
    .membership-why-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* ==========================================================================
   LARGE DESKTOP PADDING OVERRIDES (1600px+)
   ========================================================================== */
@media (min-width: 1600px) {

    .site-header .container,
    .site-footer,
    .hero-section,
    .why-section,
    .table-section,
    .unfolds-section,
    .events-grid-section,
    .membership-hero,
    .membership-hero-section,
    .membership-why-section,
    .membership-cta-section,
    .conversations-hero-section,
    .membership-benefits-section,
    .checkout-section,
    .cart-page-main .container,
    .checkout-page-main .container,
    .product-hero-section,
    .waitlist-guide-section {
        padding-left: 12% !important;
        padding-right: 12% !important;
    }

    .site-branding {
        left: 12% !important;
    }

    .header-cta {
        right: 12% !important;
    }

    .conversations-filter-bar {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .conversations-hero-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media (min-width: 1920px) {

    .site-header .container,
    .site-footer,
    .hero-section,
    .why-section,
    .table-section,
    .unfolds-section,
    .events-grid-section,
    .membership-hero,
    .membership-hero-section,
    .membership-why-section,
    .membership-cta-section,
    .conversations-hero-section,
    .membership-benefits-section,
    .checkout-section,
    .cart-page-main .container,
    .checkout-page-main .container,
    .product-hero-section,
    .waitlist-guide-section {
        padding-left: 18% !important;
        padding-right: 18% !important;
    }

    .site-branding {
        left: 18% !important;
    }

    .header-cta {
        right: 18% !important;
    }

    .conversations-filter-bar {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .conversations-hero-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* ==========================================================================
   FLUID BUTTON CIRCULAR ANIMATIONS
   ========================================================================== */

/* 1. Base Setup for all buttons */
.btn,
input[type="submit"],
.btn-event-reserve,
.btn-booking-submit,
.btn-waitlist-primary,
.btn-waitlist-submit,
.btn-checkout-submit,
.membership-cta-btn,
.btn-calendar,
.hero-btn-primary,
.btn-unfolds,
.btn-filled,
.btn-card-action,
.header-cta-btn,
.btn-secondary,
.hero-btn-secondary,
.btn-outline-brand {
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    isolation: isolate;
    transition: color 0.3s ease-linear, border-color 0.3s ease-linear !important;
}

.btn::before,
input[type="submit"]::before,
.btn-event-reserve::before,
.btn-booking-submit::before,
.btn-waitlist-primary::before,
.btn-waitlist-submit::before,
.btn-checkout-submit::before,
.membership-cta-btn::before,
.btn-calendar::before,
.hero-btn-primary::before,
.btn-unfolds::before,
.btn-filled::before,
.btn-card-action::before,
.header-cta-btn::before,
.btn-secondary::before,
.hero-btn-secondary::before,
.btn-outline-brand::before {
    content: '';
    position: absolute;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    left: -100%;
    top: 50%;
    transform: translateY(-50%) scale(1);
    transition: all 0.85s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1 !important;
}

/* Hover State */
.btn:hover::before,
input[type="submit"]:hover::before,
.btn-event-reserve:hover::before,
.btn-booking-submit:hover::before,
.btn-waitlist-primary:hover::before,
.btn-waitlist-submit:hover::before,
.btn-checkout-submit:hover::before,
.membership-cta-btn:hover::before,
.btn-calendar:hover::before,
.hero-btn-primary:hover::before,
.btn-unfolds:hover::before,
.btn-filled:hover::before,
.btn-card-action:hover::before,
.header-cta-btn:hover::before,
.btn-secondary:hover::before,
.hero-btn-secondary:hover::before,
.btn-outline-brand:hover::before {
    left: 0;
    transform: translateY(-50%) scale(1.5);
}

/* 2. Color Assignments & Prevent Base BG Changes */

/* Orange Solid Buttons */
/* Normal: Orange BG. Hover Sweep: Beige. Hover Text: Orange. */
.btn:hover,
input[type="submit"]:hover,
.btn-event-reserve:hover,
.btn-booking-submit:hover,
.btn-waitlist-submit:hover,
.btn-checkout-submit:hover,
.membership-cta-btn:hover,
.btn-filled:hover,
.btn-calendar.apple-cal:hover {
    background-color: #B96B35 !important;
    /* Lock base BG */
    color: #B96B35 !important;
}

.btn::before,
input[type="submit"]::before,
.btn-event-reserve::before,
.btn-booking-submit::before,
.btn-waitlist-submit::before,
.btn-checkout-submit::before,
.membership-cta-btn::before,
.btn-filled::before,
.btn-calendar.apple-cal::before {
    background-color: #FAF7F2;
}

/* Dark Green Solid Buttons */
/* Normal: Green BG. Hover Sweep: Beige. Hover Text: Green. */
.hero-btn-primary:hover,
.btn-unfolds:hover,
.btn-card-action:not(.btn-outline):hover,
.header-cta-btn:hover {
    background-color: #13251F !important;
    /* Lock base BG */
    color: #13251F !important;
}

/* Custom Hover Sweep for Explore Conversations, Cards, and Header (Orange) */
.hero-btn-primary::before,
.btn-unfolds::before,
.btn-card-action:not(.btn-outline):before,
.header-cta-btn::before {
    background-color: #B96B35;
}

.hero-btn-primary:hover,
.btn-unfolds:hover,
.btn-card-action:not(.btn-outline):hover,
.header-cta-btn:hover {
    background-color: #13251F !important;
    /* Lock base BG */
    border-color: #B96B35 !important;
    color: #FFFFFF !important;
}



/* Light Beige Buttons (e.g., Waitlist Primary) */
/* Normal: Beige BG. Hover Sweep: Orange. Hover Text: Beige. */
.btn-waitlist-primary:hover {
    background-color: #FAF7F2 !important;
    /* Lock base BG */
    border-color: #B96B35 !important;
    color: #FAF7F2 !important;
}

.btn-waitlist-primary::before {
    background-color: #B96B35;
}

/* Outline/Transparent Buttons */
/* Normal: Transparent BG. Hover Sweep: Orange. Hover Text: White. */
.btn-secondary:hover,
.hero-btn-secondary:hover,
.btn-outline-brand:hover,
.btn-card-action.btn-outline:hover,
.btn-calendar.google-cal:hover {
    background-color: transparent !important;
    /* Lock base BG */
    color: #ffffff !important;
    border-color: #B96B35 !important;
}

.btn-secondary::before,
.hero-btn-secondary::before,
.btn-outline-brand::before,
.btn-card-action.btn-outline::before,
.btn-calendar.google-cal::before {
    background-color: #B96B35;
}

/* ==========================================================================
   SMOOTH SCROLL & CUSTOM MOUSE CURSOR
   ========================================================================== */



/* Custom Cursor Elements */


/* Lenis CSS Helper Classes */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis-stopped {
    overflow: hidden;
}

.lenis-scrolling iframe {
    pointer-events: none;
}

/* Related Events Section - Responsive Padding */
.events-grid-section.related-events-section {
    padding-top: 0;
    padding-bottom: 80px;
}

@media (min-width: 768px) {
    .events-grid-section.related-events-section {
        padding-top: 0px;
        padding-bottom: 80px;
    }
}

/* Homepage Hero Section - Mobile Styling Override (max-width: 767px) */
@media (max-width: 767px) {
    main.homepage {
        display: flex !important;
        flex-direction: column !important;
    }

    .active-events-section {
        order: 2 !important;
    }

    .upcoming-events-section {
        order: 3 !important;
    }

    .why-section {
        order: 4 !important;
    }

    .table-section {
        order: 5 !important;
    }

    .unfolds-section {
        order: 6 !important;
    }

    .membership-cta-section {
        order: 7 !important;
    }

    .hero-section {
        width: 100% !important;
        max-width: 100% !important;
        height: 850px !important;
        background: #13251F !important;
        box-shadow: inset 0px -1px 0px #D6C8B7 !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        flex: none !important;
        order: 1 !important;
        flex-grow: 0 !important;
        position: relative !important;
    }

    .hero-inner {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        gap: 0 !important;
        width: 100% !important;
        height: 100% !important;
        grid-template-columns: none !important;
        position: relative !important;
        z-index: 2 !important;
        padding: 0 !important;
    }

    .hero-image-wrap {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 580px !important;
        border-radius: 0 !important;
        margin: 0 !important;
        z-index: 1 !important;
        max-height: none !important;
    }

    .hero-image-wrap::after {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(180deg, rgba(19, 37, 31, 0.1) 0%, #13251F 100%) !important;
        pointer-events: none !important;
    }

    .hero-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 0 !important;
        max-height: none !important;
        opacity: 1 !important;
    }

    .hero-content {
        order: 2 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        padding: 0px 16px 40px !important;
        gap: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        position: relative !important;
        z-index: 10 !important;
    }

    .hero-eyebrow {
        color: #B96B35 !important;
        font-weight: 800 !important;
        font-size: 12px !important;
        line-height: 16px !important;
        letter-spacing: 2.88px !important;
        text-align: left !important;
        align-self: flex-start !important;
        margin: 0 !important;
    }

    .hero-heading {
        font-family: 'Cormorant Garamond', serif !important;
        font-style: normal !important;
        font-weight: 700 !important;
        font-size: 64px !important;
        line-height: 72px !important;
        color: #F3EEE5 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        letter-spacing: -1px !important;
        text-align: left !important;
        align-self: flex-start !important;
        margin: 0 !important;
    }

    .hero-body {
        font-family: 'Inter', sans-serif !important;
        font-style: normal !important;
        font-weight: 400 !important;
        font-size: 12px !important;
        line-height: 15px !important;
        color: #F3EEE5 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        text-align: left !important;
        align-self: flex-start !important;
        margin: 0 !important;
    }

    .hero-body-desktop {
        display: none !important;
    }

    .hero-body-mobile {
        display: block !important;
    }

    .hero-actions {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        max-width: none !important;
        gap: 12px !important;
        margin-top: 8px !important;
        align-self: stretch !important;
    }

    .hero-btn-primary {
        background-color: #B96B35 !important;
        border-color: #B96B35 !important;
        color: #FFFFFF !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        border-radius: 999px !important;
        padding: 14px 20px !important;
    }

    .hero-btn-primary:hover {
        background-color: #a35a2b !important;
        border-color: #a35a2b !important;
    }

    .hero-btn-secondary {
        border-color: #B96B35 !important;
        color: #B96B35 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        border-radius: 999px !important;
        margin-bottom: 45px !important;
        padding: 14px 20px !important;
        background-color: transparent !important;
    }

    .hero-btn-secondary:hover,
    .hero-btn-secondary:active,
    .hero-btn-secondary:focus {
        background-color: transparent !important;
        color: #ffffff !important;
        border-color: #B96B35 !important;
    }

    .hero-btn-secondary:hover::before,
    .hero-btn-secondary:active::before,
    .hero-btn-secondary:focus::before {
        left: 0 !important;
        transform: translateY(-50%) scale(1.5) !important;
    }

    /* Scoped to Conversations Page - Vertically Stacked Events instead of Slider on Mobile */
    .page-template-page-conversations-php .events-grid-section .events-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        overflow-x: visible !important;
        margin-right: 0 !important;
        padding-right: 0 !important;
        scroll-snap-type: none !important;
        gap: 24px !important;
    }

    .page-template-page-conversations-php .events-grid-section .event-grid-card {
        flex: none !important;
        width: 100% !important;
    }

    .page-template-page-conversations-php .events-grid-section .mobile-swipe-indicator {
        display: none !important;
    }
}

/* ==========================================================================
   HOME PAGE — MOBILE OVERLAY HEADER (max-width: 767px only)
   ========================================================================== */
@media (max-width: 767px) {

    body.home .site-header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        border: none !important;
        z-index: 100;
    }

    /* Gradient via ::after so it doesn't affect dropdown position */
    body.home .site-header::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 130px;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.65) 50%, transparent 100%);
        pointer-events: none;
        z-index: -1;
    }

    /* White logo */
    body.home .site-header .site-logo,
    body.home .site-header .custom-logo-link img {
        filter: brightness(0) invert(1);
    }

    /* White hamburger lines */
    body.home .site-header .menu-toggle span {
        background-color: #ffffff;
    }

    /* Hamburger circle button */
    body.home .site-header .menu-toggle {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.5);
    }

    body.home .hero-section {
        padding-top: calc(var(--header-height) + 16px);
    }

    body.home .site-content {
        padding-top: 0 !important;
    }

    /* Dropdown uses same dark gradient, transparent background */
    body.home .mobile-navigation {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.65) 60%, transparent 100%) !important;
        background-color: transparent !important;
        border-bottom: none !important;
        box-shadow: none !important;
        top: calc(100% - 20px) !important;
        padding-top: 2rem !important;
        position: absolute !important;
        z-index: 50 !important;
        /* Forces dropdown text to sit ABOVE the header gradient */
    }

    /* Extend header gradient further down when menu is active */
    body.home.mobile-nav-active .site-header::after {
        height: 220px !important;
    }

    /* White text for nav links on dark background */
    body.home .mobile-navigation a {
        color: #ffffff !important;
    }

    body.home .mobile-navigation .mobile-cta .header-cta-btn {
        background-color: rgba(255, 255, 255, 0.15) !important;
        color: #ffffff !important;
        border-color: rgba(255, 255, 255, 0.5) !important;
    }

    /* Hero text line breaks are handled below */
}

@media (max-width: 767px) {

    /* Specific Line Breaks for Hero Text (Mobile Only) */
    .hero-heading .mobile-break,
    .hero-body .mobile-break {
        display: block;
    }

    .hero-heading .desktop-break,
    .hero-body .desktop-break {
        display: none;
    }
}

/* Desktop & Tablet Line Breaks */
@media (min-width: 768px) {

    .hero-heading .mobile-break,
    .hero-body .mobile-break {
        display: none;
    }

    .hero-heading .desktop-break,
    .hero-body .desktop-break {
        display: block;
    }
}

/* ==========================================================================
   STANDARD PAGES RESPONSIVE CONTAINERS & PADDING (Privacy, Terms, etc.)
   ========================================================================== */
.standard-page-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 40px !important;
    box-sizing: border-box;
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .standard-page-container {
        padding: 0 24px !important;
    }
}

@media (min-width: 1200px) {
    .standard-page-container {
        padding: 0 96px !important;
    }
}

/* Limit text content width on standard pages for premium readability */
.standard-page-container .entry-content {
    max-width: 800px;
    margin: 0 auto;
}

.standard-page-container .entry-header {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   DISHCOURSE CART PAGE STYLING
   ========================================================================== */

.cart-page-main {
    background-color: #F7F3EB !important;
    padding: 60px 0 100px 0;
    min-height: calc(100vh - 82px - 300px);
}

@media (min-width: 1200px) {
    .cart-page-main .container {
        padding: 0 96px;
    }
}

.cart-header-section {
    margin-bottom: 20px;
}

.cart-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #85817A;
    margin-bottom: 12px;
}

.cart-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    color: #171511;
    margin: 0 0 10px 0;
    line-height: 1.1;
}

.cart-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #70675D;
    margin: 0;
}

/* Grid Layout */
.dishcourse-cart-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.dishcourse-cart-main {
    background-color: #F8F1E8;
    border: 1px solid #D6C8B7;
    border-radius: 16px;
    padding: 32px;
    margin-top: 31px; /* Align with the ORDER SUMMARY eyebrow height (15px text + 16px margin) */
}

.dishcourse-cart-items-header {
    display: grid;
    grid-template-columns: 4fr 0.8fr 1fr 0.8fr 40px;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5DEC9;
    margin-bottom: 24px;
}

.col-head {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #85817A;
    text-transform: uppercase;
}

/* Items List */
.dishcourse-cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dishcourse-cart-item {
    display: grid;
    grid-template-columns: 4fr 0.8fr 1fr 0.8fr 40px;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 24px;
    border-bottom: 1px dashed #E5DEC9;
}

.dishcourse-cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Info Column */
.item-info {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

/* WooCommerce Cart Item Variations */
dl.variation {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px;
    margin: 4px 0 0 0;
    font-size: 13px;
    color: #85817A;
}
dl.variation dt {
    font-weight: 600;
    margin: 0;
}
dl.variation dd {
    margin: 0;
}
dl.variation dd p {
    margin: 0;
    display: inline;
}

.cart-item-thumb {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background-color: #EFE8DD;
}

.cart-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-item-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 6px 0;
}

.cart-item-title a {
    color: #171511;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cart-item-title a:hover {
    color: #B96B35;
}

.cart-item-meta {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #70675D;
    margin: 0;
    line-height: 1.4;
}

/* Price & Subtotal Column */
.price-amount,
.subtotal-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: #171511;
}

.subtotal-amount {
    color: #B96B35;
}

/* Quantity Controller */
.quantity-controller {
    display: inline-flex;
    align-items: center;
    border: 1px solid #D6C8B7;
    border-radius: 8px;
    background-color: #FFFFFF;
    overflow: hidden;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: #171511;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.qty-btn:hover {
    background-color: #F4EEE5;
    color: #B96B35;
}

.quantity-controller .quantity {
    display: inline-block;
    margin: 0;
}

.quantity-controller input.qty {
    width: 36px;
    height: 32px;
    border: none;
    border-left: 1px solid #E5DEC9;
    border-right: 1px solid #E5DEC9;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #171511;
    background: transparent;
    -moz-appearance: textfield;
}

.quantity-controller input.qty::-webkit-outer-spin-button,
.quantity-controller input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove item */
/* Ensure our cart remove button overrides WooCommerce defaults on live site */
.woocommerce a.remove-cart-item,
.woocommerce-page a.remove-cart-item,
.dishcourse-cart-main a.remove-cart-item {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    color: #A39B90 !important;
    font-size: 22px !important;
    font-weight: normal !important;
    line-height: 1 !important;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
    transition: all 0.2s ease !important;
}

.woocommerce a.remove-cart-item:hover,
.woocommerce-page a.remove-cart-item:hover,
.dishcourse-cart-main a.remove-cart-item:hover {
    background-color: #EFE6DA !important;
    color: #D9534F !important;
}

/* Actions Bar */
.dishcourse-cart-actions {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #E5DEC9;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.verify-membership-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 10px;
    width: 100%;
}

.cart-coupon-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.coupon-input {
    background-color: #FFFFFF;
    border: 1px solid #D6C8B7;
    border-radius: 8px;
    padding: 10px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #171511;
    width: 180px;
    outline: none;
    transition: border-color 0.2s ease;
}

.coupon-input:focus {
    border-color: #B96B35;
}

.btn-coupon {
    background-color: #171511;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-coupon:hover {
    background-color: #B96B35;
}

.btn-update-cart {
    background-color: transparent;
    border: 1px solid #171511;
    color: #171511;
    border-radius: 8px;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-update-cart:hover:not(:disabled) {
    background-color: #171511;
    color: #FFFFFF;
}

.btn-update-cart:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Sidebar Order Summary */
.cart-summary-card {
    background-color: #F8F1E8;
    border: 1px solid #D6C8B7;
    border-radius: 16px;
    padding: 32px;
}

.summary-line-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #70675D;
    border-bottom: 1px solid #E5DEC9;
}

.summary-line-item:last-child {
    border-bottom: none;
}

.line-value {
    font-weight: 600;
    color: #171511;
}

.cart-grand-total {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 32px !important;
    font-weight: 600 !important;
    color: #171511 !important;
}

.cart-checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.cart-proceed-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #B96B35;
    color: #FFFFFF !important;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 16px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 4px 12px rgba(185, 107, 53, 0.2);
}

.cart-proceed-btn:hover {
    background-color: #A55721;
    color: #FFFFFF !important;
    transform: translateY(-1px);
}

.continue-shopping-link {
    display: block;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #70675D;
    text-decoration: none;
    transition: color 0.2s ease;
}

.continue-shopping-link:hover {
    color: #B96B35;
}

.cart-trust-badges {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #E5DEC9;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #70675D;
}

.trust-badge-item i {
    color: #B96B35;
    font-size: 14px;
}

/* Empty Cart State */
.cart-empty-container {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.cart-empty-card {
    background-color: #F8F1E8;
    border: 1px solid #D6C8B7;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 520px;
    width: 100%;
}

.cart-empty-icon-box {
    width: 80px;
    height: 80px;
    background-color: #EFE6DA;
    color: #B96B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px auto;
}

.cart-empty-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 500;
    color: #171511;
    margin: 0 0 12px 0;
}

.cart-empty-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #70675D;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.cart-empty-cta-btn {
    display: inline-block;
    background-color: #B96B35;
    color: #FFFFFF !important;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.cart-empty-cta-btn:hover {
    background-color: #A55721;
}

/* Cart Page Responsive Breakpoints */
@media (max-width: 991px) {
    .dishcourse-cart-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dishcourse-cart-items-header {
        display: none;
    }
    
    .dishcourse-cart-item {
        grid-template-columns: 1fr auto;
        grid-template-areas: 
            "info remove"
            "price qty"
            "subtotal subtotal";
        gap: 16px;
        padding-bottom: 20px;
    }
    
    .item-info { grid-area: info; }
    .item-remove { grid-area: remove; justify-self: end; }
    .item-price { grid-area: price; }
    .item-quantity { grid-area: qty; justify-self: end; }
    .item-subtotal { grid-area: subtotal; border-top: 1px dashed #E5DEC9; padding-top: 10px; }
}

@media (max-width: 576px) {
    .cart-title {
        font-size: 36px;
    }
    
    .dishcourse-cart-main,
    .cart-summary-card {
        padding: 20px;
    }
    
    .dishcourse-cart-main {
        margin-top: 0; /* Reset top margin when stacked */
    }
    
    .dishcourse-cart-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .verify-membership-wrapper {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 10px;
    }
    
    .verify-membership-wrapper .btn {
        width: 100%;
    }
    
    .cart-coupon-box {
        flex-direction: column;
        width: 100%;
    }
    
    .coupon-input {
        width: 100%;
    }
    
    .btn-coupon {
        width: 100%;
    }
}


/* WooCommerce Alerts */
.woocommerce-message, .woocommerce-error, .woocommerce-info, .woocommerce-notice {
    padding: 16px 24px !important;
    margin-bottom: 24px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Hide default WooCommerce icons that overlap with the text */
.woocommerce-message::before, 
.woocommerce-error::before, 
.woocommerce-info::before, 
.woocommerce-notice::before {
    display: none !important;
}

.woocommerce-message {
    background-color: #F5F2EB;
    border: 1px solid #E5DEC9;
    border-left: 4px solid #B96B35;
    color: #171511;
}

.woocommerce-error {
    background-color: #F5F2EB;
    border: 1px solid #E5DEC9;
    border-left: 4px solid #D32F2F;
    color: #171511;
}

.woocommerce-info, .woocommerce-notice {
    background-color: #F5F2EB;
    border: 1px solid #E5DEC9;
    border-left: 4px solid #B96B35;
    color: #171511;
}

.woocommerce-error ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce-error li {
    margin: 0;
}

/* Links/Buttons inside alerts */
.woocommerce-message a, .woocommerce-error a, .woocommerce-info a {
    font-weight: 600;
    text-decoration: none;
    color: currentColor;
}

/* Clearfix for floated buttons */
.woocommerce-message::after, .woocommerce-error::after, .woocommerce-info::after {
    content: "";
    display: table;
    clear: both;
}

.woocommerce-message a.restore-item, .woocommerce-message a.button, .woocommerce-error a.button, .woocommerce-info a.button {
    background-color: transparent;
    border: 1px solid currentColor;
    border-radius: 6px;
    padding: 6px 14px;
    margin-left: 16px;
    float: right;
    transition: opacity 0.2s;
}

.woocommerce-message a:hover, .woocommerce-error a:hover, .woocommerce-info a:hover {
    opacity: 0.7;
}


/* Checkout Summary Thumbnail */
.checkout-summary-item-thumb {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}
.checkout-summary-item-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    margin: 0;
}
