/* Dark mode variables */
:root {
    --header-height: 4rem;
    --bg-color: #1a1a1a;
    --text-color: #e0e0e0;
    --header-bg: #2d2d2d;
    --border-color: #444444;
    --link-color: #4da6ff;
    --link-hover-color: #80c3ff;
    --button-bg: #388e3c;
    --button-text: #ffffff;
    --grid-item-bg: #2d2d2d;
    --box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    --nav-bg: #3d3d3d;
    --nav-text: #e0e0e0;
    --nav-active-bg: #388e3c;
    --nav-active-text: #ffffff;
    --dropdown-bg: #3d3d3d;
    --about-header-gradient: linear-gradient(135deg, #ffffff 20%, #ef4444 100%);
}

/* Light mode variables (override) */
[data-theme="light"] {
    --bg-color: #ffffff;
    --text-color: #333333;
    --header-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --link-color: #007bff;
    --link-hover-color: #0056b3;
    --button-bg: #4CAF50;
    --button-text: #ffffff;
    --grid-item-bg: #ffffff;
    --box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    --nav-bg: #f1f1f1;
    --nav-text: #333333;
    --nav-active-bg: #4CAF50;
    --nav-active-text: #ffffff;
    --dropdown-bg: #f9f9f9;
    --about-header-gradient: linear-gradient(135deg, #d32f2f 0%, #7f1d1d 100%);
}

/* Apply variables to base elements */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: calc(var(--header-height) + 1rem) 1rem 2rem;
    min-height: 100vh;
    box-sizing: border-box;
}

/* Header styles */
.header-logo {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
}

.header-logo a {
    color: inherit;           /* Inherits the color from parent h1 */
    text-decoration: none;    /* Removes underline */
}

.header-logo a:hover {
    color: inherit;           /* Prevents color change on hover */
    text-decoration: none;    /* Prevents underline on hover */
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 5px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .mobile-menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

h2 {
    text-align: center;
}

/* Navigation styles */
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.nav-list li {
    display: block;
}

.nav-list a {
    text-decoration: none;
    color: var(--nav-text);
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-list a:hover {
    background-color: rgba(0,0,0,0.1);
}

.nav-list .active > a {
    font-weight: bold;
    background-color: var(--nav-active-bg);
    color: var(--nav-active-text);
}

/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--dropdown-bg);
  min-width: 200px;
  box-shadow: var(--box-shadow);
  z-index: 1;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  left: auto;
  right: 0;
  top: 100%;
  
  /* Reset browser ul defaults */
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-content li {
  display: block;
  width: 100%;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: var(--text-color) !important;
  padding: 12px 16px;
  display: block;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: rgba(0, 0, 0, 0.15);
}

/* Make the span in the first dropdown clickable too */
.dropdown > span {
  cursor: pointer;
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: var(--nav-text);
  border-radius: 4px;
  transition: background-color 0.3s;
}

.dropdown > span:hover {
  background-color: rgba(0,0,0,0.1);
}

/* Phone link styles */
.phone-link {
    color: var(--link-color);
    text-decoration: none;
}

.phone-link:hover {
    text-decoration: underline;
    color: var(--link-hover-color);
}

/* Button styles */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--button-bg);
    color: var(--button-text);
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
}

.button:hover {
    opacity: 0.9;
}

/* Layout styles */
.row-flex {
    display: flex;
    flex-flow: row wrap;
    gap: 15px 10px; /* row column */
    justify-content: space-evenly; 
    align-items: stretch;
}

.column-flex {
    display: flex;
    flex-flow: column nowrap;
    row-gap: 15px;
    justify-content: space-evenly;
}

.mainBorder {
    border: 2px solid var(--border-color); 
    border-radius: 5px;
}

/* Grid styles */
.grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    padding: 20px;
    align-items: start;
}

.grid-item {
    background-color: var(--grid-item-bg);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
}

.grid-item-content {
    padding: 15px;
}

