/**
 * KOVAL Distillery - Main Stylesheet
 * Clean, minimal CSS without UIkit dependency
 */

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    /* Core colors */
    --koval-black: #0f0f0f;
    --koval-gray: #2d2e33;
    --koval-text: #6c6d74;
    --koval-muted: #999999;
    --koval-light: #f7f7f7;
    --koval-border: #e5e5e5;
    --koval-teal: #154d5b;
    --koval-gold: #d4a574;

    /* Promo colors */
    --koval-promo-bg: #fff8e0;
    --koval-promo-border: #f3d27a;

    /* Status colors */
    --koval-success: #d4edda;
    --koval-error: #f8d7da;

    /* Typography */
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'PT Serif', Georgia, serif;

    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 24px;
    --text-2xl: 32px;
    --text-3xl: 42px;
    --text-4xl: 56px;

    --leading-tight: 1.2;
    --leading-normal: 1.6;
    --leading-relaxed: 1.8;

    /* Spacing (8px grid) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'PT Serif', Georgia, serif;
    font-size: 16px;
    line-height: 26px;
    color: var(--koval-text);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    /* Sticky footer */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--koval-teal);
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 30px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.3;
    color: var(--koval-gray);
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

/* List with dividers (like uk-list-divider) */
.list-divider > li {
    padding: 10px 0;
    border-bottom: 1px solid var(--koval-border);
}

.list-divider > li:first-child {
    padding-top: 0;
}

.list-divider > li:last-child {
    border-bottom: none;
}

/* Partner cards - 2 column grid */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
}

.partner-card {
    text-align: center;
}

.partner-card img {
    max-width: 150px;
    max-height: 150px;
    margin-bottom: 15px;
}

.partner-card strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    margin-bottom: 10px;
}

.partner-card p {
    margin: 0;
    font-size: 14px;
    color: var(--koval-muted);
}

/* Recipe cards */
.recipe-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.recipe-card {
    max-width: 350px;
    text-align: center;
}

.recipe-card img {
    width: 350px;
    height: auto;
    margin-bottom: 15px;
}

.recipe-card strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--koval-gray);
}

.recipe-card p {
    margin-bottom: 10px;
    font-size: 14px;
}

.recipe-card em {
    display: block;
    margin-top: 15px;
    font-size: 13px;
    color: var(--koval-muted);
}

/* Utility classes */
.text-center {
    text-align: center;
}

