/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background-color: #000000;
    color: #EEEEEE;
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-western {
    font-family: 'Rye', serif;
}

.accent {
    color: #D00000;
}

.italic {
    font-style: italic;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   FILM GRAIN OVERLAY
   ============================================ */
.film-grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 60;
    opacity: 0.06;
    mix-blend-mode: overlay;
    background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.5s ease;
    padding: 32px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.navbar.scrolled {
    background-color: #000000;
    padding: 16px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #D00000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: white;
    text-decoration: none;
    padding: 4px 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Rye', serif;
}

.logo:hover {
    border-color: #D00000;
}

.desktop-nav {
    display: none;
    gap: 48px;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        align-items: center;
    }
}

.desktop-nav a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #d1d5db;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: white;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #D00000;
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #D00000;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #000000;
    border-bottom: 1px solid #D00000;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    gap: 32px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-link {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: #D00000;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    animation: ken-burns 20s ease-out infinite alternate;
}

@keyframes ken-burns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9));
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 16px;
    max-width: 1152px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-bottom: 64px;
}

.hero-subtitle {
    color: #D00000;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeUp 1s ease-out forwards;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 14px;
    }
}

.hero-title {
    font-family: 'Rye', serif;
    font-size: 60px;
    color: white;
    margin-bottom: 32px;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    animation: fadeUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 96px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 144px;
    }
}