/* Tab navigation styles */
.tab-nav {
    display: flex;
    list-style-type: none;
    padding: 0 0 12px 0;
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-color);
}

.tab-nav li a {
    padding: 12px 24px;
    text-decoration: none;
    background-color: var(--nav-bg);
    border-radius: 5px 5px 0 0;
    color: var(--nav-text);
    cursor: pointer;
    transition: background-color 0.3s;
}

.tab-nav li a:hover {
    background-color: rgba(0,0,0,0.1);
}

.tab-nav .active a {
    font-weight: bold;
    background-color: var(--nav-active-bg);
    color: var(--nav-active-text);
}

.tab-content {
    display: none;
    padding: 20px;
    background-color: var(--grid-item-bg);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 5px 5px;
}

.tab-content.active {
    display: block;
}

/* Image container styles */
.image-container {
    /* min-width: 200px; */
    overflow: hidden;
}

.thumbnail-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Dark mode toggle button */
.dark-mode-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    margin-left: auto;
    color: var(--text-color);
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
}

.dark-mode-toggle:hover {
    background-color: rgba(0,0,0,0.1);
    transform: scale(1.1);
}

.dark-mode-toggle:focus {
    outline: 2px solid var(--link-color);
}


/* Header styles */
header {
    background-color: var(--header-bg);
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: calc(var(--header-height) - 2rem);
}

/* Flex container for header content */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}



/* Home Page Specific Styles */
.homeSpan {
    font-weight: bold;
    font-size: x-large;
    text-align: center;
}

/* Inventory items sizing */
#meatDiv, #deliDiv, #bbqDiv, #bundleDiv, .homepage-tile-div {
    height: 100%;
}

/* Product Grid Layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 1.5rem 0;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.inventory-link {
    display: block; 
    text-decoration: none; 
    color: inherit;
    width: 100%;
}

/* Bundle Card styles */
.bundle-card {
    background-color: var(--grid-item-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bundle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #388e3c, #81c784);
    opacity: 0.8;
}

.bundle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

[data-theme="light"] .bundle-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.bundle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    gap: 12px;
}

.bundle-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
}

.bundle-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: #4CAF50;
    white-space: nowrap;
}

[data-theme="dark"] .bundle-price {
    color: #81c784;
}

.bundle-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.items-title {
    margin: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-color);
    opacity: 0.7;
}

.bundle-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bundle-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.item-quantity {
    background-color: rgba(56, 142, 60, 0.15);
    color: #388e3c;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    white-space: nowrap;
}

[data-theme="dark"] .item-quantity {
    background-color: rgba(129, 199, 132, 0.15);
    color: #81c784;
}

.item-name {
    color: var(--text-color);
}

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

.total-weight, .lead-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.8;
}

.total-weight {
    font-weight: 600;
}

.clock-icon, .weight-icon {
    flex-shrink: 0;
}

/* Meat, Deli, & Smoked Card styles */
.meat-card, .deli-card, .smoked-card {
    background-color: var(--grid-item-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    position: relative;
}

.meat-card:hover, .deli-card:hover, .smoked-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

[data-theme="light"] .meat-card:hover, [data-theme="light"] .deli-card:hover, [data-theme="light"] .smoked-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.meat-card-image, .deli-card-image, .smoked-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #222;
}

.meat-card-image img, .deli-card-image img, .smoked-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.meat-card:hover .meat-card-image img, .deli-card:hover .deli-card-image img, .smoked-card:hover .smoked-card-image img {
    transform: scale(1.05);
}

/* Status Badge */
.status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 10;
}

.status-badge-inline {
    position: static;
    display: inline-block;
    width: fit-content;
    margin-bottom: 8px;
    box-shadow: none;
}

.status-in-stock {
    background-color: #2e7d32;
    color: #ffffff;
}

.status-limited-stock {
    background-color: #f57c00;
    color: #ffffff;
}