/* Contact page - inquiry cards */
.contact-info-center {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info-center p {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    color: var(--koval-gray);
    text-decoration: none;
    display: inline-block;
}

.social-icons img {
    width: 20px;
    height: 20px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.social-icons a:hover img {
    opacity: 1;
}

.inquiry-heading {
    text-align: center;
    font-size: 16px;
    margin-bottom: 25px;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .inquiry-grid {
        grid-template-columns: 1fr;
    }
}

.inquiry-card-wrapper {
    display: contents;
}

.inquiry-card {
    display: block;
    border: 1px solid #e5e5e5;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.inquiry-card:hover,
.inquiry-card.active {
    border-color: var(--koval-gray);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.inquiry-card strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--koval-gray);
}

.inquiry-card p {
    margin: 0;
    font-size: 14px;
    color: var(--koval-muted);
}

.inquiry-form {
    display: none;
    grid-column: 1 / -1;
    padding: 30px;
    border: 1px solid #e5e5e5;
    border-top: none;
    margin-top: -20px;
    margin-bottom: 20px;
}

.inquiry-form.active {
    display: block;
}

/* Contact form */
.contact-form-section {
    max-width: 600px;
    margin: 40px auto 0;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    flex: 1;
}

.contact-form .form-group.full-width {
    flex: 1 1 100%;
}

.contact-form label {
    display: block;
    font-size: 12px;
    color: var(--koval-muted);
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    font-family: inherit;
    font-size: 14px;
    background: transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--koval-gray);
}

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

.contact-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.contact-form .checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.contact-form .checkbox-label span {
    font-size: 14px;
}

.contact-form .checkbox-label small {
    color: var(--koval-muted);
}

.contact-form .btn {
    background: var(--koval-gray);
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form .btn:hover {
    background: #333;
}

p {
    margin: 0 0 1.25em 0;
}

/* ==========================================================================
   Layout - Container
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 640px) {
    .container {
        padding: 0;
    }
}

@media (min-width: 960px) {
    .container {
        padding: 0;
    }
}

.container-small {
    max-width: 900px;
}

/* ==========================================================================
   Layout - Section
   ========================================================================== */
.section {
    display: flow-root;
    box-sizing: border-box;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.section-alt {
    background: var(--koval-light);
}

/* ==========================================================================
   Layout - Grid (Flexbox)
   ========================================================================== */
.grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
}

.grid > * {
    padding-left: 30px;
    width: 100%;
}

.grid img {
    max-width: 100%;
    height: auto;
}

.grid-large {
    margin-left: -40px;
}

.grid-large > * {
    padding-left: 40px;
}

/* Column widths */
.col-1-2 { width: 50%; }
.col-1-3 { width: 33.333%; }
.col-2-3 { width: 66.666%; }
.col-1-4 { width: 25%; }
.col-3-4 { width: 75%; }

/* Responsive - stack on mobile */
@media (max-width: 959px) {
    .col-1-2, .col-1-3, .col-2-3, .col-1-4, .col-3-4 {
        width: 100%;
    }
    .grid > * + * {
        margin-top: 30px;
    }
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header.sticky {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.navbar {
    display: flex;
    align-items: center;
    min-height: 80px;
}

.logo img {
    height: 27px;
    width: auto;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
    display: flex;
    align-items: center;
    margin-left: 270px;
    gap: 20px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--koval-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 0;
    display: block;
    white-space: nowrap;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--koval-teal);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1001;
}

.nav-item:hover .dropdown,
.dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--koval-gray);
    padding: 6px 15px;
    display: block;
    white-space: nowrap;
    transition: background 0.15s ease;
}

.dropdown-link:hover {
    color: var(--koval-teal);
    background: rgba(21, 77, 91, 0.05);
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.breadcrumbs {
    padding: 16px 0;
    border-bottom: 1px solid var(--koval-border);
    background: var(--koval-light);
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumbs-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs-separator {
    color: var(--koval-muted);
}

.breadcrumbs-item a {
    color: var(--koval-text);
    transition: color 0.2s ease;
}

.breadcrumbs-item a:hover {
    color: var(--koval-teal);
}

.breadcrumbs-current {
    color: var(--koval-gray);
    font-weight: 500;
}

@media (max-width: 640px) {
    .breadcrumbs {
        padding: 10px 0;
    }

    .breadcrumbs-list {
        font-size: 9px;
        gap: 4px;
        letter-spacing: 0.5px;
    }

    .breadcrumbs-item {
        gap: 4px;
    }
}

/* ==========================================================================
   Mobile Header
   ========================================================================== */
.header-mobile {
    display: none;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mobile-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.mobile-logo img {
    height: 24px;
}

.mobile-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.mobile-toggle-inner {
    width: 24px;
    height: 18px;
    position: relative;
}

.mobile-toggle-inner span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--koval-gray);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-toggle-inner span:nth-child(1) { top: 0; }
.mobile-toggle-inner span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-toggle-inner span:nth-child(3) { bottom: 0; }

/* Mobile menu open state - hamburger to X animation */
.mobile-toggle.open .mobile-toggle-inner span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.mobile-toggle.open .mobile-toggle-inner span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.open .mobile-toggle-inner span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

/* Mobile Menu (Offcanvas) */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 1002;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 60px 20px 20px;
}

.mobile-menu.open {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--koval-gray);
    padding: 12px 0;
    display: block;
    border-bottom: 1px solid var(--koval-border);
}

.mobile-nav-link:hover {
    color: var(--koval-teal);
}

.mobile-nav-child {
    padding-left: 20px;
    font-size: 12px;
}

/* Cart icon in navbar */
.cart-icon {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.cart-icon svg {
    color: var(--koval-gray);
    transition: color 0.2s;
}

.cart-icon:hover svg {
    color: var(--koval-teal);
}

@media (max-width: 959px) {
    .header {
        display: none;
    }
    .header-mobile {
        display: block;
    }
    .nav {
        margin-left: 0;
    }
}

/* ==========================================================================
   Typography
   ========================================================================== */

/* Page titles */
.page-title {
    font-family: var(--font-sans);
    font-size: var(--text-3xl);
    font-weight: 400;
    line-height: var(--leading-tight);
    color: var(--koval-gray);
    margin-bottom: var(--space-xl);
}

/* Product title for standard layout */
.product-title {
    font-family: var(--font-sans);
    font-size: var(--text-3xl);
    font-weight: 400;
    line-height: var(--leading-tight);
    color: var(--koval-gray);
    margin-bottom: var(--space-sm);
}

/* Product proof display */
.product-proof {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--koval-muted);
    margin-bottom: var(--space-md);
}

@media (max-width: 959px) {
    .page-title,
    .product-title {
        font-size: var(--text-2xl);
    }
}

/* Page descriptions */
.page-description {
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    max-width: 600px;
}

/* Main content area */
.page-content {
    font-size: 16px;
    line-height: 26px;
}

.page-content h2 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 1em;
    text-align: center;
}

