* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #1a4d3e 0%, #0d3328 100%);
    color: #1a1e24;
    line-height: 1.5;
    min-height: 100vh;
}


.goog-te-banner-frame,
.goog-te-gadget,
body>.skiptranslate,
.VIpgJd-ZVi9od-xl07Ob-OEVmcd {
    display: none !important;
}

.header {
    background: rgba(255, 255, 255, 0.95);
    padding: 24px 20px;
    text-align: center;
    border-bottom: 1px solid #dce4e8;
}


.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a4d3e;
}

.lang-switch {
    text-align: center;
    margin: 12px 0 0;
    display: inline-flex;
    background: #eef2f6;
    border-radius: 30px;
    padding: 3px;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    color: #64748b;
    transition: all 0.25s;
}

.lang-btn.active {
    background: #1a4d3e;
    color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.categories {
    background: rgba(255, 255, 255, 0.95);
    padding: 16px 20px;
    border-bottom: 1px solid #e9edf2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.cat-btn {
    background: transparent;
    border: 1px solid #cbd5e1;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #334155;
    cursor: pointer;
}

.cat-btn.active {
    background: #c97e2c;
    border-color: #c97e2c;
    color: white;
}

.beer-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 28px 20px;
}

.beer-card {
    background: white;
    border-radius: 20px;
    margin-bottom: 24px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #eef2f6;
}

.beer-card:hover {
    transform: translateY(-3px);
}

.beer-card.hidden {
    display: none;
}

.beer-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a4d3e;
    margin-bottom: 6px;
}

.beer-meta {
    font-size: 0.75rem;
    color: #c97e2c;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 12px;
    font-weight: 600;
}

.beer-desc {
    font-size: 0.9rem;
    color: #334155;
    margin-bottom: 20px;
}

.beer-prices {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.price-badge {
    background: #f1f5f9;
    color: #1e293b;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.camera-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.camera-btn {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 0.85rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.modal-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2.2rem;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
}

@media (max-width: 600px) {
    .beer-card {
        padding: 20px;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.5);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


.beer-category {
    display: inline-flex;
    align-items: center;

    padding: 4px 10px;
    margin-bottom: 8px;

    font-size: 0.85rem;
    font-weight: 600;

    color: #8b4a17;
    background-color: rgba(201, 126, 44, 0.12);

    border: 1px solid rgba(201, 126, 44, 0.4);
    border-radius: 20px;
}


/*********************logo*********************/

.logo {
    width: 8.25rem;
    /* 100px (16px 脳 6.25 = 100px) */
    height: 8.25rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.625rem;
    border: 0.125rem solid white;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* En m贸viles, se reduce autom谩ticamente si cambias el font-size del html */
@media (max-width: 480px) {
    .logo {
        width: 7rem;
        /* 80px */
        height: 7rem;
    }
}



/* ============================================
   BOTÓN SUBIR ARRIBA (SCROLL TO TOP)
   ============================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: #c97e2c;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: #a8631f;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