.status-out-of-stock {
    background-color: #d32f2f;
    color: #ffffff;
}

.status-special-order {
    background-color: #0288d1;
    color: #ffffff;
}

.status-special {
    background-color: #673ab7;
    color: #ffffff;
}

.status-sale {
    background-color: #e53935;
    color: #ffffff;
}

.sale-price-highlight {
    color: #d32f2f !important;
    font-weight: 700;
}

[data-theme="dark"] .sale-price-highlight {
    color: #ff5252 !important;
}

.original-price-crossed {
    text-decoration: line-through;
    color: #888888;
    margin-right: 8px;
    font-size: 0.95rem;
}

.meat-card-content, .deli-card-content, .smoked-card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.meat-title, .deli-title, .smoked-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-color);
}

.meat-price-row, .deli-price-row, .smoked-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: auto;
}

.meat-price, .deli-price, .smoked-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #4CAF50;
}

[data-theme="dark"] .meat-price, [data-theme="dark"] .deli-price, [data-theme="dark"] .smoked-price {
    color: #81c784;
}

.meat-unit, .deli-unit, .smoked-unit {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
}

/* Cohesive Contact Section */
.contact-section {
    margin-top: 4rem;
    margin-bottom: 2rem;
    background-color: var(--grid-item-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .contact-section {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.contact-map-container {
    width: 100%;
    min-height: 350px;
    position: relative;
    background-color: #222;
}

.contact-map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-info-container {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.contact-info-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(56, 142, 60, 0.15);
    color: #388e3c;
    border-radius: 50%;
    flex-shrink: 0;
}

[data-theme="dark"] .contact-icon-wrapper {
    background-color: rgba(129, 199, 132, 0.15);
    color: #81c784;
}

.contact-text {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.5;
}

.contact-text a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-text a:hover {
    color: var(--link-hover-color);
    text-decoration: underline;
}

.contact-action {
    margin-top: 8px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 24px;
    background-color: var(--button-bg);
    color: var(--button-text);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
}

/* Business Hours & Accordion Styles */
.contact-item.hours-item {
    align-items: flex-start;
}

.hours-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hours-status-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hours-today-text {
    font-weight: 600;
}

/* Open/Closed Badge Styling */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    user-select: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.status-indicator .indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.status-open {
    background-color: rgba(16, 185, 129, 0.12);
    color: #10b981;
}

[data-theme="dark"] .status-open {
    background-color: rgba(16, 185, 129, 0.18);
    color: #34d399;
}

.status-open .indicator-dot {
    background-color: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    animation: status-pulse 2s infinite;
}

[data-theme="dark"] .status-open .indicator-dot {
    background-color: #34d399;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4);
}

.status-closed {
    background-color: rgba(239, 68, 68, 0.12);
    color: #ef4444;
}

[data-theme="dark"] .status-closed {
    background-color: rgba(239, 68, 68, 0.18);
    color: #f87171;
}

.status-closed .indicator-dot {
    background-color: #ef4444;
}

[data-theme="dark"] .status-closed .indicator-dot {
    background-color: #f87171;
}

@keyframes status-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.hours-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--link-color);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 0;
    margin-top: 4px;
    cursor: pointer;
    transition: color 0.2s;
    width: fit-content;
}

.hours-toggle-btn:hover {
    color: var(--link-hover-color);
}

.hours-toggle-btn .chevron-icon {
    transition: transform 0.3s ease;
}

.hours-toggle-btn[aria-expanded="true"] .chevron-icon {
    transform: rotate(180deg);
}

/* Modern auto-height collapse animation using CSS Grid template-rows */
.weekly-hours-list {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    width: 100%;
}

.weekly-hours-list:not(.collapsed) {
    grid-template-rows: 1fr;
    margin-top: 10px;
}

.weekly-hours-wrapper {
    min-height: 0;
    border-top: 1px solid var(--border-color);
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hours-day-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 6px 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.hours-day-row.is-today {
    background-color: rgba(56, 142, 60, 0.12);
    font-weight: 600;
    border-left: 3px solid #388e3c;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

[data-theme="dark"] .hours-day-row.is-today {
    background-color: rgba(129, 199, 132, 0.12);
    border-left-color: #81c784;
}

.hours-day-row.is-special {
    color: #e53935;
}

[data-theme="dark"] .hours-day-row.is-special {
    color: #ef5350;
}

.day-special-label {
    font-size: 0.75rem;
    font-style: italic;
    opacity: 0.85;
    margin-left: 4px;
}

.day-closed {
    opacity: 0.7;
}

.closed-badge {
    background-color: rgba(211, 47, 47, 0.15);
    color: #d32f2f;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

[data-theme="dark"] .closed-badge {
    background-color: rgba(239, 83, 80, 0.15);
    color: #ef5350;
}

/* Holiday Warning Alert Box */
.holiday-alert-box {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    background-color: rgba(245, 124, 0, 0.06);
    border: 1px solid rgba(245, 124, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 20px;
}

[data-theme="dark"] .holiday-alert-box {
    background-color: rgba(255, 183, 77, 0.06);
    border-color: rgba(255, 183, 77, 0.2);
}

.holiday-alert-icon {
    color: #f57c00;
    display: flex;
    align-items: flex-start;
    padding-top: 1px;
}

[data-theme="dark"] .holiday-alert-icon {
    color: #ffb74d;
}

.holiday-alert-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.holiday-alert-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #f57c00;
}

[data-theme="dark"] .holiday-alert-title {
    color: #ffb74d;
}

.holiday-alert-list {
    margin: 0;
    padding-left: 16px;
    font-size: 0.85rem;
    line-height: 1.45;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.holiday-date {
    font-weight: 600;
}

.holiday-label {
    font-style: italic;
}


.contact-btn:hover {
    opacity: 0.9;
}

.contact-btn:active {
    transform: scale(0.98);
}

/* Event Section Layout */
#nextEventDiv {
    flex: 2 1 600px;
    background-color: var(--grid-item-bg);
    overflow: hidden;
}

#upcomingEventsDiv {
    flex: 1 1 320px;
    background-color: var(--grid-item-bg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Next Event Card */
.next-event-banner {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.next-event-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.next-event-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #388e3c;
    color: white;
    padding: 6px 12px;
    font-weight: bold;
    font-size: 0.82rem;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

[data-theme="light"] .next-event-badge {
    background-color: #4CAF50;
}

.next-event-body {
    padding: 24px;
    display: flex;
    flex-flow: row wrap;
    gap: 24px;
}

.next-event-details {
    flex: 1 2 320px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.next-event-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
}

.next-event-time, .next-event-loc {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.9;
}

.next-event-time svg, .next-event-loc svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    fill: #388e3c;
}

[data-theme="light"] .next-event-time svg, [data-theme="light"] .next-event-loc svg {
    fill: #4CAF50;
}

.next-event-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 6px 0;
    color: var(--text-color);
    opacity: 0.85;
}

.next-event-map {
    flex: 1 1 250px;
    min-height: 250px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: #222;
}

.next-event-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* No Event State */
.no-event-card {
    padding: 40px 24px;
    text-align: center;
    color: var(--text-color);
    opacity: 0.7;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Upcoming Events List */
.upcoming-container {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.upcoming-title {
    margin: 0 0 16px 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
}

.upcoming-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 4px 0 0;
    margin: 0;
    list-style: none;
    max-height: 380px;
    box-sizing: border-box;
}

.upcoming-item {
    box-sizing: border-box;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.2s, background-color 0.2s, border-color 0.2s;
}

.upcoming-item:hover {
    transform: translateX(4px);
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(56, 142, 60, 0.4);
}

[data-theme="light"] .upcoming-item:hover {
    background-color: rgba(0, 0, 0, 0.02);
    border-color: rgba(76, 175, 80, 0.4);
}

.upcoming-item-name {
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--text-color);
}

.upcoming-item-time {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.upcoming-item-time svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    opacity: 0.8;
    flex-shrink: 0;
}

.upcoming-item-loc {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    flex-wrap: wrap;
}

.upcoming-item-loc svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    opacity: 0.8;
    flex-shrink: 0;
}

/* Responsive media queries for mobile viewports */
@media (max-width: 767px) {
    .header-logo a {
        white-space: nowrap;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background-color: var(--header-bg);
        border-bottom: 2px solid var(--border-color);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        padding: 10px 0;
        z-index: 999;
    }
    
    .nav-container.mobile-active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-list a, .nav-list .dropdown > span {
        display: block;
        padding: 12px 20px;
        width: 100%;
        box-sizing: border-box;
        text-align: left;
        border-radius: 0;
    }
    
    /* Make active border style fit mobile dropdown item */
    .nav-list .active > a {
        border-left: 4px solid var(--nav-active-bg);
        background-color: rgba(0, 0, 0, 0.1);
    }
    
    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        background-color: rgba(0, 0, 0, 0.15);
        border-radius: 0;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    
    .dropdown.mobile-open .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 10px 10px 10px 35px;
        text-align: left;
        font-size: 0.95rem;
    }

    /* Product Card responsiveness */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .thumbnail-img {
        max-width: 100%;
        min-width: 0;
        width: 100%;
        height: 220px;
        object-fit: cover;
    }
}

/* Contact Form Premium Styles */
.contact-form-container {
    max-width: 750px;
    margin: 2rem auto;
    padding: 0 1rem;
    box-sizing: border-box;
    width: 100%;
}

.contact-form-card {
    background-color: var(--grid-item-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #388e3c, #81c784);
    opacity: 0.8;
}

.contact-form-title {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
}

.contact-form-subtitle {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.5;
}

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

.form-row {
    display: flex;
    flex-flow: row wrap;
    gap: 1.25rem;
    margin-bottom: 0.5rem;
}

.form-row .form-group {
    flex: 1 1 calc(50% - 0.625rem);
    min-width: 250px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
    width: 100%;
    box-sizing: border-box;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.required-indicator {
    color: #d93025;
    margin-left: 2px;
}

.form-input, .form-textarea {
    font-family: inherit;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    background-color: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-color);
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-input:focus-visible, .form-textarea:focus-visible {
    outline: none;
    border-color: var(--link-color);
    box-shadow: 0 0 0 3px rgba(77, 166, 255, 0.2);
}

/* User Valid / Invalid states */
.form-input:user-invalid, .form-textarea:user-invalid,
.form-input.user-invalid-fallback, .form-textarea.user-invalid-fallback {
    border-color: #d93025;
    background-color: rgba(217, 48, 37, 0.04);
}

.form-input:user-valid:not(:placeholder-shown), .form-textarea:user-valid:not(:placeholder-shown),
.form-input.user-valid-fallback, .form-textarea.user-valid-fallback {
    border-color: #188038;
}

.error-feedback {
    color: #d93025;
    font-size: 0.85rem;
    margin-top: 0.35rem;
    min-height: 1rem;
    display: none;
    font-weight: 500;
}

/* Trigger displaying error feedback */
.form-input:user-invalid + .error-feedback,
.form-input.user-invalid-fallback + .error-feedback,
.form-textarea:user-invalid + .error-feedback,
.form-textarea.user-invalid-fallback + .error-feedback {
    display: block;
}

.field-hint {
    font-size: 0.8rem;
    opacity: 0.65;
    margin-top: 0.25rem;
}

.contact-requirements-header {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.requirement-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-color);
}

.requirement-hint {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.75;
}

/* Status alerts */
.status-container {
    margin-bottom: 1.5rem;
}

.status-alert {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    animation: alertFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.alert-success {
    background-color: rgba(24, 128, 56, 0.12);
    border: 1px solid #188038;
    color: #188038;
}

[data-theme="dark"] .alert-success {
    color: #81c784;
    border-color: #81c784;
    background-color: rgba(129, 199, 132, 0.08);
}

.alert-error {
    background-color: rgba(217, 48, 37, 0.12);
    border: 1px solid #d93025;
    color: #d93025;
}

[data-theme="dark"] .alert-error {
    color: #e57373;
    border-color: #e57373;
    background-color: rgba(229, 115, 115, 0.08);
}

.alert-icon {
    font-size: 1.15rem;
}

/* Actions and submit button styling */
.form-actions {
    margin-top: 1.5rem;
}

.submit-btn {
    width: 100%;
    background-color: var(--button-bg);
    color: var(--button-text);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity 0.2s ease, transform 0.1s ease, background-color 0.2s ease;
}

.submit-btn:hover {
    opacity: 0.92;
}

.submit-btn:active {
    transform: scale(0.98);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    border-top-color: var(--button-text);
    animation: btnSpin 0.7s linear infinite;
}

.submit-btn.loading .btn-spinner {
    display: inline-block;
}

.submit-btn.loading .btn-text {
    opacity: 0.7;
}

@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

@keyframes alertFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* About & History Page Styles */
.about-container, .history-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-header, .history-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

main h1, main h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    background: var(--about-header-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.about-header p, .history-header p {
    font-size: 1.1rem;
    opacity: 0.7;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    background-color: var(--grid-item-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

[data-theme="dark"] .about-section:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.4);
}

@media (min-width: 768px) {
    .about-section {
        grid-template-columns: 1.1fr 0.9fr;
    }
    
    .about-section.reverse {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.about-section-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.about-section-content h2 {
    text-align: left;
    margin: 0;
    font-size: 1.8rem;
    color: var(--text-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.about-section-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text-color);
    opacity: 0.9;
}

.about-section-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.about-section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-section:hover .about-section-image {
    transform: scale(1.03);
}

/* History Styles */
.history-card {
    background-color: var(--grid-item-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--box-shadow);
    line-height: 1.8;
}

.history-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    opacity: 0.95;
}

.history-card p:last-child {
    margin-bottom: 0;
}

/* Catering Page Styles */
.catering-page-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.catering-hero-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(56, 142, 60, 0.1) 0%, rgba(129, 199, 132, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.catering-main-title {
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
    font-weight: 800;
}

.catering-main-subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    opacity: 0.85;
    max-width: 800px;
    margin: 0 auto;
}

.catering-section-card {
    background-color: var(--grid-item-bg);
    margin-bottom: 3rem;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
}

.catering-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.catering-section-header h3 {
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
    font-weight: 700;
}

.header-divider {
    height: 4px;
    width: 60px;
    background: var(--nav-active-bg);
    margin: 0.5rem auto 0 auto;
    border-radius: 2px;
}

.catering-section-content.centered {
    text-align: center;
}

.catering-highlight-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--link-color);
    margin: 0 0 0.5rem 0;
}

.catering-info-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0 0 0.5rem 0;
}

.catering-note-text {
    font-size: 1.1rem;
    opacity: 0.8;
    font-style: italic;
    margin: 0;
}

.catering-price-badge {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.15);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 2rem;
}

[data-theme="dark"] .catering-price-badge {
    color: #81c784;
    background-color: rgba(129, 199, 132, 0.15);
}

.catering-smoking-banners {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.smoking-banner-item {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    padding: 1.25rem;
    border-radius: 8px;
}

[data-theme="light"] .smoking-banner-item {
    background-color: rgba(0, 0, 0, 0.03);
}

.smoking-banner-item h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.smoking-banner-item.accent-banner {
    border-color: var(--nav-active-bg);
    background: linear-gradient(90deg, rgba(56, 142, 60, 0.15) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.catering-occasions {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.catering-tagline {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--link-color);
    margin-bottom: 1.5rem;
}

.catering-alert-box {
    background-color: rgba(2, 136, 209, 0.15);
    border-left: 4px solid #0288d1;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.catering-alert-box p {
    margin: 0;
    font-size: 1.1rem;
}

.catering-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0 3rem 0;
}

.catering-menu-box {
    background-color: rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

[data-theme="light"] .catering-menu-box {
    background-color: rgba(0, 0, 0, 0.02);
}

.menu-box-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: var(--link-color);
}

.menu-box-subtitle {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 1.5rem;
}

.catering-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.catering-list li {
    font-size: 1.1rem;
    font-weight: 500;
}

.inline-list {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.inline-list li {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

[data-theme="light"] .inline-list li {
    background-color: rgba(0, 0, 0, 0.04);
}

.catering-cta-section {
    border-top: 1px solid var(--border-color);
    padding-top: 2.5rem;
    margin-top: 2rem;
}

.catering-cta-section h3 {
    font-size: 1.6rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.catering-cta-section p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin: 0 0 1.5rem 0;
}

.catering-cta-buttons {
    display: flex;
    justify-content: center;
}

.cta-btn {
    font-size: 1.1rem !important;
    padding: 12px 32px !important;
    font-weight: 600;
}

@media (max-width: 768px) {
    .catering-menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .catering-main-title {
        font-size: 2rem;
    }
    
    .catering-section-card {
        padding: 1.5rem;
    }
}

/* Homepage Promo Banner Styles */
.homepage-promo-banner-container {
    width: 100%;
    margin-bottom: 2rem;
}

.homepage-promo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #d32f2f 0%, #ff5252 50%, #f57c00 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.25);
    color: #ffffff;
    text-align: center;
    font-family: inherit;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .homepage-promo-banner {
    background: linear-gradient(135deg, #c62828 0%, #e53935 50%, #ef6c00 100%);
    box-shadow: 0 6px 15px rgba(229, 57, 53, 0.2);
}

.homepage-promo-banner .banner-icon {
    font-size: 1.4rem;
    display: inline-block;
    animation: banner-wiggle 2s infinite ease-in-out;
}

.homepage-promo-banner .banner-text {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.homepage-promo-banner.animate-pulse {
    animation: banner-pulse 3s infinite ease-in-out;
}

@keyframes banner-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(211, 47, 47, 0.25);
    }
    50% {
        transform: scale(1.01);
        box-shadow: 0 12px 28px rgba(211, 47, 47, 0.45);
    }
}

@keyframes banner-wiggle {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    50% { transform: rotate(-5deg); }
    60% { transform: rotate(5deg); }
    70% { transform: rotate(0deg); }
}

/* Price Update Notice styling */
.price-update-notice {
    font-size: 0.82rem;
    color: var(--text-color);
    opacity: 0.85;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(56, 142, 60, 0.08);
    border: 1px solid rgba(56, 142, 60, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
    line-height: 1;
}

[data-theme="light"] .price-update-notice {
    background-color: rgba(76, 175, 80, 0.08);
    border-color: rgba(76, 175, 80, 0.2);
}

.price-update-notice .update-icon {
    color: #4caf50;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] .price-update-notice .update-icon {
    color: #81c784;
}

/* Contact Form Additions: Checkbox, Honeypot and Captcha */
.form-group-hp {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 0.5rem;
}

.form-checkbox {
    accent-color: #388e3c;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 4px;
    border: 2px solid var(--border-color);
}

[data-theme="light"] .form-checkbox {
    accent-color: #4caf50;
}

.checkbox-label {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-color);
    cursor: pointer;
    user-select: none;
}

.checkbox-label .required-indicator {
    color: #d93025;
    margin-left: 2px;
}

/* Captcha Layout */
.captcha-container {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

[data-theme="light"] .captcha-container {
    background-color: rgba(0, 0, 0, 0.01);
}

.captcha-label {
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
}