.page-content h3 {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-content strong {
    color: var(--koval-gray);
}

.page-content a {
    color: var(--koval-teal);
    text-decoration: underline;
}

.page-content a:hover {
    color: var(--koval-gray);
}

.page-content ul, .page-content ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
    list-style: disc;
}

.page-content ol {
    list-style: decimal;
}

.page-content li {
    margin-bottom: 0.5em;
}

.page-content blockquote {
    border-left: 3px solid var(--koval-teal);
    padding-left: 1.5em;
    margin: 2em 0;
    font-style: italic;
}

/* Menu tables */
.page-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 1.5em;
}

.page-content th,
.page-content td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--koval-border);
}

.page-content th {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--koval-muted);
    background: var(--koval-light);
}

.page-content td:last-child {
    text-align: right;
    white-space: nowrap;
    font-weight: 500;
}

.page-content tr:hover {
    background: rgba(0, 0, 0, 0.02);
}

@media (max-width: 640px) {
    .page-content table {
        font-size: 13px;
    }

    .page-content th,
    .page-content td {
        padding: 8px 6px;
    }
}

/* Section title */
.section-title {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--koval-gray);
    margin-bottom: var(--space-md);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--koval-border);
}

/* ==========================================================================
   Media Row (image + text side by side)
   ========================================================================== */
.media-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.media-row img {
    flex-shrink: 0;
    max-width: 280px;
    height: auto;
}

.media-row p {
    margin: 0;
}

.media-row:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .media-row {
        flex-direction: column;
        gap: 20px;
    }
    .media-row img {
        max-width: 100%;
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 15px 30px;
    display: inline-block;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--koval-teal);
    color: #fff;
}

.btn-primary:hover {
    background: var(--koval-gray);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--koval-gray);
    border: 1px solid var(--koval-border);
}

.btn-secondary:hover {
    border-color: var(--koval-teal);
    color: var(--koval-teal);
}

/* Link with underline */
.link-underline {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--koval-teal);
    border-bottom: 1px solid var(--koval-teal);
    padding-bottom: 2px;
}

.link-underline:hover {
    color: var(--koval-gray);
    border-bottom-color: var(--koval-gray);
}

/* ==========================================================================
   Catalog Grid
   ========================================================================== */
.product-grid-catalog {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 2em;
}

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

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

.product-grid-catalog .product-card {
    text-align: center;
}

.product-grid-catalog .product-card img {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.product-grid-catalog .product-card h4 {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}

.product-grid-catalog .product-card h4 a {
    color: var(--koval-gray);
}

.product-grid-catalog .product-card h4 a:hover {
    color: var(--koval-teal);
}

/* ==========================================================================
   Product Cards
   ========================================================================== */
.product-card {
    background: #fff;
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card-image {
    display: block;
    overflow: hidden;
    background: #fff;
    padding: 20px;
    text-align: center;
}

.product-card-image img {
    max-height: 300px;
    width: auto;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 20px 0;
}

.product-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-card-title a {
    color: var(--koval-gray);
}

.product-card-title a:hover {
    color: var(--koval-teal);
}

.product-card-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--koval-teal);
    border-bottom: 1px solid var(--koval-teal);
    padding-bottom: 2px;
}

.product-card-link:hover {
    color: var(--koval-gray);
    border-bottom-color: var(--koval-gray);
}

