/* 
 * TASADOR OFFICIAL STYLES - DEFINITIVE PREMIUM VERSION
 * Optimized Header Alignment, Responsive Typography, and Boutique Market
 */

:root {
    --color-primary: #ec4109;
    --color-secondary: #0c0b09;
    --color-accent: #ffcc00;
    --color-text: #ffffff;
    --color-text-muted: #aaaaaa;
    --font-heading: 'Playfair Display', serif;
    --font-special: 'Luckiest Guy', cursive;
    --font-body: 'Poppins', sans-serif;
    --header-height: 70px;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-secondary);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

h1 {
    font-size: 4.5rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.2rem;
}

p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    p {
        font-size: 14px;
    }
}

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Custom Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.row>* {
    padding-left: 15px;
    padding-right: 15px;
}

/* Gap utilities */
.gy-4 {
    row-gap: 1.2rem;
}

/* Column system */
[class*="col-"] {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

/* Mobile columns (default, all sizes) */
.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

/* Desktop columns (992px and up) */
@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Tablet columns (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.section-bg {
    background-color: rgba(26, 24, 20, 0.6);
}

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

/* Flexbox utilities */
.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

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

.justify-content-between {
    justify-content: space-between;
}

/* Header & Navbar */
.header {
    background: rgba(12, 11, 9, 0.95);
    backdrop-filter: blur(10px);
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-height: 50px;
}

.navbar {
    display: flex;
    align-items: center;
}

.navbar ul {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.navbar a {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar a i {
    font-size: 14px;
    color: var(--color-primary);
}

.navbar a:hover,
.navbar a.active {
    color: var(--color-primary);
}

.mobile-nav-toggle {
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    display: none;
    line-height: 0;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #000 !important;
    z-index: 3000 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.navbar-mobile ul {
    display: block !important;
    text-align: center;
}

.navbar-mobile li {
    margin: 25px 0;
}

.navbar-mobile a {
    font-size: 1.8rem;
    color: #fff;
    justify-content: center;
    text-shadow: none;
    font-weight: 600;
}

.navbar-mobile a i {
    font-size: 1.6rem;
    color: var(--color-primary);
}

/* Hero Section Refinements */
#hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/Gallery_1.jpeg") center center;
    background-size: cover;
    display: flex;
    align-items: center;
}

#hero .container {
    text-align: left;
}

#hero h1 {
    font-family: var(--font-special);
    margin-bottom: 5px;
    color: #fff;
    text-shadow:
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        4px 4px 0 orange;
}

#hero h1 span {
    color: var(--color-primary);
    white-space: nowrap;
}

#hero h2 {
    font-family: var(--font-special);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 35px;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        2px 2px 0 orange;
}

#hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 35px;
    color: #fff;
}

#hero .btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

#hero .btns a,
#hero .btns span {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 3px solid var(--color-accent);
    background: var(--color-primary);
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

#hero .btns a:hover,
#hero .btns span:hover {
    transform: scale(1.05);
    background: #d32f2f;
}

@media (max-width: 768px) {
    #hero .container {
        text-align: center;
    }

    #hero h1 {
        font-size: 3.2rem;
    }

    #hero h2 {
        font-size: 1.4rem;
    }

    #hero .btns {
        justify-content: center;
        width: 100%;
    }

    #hero .btns a,
    #hero .btns span {
        width: auto;
        padding: 12px 25px;
        /* Ligeramente más pequeños para asegurar que quepan 2 */
        font-size: 12px;
        justify-content: center;
    }
}

/* Sections */
section {
    padding: 90px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .section-title {
        margin-bottom: 30px;
    }
}

.section-title h2 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    font-family: var(--font-body);
    text-shadow: none;
    margin-bottom: 5px;
    display: inline-block;
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 80px;
    height: 1px;
    background: var(--color-primary);
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
}

.section-title p {
    font-family: var(--font-special);
    font-size: 2.8rem;
    color: var(--color-primary);
    margin: 0;
    text-shadow:
        -1.5px -1.5px 0 #000,
        1.5px -1.5px 0 #000,
        -1.5px 1.5px 0 #000,
        1.5px 1.5px 0 #000,
        3px 3px 0 orange;
}

/* --- Premium Redesign Styles --- */