.hero-divider {
    height: 4px;
    width: 128px;
    background-color: #D00000;
    margin-bottom: 40px;
    box-shadow: 0 0 15px rgba(208, 0, 0, 0.8);
    animation: fadeUp 1s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-quote {
    color: #f3f4f6;
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    max-width: 768px;
    margin: 0 auto 48px;
    font-style: italic;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    animation: fadeUp 1s ease-out 0.4s forwards;
    opacity: 0;
}

@media (min-width: 768px) {
    .hero-quote {
        font-size: 30px;
    }
}

.hero-button {
    display: inline-block;
    background-color: rgba(208, 0, 0, 0.9);
    backdrop-filter: blur(4px);
    color: white;
    border: 1px solid #D00000;
    padding: 20px 48px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.5s ease;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    animation: fadeUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.hero-button:hover {
    background-color: rgba(0, 0, 0, 0.6);
    color: #D00000;
    box-shadow: 0 0 20px rgba(208, 0, 0, 0.2);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #D00000;
    cursor: pointer;
    z-index: 20;
    opacity: 0.8;
    transition: color 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    color: white;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 80px 0;
    background-color: #000000;
    color: white;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .about-section {
        padding: 128px 0;
    }
}

.about-bg-text {
    position: absolute;
    top: 80px;
    left: 0;
    font-size: 200px;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-label {
    color: #D00000;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 48px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 60px;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    text-align: left;
    margin-top: 32px;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text {
    font-size: 18px;
    color: #9ca3af;
    font-weight: 300;
    line-height: 1.75;
}

.about-text:first-child {
    border-left: 2px solid #D00000;
    padding-left: 24px;
}

.about-image-wrapper {
    margin-top: 80px;
    width: 100%;
    height: 384px;
    position: relative;
}

@media (min-width: 768px) {
    .about-image-wrapper {
        height: 500px;
    }
}

.about-image-border {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(208, 0, 0, 0.3);
    transform: translate(16px, 16px);
    z-index: 0;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 10;
    filter: grayscale(100%);
    transition: filter 0.7s ease;
}

.about-image:hover {
    filter: grayscale(0%);
}

.about-footer {
    margin-top: 48px;
}

.about-quote {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    color: white;
}

.about-quote-divider {
    width: 48px;
    height: 4px;
    background-color: #D00000;
    margin: 16px auto 0;
}

/* ============================================
   SOMMELIER SECTION
   ============================================ */
.sommelier-section {
    position: relative;
}

.sommelier-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 40;
    background-color: #D00000;
    color: white;
    padding: 16px;
    border-radius: 50%;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.sommelier-btn:hover {
    background-color: #b00000;
}

.sommelier-btn-text {
    display: none;
}

.sommelier-btn:hover .sommelier-btn-text {
    display: inline-block;
}

.sommelier-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.sommelier-modal.active {
    display: flex;
}

.sommelier-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.sommelier-content {
    background-color: #222222;
    border: 1px solid #374151;
    padding: 32px;
    border-radius: 8px;
    max-width: 512px;
    width: 100%;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.5);
}

.sommelier-close {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #9ca3af;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.sommelier-close:hover {
    color: white;
}

.sommelier-header {
    text-align: center;
    margin-bottom: 32px;
}

.sommelier-icon {
    width: 48px;
    height: 48px;
    color: #D00000;
    margin: 0 auto 16px;
}

.sommelier-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #EEEEEE;
    margin-bottom: 8px;
}

.sommelier-subtitle {
    color: #9ca3af;
    font-size: 14px;
    margin-top: 8px;
}

.sommelier-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sommelier-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
    margin-bottom: 8px;
}

.sommelier-input {
    width: 100%;
    background-color: #000000;
    border: 1px solid #374151;
    border-radius: 4px;
    padding: 12px;
    color: #EEEEEE;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.sommelier-input:focus {
    outline: none;
    border-color: #D00000;
}

.sommelier-input::placeholder {
    color: #4b5563;
}

.sommelier-submit {
    width: 100%;
    background-color: #D00000;
    color: white;
    padding: 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sommelier-submit:hover:not(:disabled) {
    background-color: #b00000;
}

.sommelier-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.sommelier-result {
    margin-top: 24px;
    padding: 16px;
    background-color: #000000;
    border-radius: 4px;
    border: 1px solid rgba(208, 0, 0, 0.3);
    display: none;
}

.sommelier-result.active {
    display: block;
}

.sommelier-result p {
    color: #EEEEEE;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.75;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background-color: black;
    color: white;
    padding-top: 96px;
    padding-bottom: 48px;
    border-top: 1px solid #222222;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    margin-bottom: 80px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact-intro h3 {
    font-family: 'Rye', serif;
    font-size: 48px;
    color: white;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .contact-intro h3 {
        font-size: 72px;
    }
}

.contact-text {
    color: #9ca3af;
    font-size: 18px;
    max-width: 448px;
    font-weight: 300;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .contact-details-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-detail-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    font-weight: bold;
    color: #D00000;
    margin-bottom: 16px;
}

.contact-detail-text {
    color: #d1d5db;
    font-weight: 300;
    line-height: 1.75;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-link {
    color: white;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #D00000;
}

.contact-hours {
    margin-top: 0;
}

.hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    max-width: 448px;
    color: #d1d5db;
    border-bottom: 1px solid #111111;
    padding-bottom: 8px;
}

.hours-day {
    font-weight: 500;
}

.hours-time {
    color: white;
}

.contact-map-wrapper {
    position: relative;
    height: 400px;
    width: 100%;
    border: 1px solid #111111;
    border-radius: 2px;
    overflow: hidden;
    z-index: 0;
}

.contact-map {
    height: 100%;
    width: 100%;
    z-index: 0;
    background-color: #111;
}

.map-link {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    border: 1px solid #D00000;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.map-link:hover {
    background-color: #D00000;
}

.contact-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid #111111;
}

@media (min-width: 768px) {
    .contact-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.copyright {
    color: #4b5563;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-button {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-pulse {
    position: absolute;
    display: inline-flex;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.2;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.whatsapp-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-button:hover .whatsapp-icon {
    background-color: #128C7E;
    transform: scale(1.05);
}

.whatsapp-label {
    position: absolute;
    right: calc(100% + 16px);
    top: 50%;
    transform: translateY(-50%);
    background-color: #000000;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transition: opacity 0.3s ease;
    border: 1px solid #222222;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-button:hover .whatsapp-label {
    opacity: 1;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #D00000;
    border-radius: 0;
    border: 2px solid #0a0a0a;
}

::-webkit-scrollbar-thumb:hover {
    background: #b00000;
}

/* ============================================
   LEAFLET OVERRIDE
   ============================================ */
.leaflet-container {
    background: #111 !important;
}

/* ============================================
   ADMIN PANEL
   ============================================ */
.footer-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-trigger {
    background: none;
    border: none;
    color: #4b5563;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.admin-trigger:hover {
    color: #D00000;
}

.admin-panel {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.admin-panel.active {
    display: flex;
}

.admin-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
}

.admin-content {
    background-color: #222222;
    width: 100%;
    max-width: 1024px;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(208, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.admin-header {
    padding: 16px;
    border-bottom: 1px solid #374151;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
}

.admin-title {
    font-family: 'Rye', serif;
    font-size: 24px;
    color: #D00000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-close {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.admin-close:hover {
    color: white;
}

.admin-login {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.admin-login-box {
    background-color: #000000;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #374151;
    text-align: center;
    max-width: 384px;
    width: 100%;
}

.admin-lock-icon {
    width: 48px;
    height: 48px;
    color: #D00000;
    margin: 0 auto 16px;
}

.admin-login-title {
    color: white;
    font-size: 18px;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.admin-login-input {
    width: 100%;
    background-color: #000000;
    border: 1px solid #374151;
    border-radius: 4px;
    padding: 12px;
    color: white;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.admin-login-input:focus {
    outline: none;
    border-color: #D00000;
}

.admin-login-btn {
    width: 100%;
    background-color: #D00000;
    color: white;
    padding: 8px;
    border-radius: 4px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.admin-login-btn:hover {
    background-color: #b00000;
}

.admin-main-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.admin-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

@media (min-width: 768px) {
    .admin-layout {
        flex-direction: row;
    }
}

.admin-sidebar {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .admin-sidebar {
        flex-direction: column;
        width: 25%;
        flex-wrap: nowrap;
    }
}

.admin-tab {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    background-color: #000000;
    color: #9ca3af;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .admin-tab {
        width: auto;
    }
}

.admin-tab:hover {
    color: white;
}

.admin-tab.active {
    background-color: #D00000;
    color: white;
}

.admin-form-area {
    background-color: #000000;
    padding: 24px;
    border-radius: 4px;
    border: 1px solid #1f2937;
    overflow-y: auto;
}

@media (min-width: 768px) {
    .admin-form-area {
        width: 75%;
    }
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

.admin-section-title {
    color: #D00000;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #374151;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.admin-subsection-title {
    color: #D00000;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid #1f2937;
    padding-bottom: 8px;
    margin-top: 24px;
    margin-bottom: 8px;
}

.admin-form-group {
    margin-bottom: 16px;
}

.admin-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .admin-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.admin-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 4px;
}

.admin-input,
.admin-textarea {
    width: 100%;
    background-color: #000000;
    border: 1px solid #374151;
    border-radius: 4px;
    padding: 8px;
    color: white;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.admin-input:focus,
.admin-textarea:focus {
    outline: none;
    border-color: #D00000;
}

.admin-textarea {
    resize: vertical;
    font-family: inherit;
}

.admin-image-section {
    margin-top: 24px;
    padding: 16px;
    border: 1px solid #374151;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.2);
}

.admin-image-title {
    color: #D00000;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-image-preview {
    margin-top: 8px;
    display: none;
}

.admin-image-preview.active {
    display: block;
}

.admin-image-preview img {
    width: 100%;
    height: 128px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #1f2937;
    position: relative;
}

.admin-image-preview span {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 2px;
}

.admin-hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}

.admin-hour-item {
    display: flex;
    gap: 8px;
    align-items: center;
}

.admin-hour-item input {
    flex: 1;
}

.admin-hour-delete {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.admin-hour-delete:hover {
    color: #dc2626;
}

.admin-add-hour-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D00000;
    font-size: 14px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.admin-add-hour-btn:hover {
    color: white;
}

.admin-footer {
    padding: 16px;
    border-top: 1px solid #374151;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
}

.admin-reset-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ef4444;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.admin-reset-btn:hover {
    color: #dc2626;
}

.admin-footer-right {
    display: flex;
    gap: 16px;
    margin-left: auto;
}

.admin-cancel-btn {
    padding: 8px 24px;
    color: white;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.admin-cancel-btn:hover {
    color: #9ca3af;
}

.admin-save-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #D00000;
    color: white;
    padding: 8px 32px;
    border-radius: 4px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(208, 0, 0, 0.2);
}

.admin-save-btn:hover {
    background-color: #b00000;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 767px) {
    .sommelier-btn {
        bottom: 100px;
    }
    
    .whatsapp-button {
        bottom: 32px;
    }
    
    .admin-content {
        max-height: 95vh;
    }
    
    .admin-sidebar {
        margin-bottom: 16px;
    }
}