/* ==========================================================================
   Product Detail
   ========================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.product-title-col {
    text-align: left;
}

.product-title-large {
    font-family: var(--font-sans);
    font-size: var(--text-3xl);
    font-weight: 300;
    line-height: var(--leading-tight);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--koval-gray);
    margin: 0;
}

.product-image-col {
    display: flex;
    justify-content: center;
}

.product-image-col .product-image {
    max-width: 100%;
    height: auto;
}

.product-content-col {
    padding-left: 20px;
}

@media (max-width: 959px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-title-col {
        text-align: center;
    }

    .product-title-large {
        font-size: var(--text-2xl);
    }

    .product-content-col {
        padding-left: 0;
    }
}

.product-image {
    position: sticky;
    top: 100px;
    max-height: 600px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

@media (max-width: 959px) {
    .product-image {
        position: static;
        margin-bottom: 30px;
    }
}

.product-proof {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--koval-teal);
    margin-bottom: 30px;
}

/* Awards */
.awards-list {
    list-style: none;
}

.award-item {
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.award-item:last-child {
    border-bottom: none;
}

/* Press */
.press-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.press-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--koval-muted);
}

/* ==========================================================================
   Error Page (404)
   ========================================================================== */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-code {
    font-family: 'Montserrat', sans-serif;
    font-size: 120px;
    font-weight: 700;
    color: #e5e5e5;
    line-height: 1;
    margin: 0;
}

.error-title {
    font-size: 32px;
    margin: 20px 0;
}

.error-message {
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .error-code {
        font-size: 80px;
    }
    .error-title {
        font-size: 24px;
    }
    .error-actions {
        flex-direction: column;
    }
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--koval-gray);
    display: block;
    margin-bottom: 8px;
}

.form-label .required {
    color: var(--koval-teal);
}

.form-input {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 16px;
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid var(--koval-border);
    border-radius: 0;
    background: transparent;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    border-bottom-color: var(--koval-gray);
    outline: none;
}

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

.form-submit {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--koval-teal);
    color: #fff;
    border: none;
    padding: 15px 40px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.form-submit:hover {
    background: var(--koval-gray);
}

.form-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-message {
    padding: 15px 20px;
    margin-top: 20px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ==========================================================================
   Footer - 4 Column Layout
   ========================================================================== */
.footer {
    background: var(--koval-light);
    border-top: 1px solid var(--koval-border);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-col {
    min-width: 0;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--koval-gray);
    margin: 0 0 var(--space-sm);
}

.footer-text {
    font-size: var(--text-sm);
    color: var(--koval-text);
    margin: 0 0 var(--space-sm);
    line-height: var(--leading-normal);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    font-size: var(--text-sm);
    color: var(--koval-text);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--koval-teal);
}