/* Glassmorphism Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    transition: 0.4s;
}

.glass-card:hover {
    border-color: rgba(205, 164, 94, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

/* Premium Image Treatment */
.img-premium {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(205, 164, 94, 0.2);
    transition: 0.4s;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-premium img {
    border-radius: 20px;
    transition: 0.5s;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.img-premium:hover img {
    transform: scale(1.02);
}

/* Premium Lists */
.premium-list {
    margin-top: 25px;
}

.premium-list li {
    background: rgba(205, 164, 94, 0.05);
    border-radius: 12px;
    padding: 12px 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.premium-list li:hover {
    background: rgba(205, 164, 94, 0.1);
    border-color: rgba(205, 164, 94, 0.3);
}

.premium-list i {
    color: var(--color-accent);
    background: rgba(205, 164, 94, 0.2);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Redesign Section Headers inside content */
.section-content-title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.section-content-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--color-accent);
}

/* About Section Specifics */
.about .content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* Events Button Premium */
.btn-premium-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-accent);
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 20px;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-premium-gold:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(205, 164, 94, 0.3);
}

@media (max-width: 768px) {
    .glass-card {
        padding: 25px;
    }

    .section-content-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .section-content-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .premium-list li {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

/* Food Menu */
.menu .menu-content {
    display: flex;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    margin-top: 15px;
}

.menu .menu-content::after {
    content: "........................................................................................................................";
    position: absolute;
    left: 20px;
    right: 0;
    bottom: 4px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.2);
}

.menu .menu-content a {
    background: var(--color-secondary);
    position: relative;
    z-index: 2;
    padding-right: 10px;
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.menu .menu-content span {
    background: var(--color-secondary);
    position: relative;
    z-index: 2;
    padding-left: 10px;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.menu .menu-ingredients {
    font-style: italic;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.menu #menu-flters {
    text-align: center;
    margin-bottom: 30px;
}

.menu #menu-flters li {
    display: inline-block;
    padding: 8px 18px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: 0.3s;
    color: #fff;
}

.menu #menu-flters li:hover,
.menu #menu-flters li.filter-active {
    color: var(--color-primary);
}

/* MARKET SECTION */
.card-item {
    background: #1a1814;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    height: 100%;
    border-bottom: 3px solid transparent;
}

.card-item:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    background: #22201d;
}

.card-item span {
    display: block;
    font-family: var(--font-special);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.card-item h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    text-shadow: none;
    margin-bottom: 10px;
}

.card-item p {
    font-size: 14px;
    color: #aaa;
}

.graphic-btn {
    margin-top: 20px;
    background: linear-gradient(135deg, var(--color-primary), #b71c1c);
    border: 2px solid var(--color-accent);
    color: #fff;
    font-weight: 700;
    padding: 12px;
    border-radius: 50px;
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Modals */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(8px);
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-backdrop.active {
    display: flex;
}

.modal-content {
    background: #1a1814;
    width: 92%;
    max-width: 480px;
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 204, 0, 0.2);
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 1);
    text-align: center;
}

.modal-content h3 {
    font-family: var(--font-special);
    color: var(--color-primary);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
}

.selection-option-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 18px;
    margin-top: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    text-align: left;
}

.selection-option-card:hover {
    border-color: var(--color-primary);
    background: rgba(236, 65, 9, 0.1);
}

.cart-list {
    max-height: 40vh;
    overflow-y: auto;
    margin: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 5px 12px;
    border-radius: 50px;
}

.qty-control button {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 20px;
    cursor: pointer;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    background: #25d366;
    color: #fff;
    font-weight: 800;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Floating elements */
.floating-btns-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    /* Máxima prioridad */
}

