/* Explain: Editorial hospitality components for Verde Table */
.btn-verde {
    min-height: 3rem;
    border: 1px solid rgba(18, 55, 42, 0.9);
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--cream-color);
    box-shadow: 0 16px 34px rgba(18, 55, 42, 0.22);
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.btn-verde:hover {
    background: var(--primary-hover);
    box-shadow: 0 20px 42px rgba(18, 55, 42, 0.28);
    transform: translateY(-2px);
}

.btn-outline-verde {
    min-height: 3rem;
    border: 1px solid rgba(28, 27, 24, 0.35);
    border-radius: 999px;
    color: var(--text-color);
    background: rgba(255, 248, 234, 0.42);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.btn-outline-verde:hover {
    border-color: var(--primary-color);
    background: rgba(255, 248, 234, 0.84);
    transform: translateY(-2px);
}

.editorial-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    background: rgba(255, 248, 234, 0.72);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
}

.menu-card {
    position: relative;
    border: 1px solid rgba(18, 55, 42, 0.22);
    border-radius: 1.5rem;
    background: linear-gradient(145deg, rgba(255, 248, 234, 0.96), rgba(243, 232, 208, 0.82));
    box-shadow: 0 18px 44px rgba(18, 55, 42, 0.11);
}

.menu-card::after {
    position: absolute;
    inset: 0.7rem;
    border: 1px dashed rgba(201, 76, 61, 0.24);
    border-radius: 1.08rem;
    content: '';
    pointer-events: none;
}

.producer-card {
    border: 1px solid rgba(18, 55, 42, 0.16);
    border-radius: 1.75rem;
    background: var(--cream-color);
    box-shadow: 0 14px 34px rgba(28, 27, 24, 0.1);
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.producer-card:hover {
    box-shadow: 0 22px 52px rgba(18, 55, 42, 0.16);
    transform: translateY(-5px) rotate(-0.4deg);
}

.hand-drawn-ring {
    position: relative;
}

.hand-drawn-ring::before {
    position: absolute;
    inset: -0.7rem;
    z-index: -1;
    border: 2px solid rgba(155, 174, 140, 0.65);
    border-radius: 55% 45% 48% 52% / 52% 48% 54% 46%;
    content: '';
    transform: rotate(-3deg);
}

.modal-box.reservation-box {
    max-width: 44rem;
    border: 1px solid rgba(243, 232, 208, 0.28);
    border-radius: 1.75rem;
    background: var(--cream-color);
    color: var(--text-color);
}

.input-verde {
    border: 1px solid rgba(28, 27, 24, 0.2);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.62);
    color: var(--text-color);
}

.input-verde:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(155, 174, 140, 0.24);
    outline: none;
}