.footer-address {
    font-size: var(--text-sm);
    color: var(--koval-muted);
    margin-top: var(--space-sm);
    line-height: var(--leading-normal);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.footer-contact a {
    font-size: var(--text-sm);
    color: var(--koval-text);
}

.footer-contact a:hover {
    color: var(--koval-teal);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    color: var(--koval-muted);
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: var(--koval-teal);
}

/* Footer Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--koval-border);
}

.footer-copyright {
    font-size: var(--text-xs);
    color: var(--koval-muted);
}

.footer-legal {
    display: flex;
    gap: var(--space-md);
}

.footer-legal a {
    font-size: var(--text-xs);
    color: var(--koval-muted);
}

.footer-legal a:hover {
    color: var(--koval-teal);
}

/* Footer Button */
.btn-sm {
    padding: 10px 20px;
    font-size: var(--text-xs);
}

.btn-outline-light {
    background: transparent;
    color: var(--koval-gray);
    border: 1px solid var(--koval-gray);
    font-family: var(--font-sans);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-outline-light:hover {
    background: var(--koval-gray);
    color: #fff;
}

/* Footer Responsive */
@media (max-width: 959px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* ==========================================================================
   Awards Page - Color Coding
   ========================================================================== */
.page-content li strong {
    font-weight: 600;
}

/* Award color coding - applied via JS */
.award-gold {
    color: #D4AF37;
    font-weight: 700;
}

.award-double-gold {
    color: #FFD700;
    font-weight: 700;
}

.award-silver {
    color: #A8A8A8;
    font-weight: 700;
}

.award-bronze {
    color: #CD7F32;
    font-weight: 700;
}

.award-best {
    color: var(--koval-teal);
    font-weight: 700;
}

.award-liquid-gold {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.text-muted { color: var(--koval-muted); }

/* Spacing utilities (8px grid) */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }
.mt-6 { margin-top: var(--space-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }
.mb-6 { margin-bottom: var(--space-2xl); }

.py-1 { padding-top: var(--space-xs); padding-bottom: var(--space-xs); }
.py-2 { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-3 { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-4 { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-5 { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }

.px-1 { padding-left: var(--space-xs); padding-right: var(--space-xs); }
.px-2 { padding-left: var(--space-sm); padding-right: var(--space-sm); }
.px-3 { padding-left: var(--space-md); padding-right: var(--space-md); }
.px-4 { padding-left: var(--space-lg); padding-right: var(--space-lg); }

.gap-1 { gap: var(--space-xs); }
.gap-2 { gap: var(--space-sm); }
.gap-3 { gap: var(--space-md); }
.gap-4 { gap: var(--space-lg); }

.border-rounded { border-radius: var(--radius-sm); }

/* Hide on mobile */
@media (max-width: 959px) {
    .hide-mobile { display: none; }
}

/* Hide on desktop */
@media (min-width: 960px) {
    .hide-desktop { display: none; }
}

/* ==========================================================================
   Find KOVAL page
   ========================================================================== */
.ship-to-me-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.ship-to-me-image img {
    display: block;
    width: 300px;
    height: 300px;
    object-fit: contain;
    background: #fff;
}


.image-cards-row {
    display: flex;
    gap: 16px;
}

.image-cards-row .card-link {
    flex: 1;
}

@media (max-width: 960px) {
    .image-cards-row {
        flex-direction: column;
        max-width: 616px;
        margin: 0 auto;
    }
}

.image-card {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3 / 2;
}

@media (max-width: 768px) {
    .image-cards-row {
        flex-direction: column;
    }

    .image-cards-row .card-link {
        width: 100%;
    }
}

.image-card-content {
    text-align: center;
    color: #fff;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-sm);
}

.image-card-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
    color: #fff;
}

.image-card-content p {
    font-size: 12px;
    letter-spacing: 1px;
    margin: 0;
    opacity: 0.9;
}

.card-link {
    text-decoration: none;
    display: block;
}

.card-link:hover .image-card-content {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 1);
}

/* ==========================================================================
   Ship To Me Card
   ========================================================================== */
.ship-to-me-card {
    width: 300px;
    height: 300px;
    color: var(--koval-gray);
    background: #fff;
    border: 1px solid var(--koval-border);
    border-radius: var(--radius-lg);
    padding: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ship-to-me-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ship-to-me-card p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.4;
}

.ship-to-me-promo {
    font-size: 13px;
    background: var(--koval-promo-bg);
    border: 1px solid var(--koval-promo-border);
    border-radius: var(--radius-md);
    padding: 8px;
    margin: 8px 0;
}

.ship-to-me-promo .save {
    color: var(--koval-muted);
}

.ship-to-me-pricing {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.6;
}

.ship-to-me-btn {
    display: inline-block;
    background: var(--koval-gray);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 14px;
    margin: 10px 0 4px;
}

.ship-to-me-disclaimer {
    font-size: 12px;
    color: var(--koval-muted);
    margin-top: 8px;
}

/* ==========================================================================
   Hours Widget
   ========================================================================== */
.hours-widget {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.hours-widget-item {
    text-align: center;
}

.hours-widget-item strong {
    display: block;
    margin-bottom: 5px;
}

.hours-widget-item + .hours-widget-item {
    margin-top: 0;
}

@media (max-width: 640px) {
    .hours-widget {
        gap: 20px;
    }
}

/* ==========================================================================
   Product Image (for limited editions, etc.)
   ========================================================================== */
.product-img-centered {
    max-height: 400px;
    margin: 20px auto;
    display: block;
}

/* ==========================================================================
   Utility: Warning/Error text
   ========================================================================== */
.text-warning {
    color: #856404;
}

.text-error {
    color: #721c24;
}

/* ==========================================================================
   Recipe Pages (Cocktails)
   ========================================================================== */

/* Hero Section */
.recipe-hero {
    padding-top: 40px;
    padding-bottom: 60px;
    overflow: hidden;
}

/* Header Block */
.recipe-header {
    margin-bottom: 40px;
}

/* Title */
.recipe-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--koval-dark);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.recipe-image-col {
    position: sticky;
    top: 100px;
    align-self: start;
}

.recipe-image-wrapper {
    background: #fff;
    overflow: hidden;
    margin-top: 20em;
}

@media (max-width: 768px) {
    .recipe-image-wrapper {
        margin-top: 0;
    }
}

.recipe-hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.recipe-image-placeholder {
    background: linear-gradient(135deg, var(--koval-teal) 0%, #1a6373 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
}

.recipe-content-col {
    padding-left: 20px;
}

/* Badges */
.recipe-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.recipe-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--koval-gray);
    background: var(--koval-light);
    padding: 8px 14px;
    border-radius: 4px;
}

.recipe-badge svg {
    color: var(--koval-teal);
}

.recipe-badge-easy {
    background: #e8f5e9;
    color: #2e7d32;
}

.recipe-badge-medium {
    background: #fff3e0;
    color: #ef6c00;
}

.recipe-badge-hard {
    background: #ffebee;
    color: #c62828;
}

/* Spirit Tags */
.recipe-spirits {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.recipe-spirits-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--koval-gray);
}

.spirit-tag {
    display: inline-block;
    background: var(--koval-teal);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 3px;
}

.spirit-tag-link {
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.spirit-tag-link:hover {
    background: var(--koval-dark);
    transform: translateY(-1px);
}

.spirit-buy-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--koval-teal);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.spirit-buy-link:hover {
    color: var(--koval-dark);
}

/* Intro */
.recipe-intro {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--koval-gray);
    margin-bottom: 30px;
}

/* Ingredients Card */
.recipe-card {
    background: var(--koval-light);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.recipe-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--koval-dark);
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recipe-card-title svg {
    color: var(--koval-teal);
}

.recipe-ingredients-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recipe-ingredients-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'PT Serif', Georgia, serif;
    font-size: 16px;
    color: var(--koval-gray);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.recipe-ingredients-list li:last-child {
    border-bottom: none;
}

.ingredient-check {
    width: 18px;
    height: 18px;
    border: 2px solid var(--koval-teal);
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Instructions Section */
.recipe-instructions-section {
    padding-top: 50px;
    padding-bottom: 60px;
}

.recipe-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--koval-dark);
    margin: 0 0 40px 0;
    text-align: center;
}

.recipe-steps {
    max-width: 700px;
    margin: 0 auto;
}

.recipe-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.recipe-step-number {
    width: 44px;
    height: 44px;
    background: var(--koval-teal);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.recipe-step-text {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--koval-gray);
    padding-top: 10px;
}

/* Tips Section */
.recipe-tips-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.recipe-tips-box {
    max-width: 700px;
    margin: 0 auto;
}

.recipe-tips-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--koval-dark);
    margin: 0 0 30px 0;
}