@media (max-width: 768px) {
    .floating-btns-container {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .floating-btn {
        width: 55px !important;
        height: 55px !important;
        font-size: 22px !important;
    }
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    border: none;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: 0.3s;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.delivery-btn {
    background: var(--color-primary);
    border: 2px solid var(--color-accent);
}

.market-btn {
    background: #25d366;
    /* WhatsApp Green preserved for brand recognition but with cart icon */
    border: 2px solid #fff;
}

.btn-tooltip {
    position: absolute;
    right: 75px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.floating-btn:hover .btn-tooltip {
    opacity: 1;
    right: 70px;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--color-primary);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* Contact Section Premium */
.contact .info-box {
    text-align: center;
    padding: 30px;
}

.contact .info-box>i {
    font-size: 1.6rem;
    color: var(--color-accent);
    background: rgba(205, 164, 94, 0.15);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 1px solid rgba(205, 164, 94, 0.3);
    transition: 0.3s;
}

.social-icons a i {
    font-size: 1.2rem;
    color: inherit;
    background: none;
    width: auto;
    height: auto;
    border: none;
    margin: 0;
}

.contact .info-box:hover i {
    background: var(--color-accent);
    color: #000;
}

.contact .info-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact .info-box p {
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    padding: 30px;
    margin-top: 30px;
}

.social-links h3 {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-icons a {
    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
    min-height: 45px !important;
    max-width: 45px !important;
    max-height: 45px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    padding: 0 !important;
    margin: 0 5px !important;
    flex: 0 0 45px !important;
}

.social-icons a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(205, 164, 94, 0.2);
}

.map-container.img-premium {
    height: 100%;
}

/* Contact Section Responsive */
@media (max-width: 768px) {
    .contact .info-box {
        padding: 20px 10px;
        margin-bottom: 5px;
    }

    .contact .info-box>i {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .contact .info-box h3 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .contact .info-box p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icons a {
        width: 40px !important;
        height: 40px !important;
        flex: 0 0 40px !important;
        font-size: 1rem;
        margin: 0 !important;
    }

    .contact .map-container iframe {
        min-height: 350px !important;
    }
}


#footer {
    background: #0c0b09;
    padding: 40px 0;
    color: #fff;
    text-align: center;
}

/* Animations */
.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.zoomIn {
    animation-name: zoomIn;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.7, 0.7, 0.7);
    }

    to {
        opacity: 1;
    }
}

/* Shared Extras Section */
.extras-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(205, 164, 94, 0.2);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-left: 4px solid #cda45e;
}

.extras-box h5 {
    color: #cda45e;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.extras-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px 40px;
}

.extras-box ul li {
    font-size: 0.85rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.extras-box ul li:hover {
    color: #fff;
    transform: translateX(5px);
}

.extras-box ul li:last-child {
    border-bottom: none;
}

.extras-box ul li span {
    color: #cda45e;
    font-weight: 800;
    font-size: 1rem;
    white-space: nowrap;
}

.gourmet-badge {
    color: #cda45e;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 10px;
    font-style: italic;
    font-weight: 400;
}

/* Salsa Thermometer Styles */
.salsa-thermometer {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.thermometer-header {
    font-size: 0.9rem;
    color: #cda45e;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.thermometer-body {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.thermometer-scale {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40px;
}

.scale-bar {
    flex-grow: 1;
    width: 8px;
    background: linear-gradient(to bottom, #fee08b, #fdae61, #f46d43, #d73027, #a50026);
    border-radius: 10px;
    margin: 5px 0;
    position: relative;
}

.scale-bar::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #a50026;
    border-radius: 50%;
}

.label-top,
.label-bottom {
    font-size: 0.65rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
}

.thermometer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.thermometer-list li {
    font-size: 0.85rem;
    color: #ccc;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.thermometer-list li:hover {
    color: #fff;
    transform: translateX(5px);
}

.spice-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.spice-lvl-1 .spice-dot {
    background: #fee08b;
    box-shadow: 0 0 5px #fee08b;
}

.spice-lvl-2 .spice-dot {
    background: #fdae61;
    box-shadow: 0 0 5px #fdae61;
}

.spice-lvl-3 .spice-dot {
    background: #f46d43;
    box-shadow: 0 0 5px #f46d43;
}

.spice-lvl-4 .spice-dot {
    background: #d73027;
    box-shadow: 0 0 5px #d73027;
}

.spice-lvl-5 .spice-dot {
    background: #a50026;
    box-shadow: 0 0 10px #a50026;
}

/* Search Bar Styles */
.search-container {
    margin-bottom: 30px;
}

.search-box {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(205, 164, 94, 0.3);
    border-radius: 50px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.search-box:focus-within {
    border-color: #cda45e;
    box-shadow: 0 0 20px rgba(205, 164, 94, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.search-box i {
    color: #cda45e;
    font-size: 1.2rem;
    margin-right: 15px;
}

.search-box input {
    background: transparent;
    border: none;
    color: #fff;
    width: 100%;
    font-size: 1rem;
    outline: none;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Animations for search results */
.menu-item,
.card-item {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.menu-extra-highlight {
    color: #cda45e;
    font-weight: 700;
    background: rgba(205, 164, 94, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px dashed rgba(205, 164, 94, 0.3);
    display: inline-block;
    margin-top: 5px;
    font-size: 0.8rem;
}

/* Refined "Todo" PDF CTA Styles */
.todo-cta-box {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(205, 164, 94, 0.2);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.cta-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.btn-cta-pdf {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #cda45e;
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-cta-pdf:hover {
    background: #d9ba85;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(205, 164, 94, 0.3);
}

.btn-cta-pdf i {
    font-size: 1.2rem;
}