/* Modern Olive Oil E-Commerce Design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Olive Oil Inspired Color Palette */
    --primary: #8BA84C;
    --primary-dark: #6B7D3C;
    --primary-light: #A4C266;
    --secondary: #E8F0DC;
    --accent: #D4A574;
    --dark: #2C3E24;
    --gray-100: #F7F9F4;
    --gray-200: #E5EBD9;
    --gray-300: #C8D3B8;
    --gray-600: #6D7865;
    --gray-900: #1F2D19;

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(43, 62, 36, 0.08);
    --shadow-md: 0 4px 16px rgba(43, 62, 36, 0.12);
    --shadow-lg: 0 8px 32px rgba(43, 62, 36, 0.16);
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--gray-100);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
.header {
    background: #fff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Above overlay (999) */
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.nav-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.icon-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--gray-600);
    transition: all 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    background: var(--secondary);
    color: var(--primary);
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    padding: var(--spacing-xl) 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #E8F0DC 0%, #F7F9F4 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 168, 76, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-label {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(139, 168, 76, 0.1);
    color: var(--primary);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
}

.hero-title span {
    color: var(--primary);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.btn {
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-family: var(--font-body);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--gray-300);
    padding: 10px 24px;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.image-card {
    width: 400px;
    height: 500px;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-card::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.3;
}

.olive-illustration {
    width: 200px;
    height: 300px;
    background: radial-gradient(ellipse at center, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
}

.olive-illustration::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-dark);
    border-radius: 50% 50% 0 50%;
    transform: rotate(-45deg);
}

/* Sections */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gray-900);
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-top: var(--spacing-xs);
}

/* Categories */
.categories {
    background: #fff;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.category-card {
    background: var(--gray-100);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.category-card:hover {
    background: var(--secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.category-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: var(--spacing-xs);
}

.category-card p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
}

.category-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.category-link:hover {
    color: var(--primary-dark);
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* ÖNEMLİ: Ribbon'un taşan kısımlarını keser */
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: var(--primary);
    color: #fff;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.product-badge.sale {
    background: #E74C3C;
}

/* Ribbon Style - Diagonal Corner Band */
.product-badge.ribbon {
    top: 20px;
    left: -45px;
    width: 150px;
    padding: 7px 0;
    background: #E74C3C;
    text-align: center;
    transform: rotate(-45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border-radius: 0;
}

.product-image {
    height: 280px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-frame-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-frame-overlay img {
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: initial;
}

.product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info {
    padding: var(--spacing-md);
}

.product-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: var(--spacing-xs);
}

.product-desc {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-600);
}

.old-price {
    font-size: 1rem;
    color: var(--gray-600);
    text-decoration: line-through;
    margin-right: var(--spacing-xs);
}

.btn-add-cart {
    padding: 10px 20px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-cart:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Features */
.features {
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.feature {
    text-align: center;
    padding: var(--spacing-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.feature h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: var(--spacing-xs);
}

.feature p {
    color: var(--gray-600);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: #fff;
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
    font-family: var(--font-display);
    margin-bottom: var(--spacing-md);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-sidebar.active {
    opacity: 1;
    pointer-events: all;
}

.cart-sidebar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.cart-sidebar-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 450px;
    background: #fff;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cart-sidebar.active .cart-sidebar-content {
    transform: translateX(0);
}

.cart-header {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gray-900);
    margin: 0;
}

.cart-close-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--gray-600);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close-btn:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-lg);
}

.cart-loading {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--gray-600);
}

.cart-empty {
    text-align: center;
    padding: var(--spacing-xl);
}

.cart-empty-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.3;
}

.cart-empty h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.cart-empty p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.cart-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.cart-item:hover {
    background: var(--secondary);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.cart-item-name {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.9375rem;
}

.cart-item-variant {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.cart-item-price {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.125rem;
}

.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 4px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    border-radius: 4px;
    cursor: pointer;
    color: var(--gray-600);
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--secondary);
    color: var(--primary);
}

.qty-value {
    min-width: 32px;
    text-align: center;
    font-weight: 600;
    color: var(--gray-900);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--gray-600);
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s;
    font-size: 0.875rem;
}

.cart-item-remove:hover {
    color: #e74c3c;
}

.cart-footer {
    border-top: 1px solid var(--gray-200);
    padding: var(--spacing-lg);
}

.cart-summary {
    margin-bottom: var(--spacing-lg);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
    font-size: 0.9375rem;
}

.summary-row.total {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--gray-200);
    margin-top: var(--spacing-sm);
}

.summary-row.total span:last-child {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.btn-checkout {
    width: 100%;
    margin-bottom: var(--spacing-sm);
}

/* ============================================
   RESPONSIVE DESIGN - Mobile First Approach
   ============================================ */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--gray-600);
    transition: all 0.3s;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}

.mobile-menu-toggle:hover {
    background: var(--secondary);
    color: var(--primary);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

/* Touch-Friendly Elements */
@media (hover: none) and (pointer: coarse) {

    .btn,
    .icon-btn,
    .btn-add-cart,
    .btn-primary,
    .btn-secondary {
        min-height: 44px;
        min-width: 44px;
    }
}

/* ============================================
   SMALL MOBILE - Up to 480px
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* ============================================
   MOBILE - Up to 768px
   ============================================ */
@media (max-width: 768px) {

    /* Navigation */
    .nav {
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        /* Higher than overlay (999) */
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        display: block;
        padding: var(--spacing-md);
        border-radius: var(--radius-sm);
        transition: all 0.3s;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: var(--secondary);
    }

    .nav-links a.active::after {
        display: none;
    }

    .nav-actions {
        order: 2;
    }

    .logo {
        order: 1;
        font-size: 1.25rem;
    }

    /* Hero Section */
    .hero {
        min-height: 60vh;
        padding: var(--spacing-lg) 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-stats {
        gap: var(--spacing-lg);
        flex-wrap: wrap;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .hero-image {
        order: -1;
    }

    .image-card {
        width: 300px;
        height: 400px;
    }

    /* Products */
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: var(--spacing-md);
    }

    .product-card {
        border-radius: var(--radius-md);
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: var(--spacing-sm);
    }

    .product-info h3 {
        font-size: 1.05rem;
    }

    .price {
        font-size: 1.25rem;
    }

    /* Categories */
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--spacing-md);
    }

    /* Features */
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    /* Cart Sidebar */
    .cart-sidebar-content {
        max-width: 100%;
    }

    /* Forms */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        /* Prevent iOS zoom */
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   TABLET - 768px to 1024px
   ============================================ */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   DESKTOP - 1024px and up
   ============================================ */
@media (min-width: 1025px) {
    .mobile-menu-toggle {
        display: none;
    }

    .mobile-nav-overlay {
        display: none;
    }

    /* Ensure desktop navigation is visible */
    .nav-links {
        display: flex;
    }
}

/* ============================================
   LANDSCAPE MODE OPTIMIZATIONS
   ============================================ */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: var(--spacing-md) 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .nav-links {
        max-height: calc(100vh - 60px);
    }
}