.recipe-tips-title svg {
    color: var(--koval-teal);
}

.recipe-tips-list {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 2;
    column-gap: 40px;
}

.recipe-tips-list li {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--koval-gray);
    padding: 12px 0;
    border-bottom: 1px solid var(--koval-border);
    break-inside: avoid;
}

.recipe-tips-list li:last-child {
    border-bottom: none;
}

@media (max-width: 700px) {
    .recipe-tips-list {
        columns: 1;
    }
}

/* Why KOVAL Section */
.recipe-why-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.recipe-why-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.recipe-why-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--koval-dark);
    margin: 0 0 20px 0;
}

.recipe-why-text {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--koval-gray);
    margin-bottom: 30px;
}

/* Related Recipes */
.recipe-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.recipe-related-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recipe-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.recipe-related-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--koval-light);
}

.recipe-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recipe-related-card:hover .recipe-related-image img {
    transform: scale(1.05);
}

.recipe-related-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--koval-teal) 0%, #1a6373 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
}

.recipe-related-content {
    padding: 20px;
}

.recipe-related-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--koval-dark);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.recipe-related-spirit {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--koval-teal);
}

/* Mobile Responsive */
@media (max-width: 959px) {
    .recipe-hero {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .recipe-hero .grid-large {
        margin-left: 0;
    }

    .recipe-hero .grid-large > * {
        padding-left: 0;
    }

    .recipe-header {
        margin-bottom: 25px;
    }

    .recipe-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .recipe-image-col {
        position: static;
        margin-bottom: 25px;
    }

    .recipe-content-col {
        padding-left: 0;
    }

    .recipe-intro {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .recipe-related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .recipe-step {
        gap: 15px;
    }

    .recipe-step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}
