/* Calendario Moderno — Strip + Grid */
.cal-wrapper {
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 16px 20px;
}

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cal-header > div {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cal-month-label {
    font-size: 1.66rem;
    font-weight: 700;
    color: var(--text-color, #1e293b);
    text-transform: capitalize;
}

.cal-nav-btn,
.cal-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: #f1f5f9;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s;
    color: var(--text-color, #1e293b);
}

.cal-nav-btn:hover,
.cal-toggle-btn:hover {
    background: #e2e8f0;
}

.cal-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.cal-nav-btn i,
.cal-toggle-btn i {
    font-size: 1.50rem;
}

/* Strip Mode */
.cal-strip {
    display: flex;
    gap: 6px;
    padding: 4px 0;
}

.cal-strip-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    flex: 1;
    padding: 8px 4px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    user-select: none;
}

    .cal-strip-day:hover:not(.cal-disabled):not(.cal-selected) {
        background: color-mix(in srgb, var(--primary-color), transparent 85%);
    }

.cal-strip-weekday {
    font-size: 1.13rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.cal-strip-number {
    font-size: 1.66rem;
    font-weight: 700;
    color: var(--text-color, #1e293b);
    line-height: 1;
}

.cal-strip-day.cal-selected {
    background: var(--primary-color, #E40E18);
    box-shadow: 0 2px 8px color-mix(in srgb, var(--primary-color), transparent 70%);
}

.cal-strip-day.cal-selected .cal-strip-weekday,
.cal-strip-day.cal-selected .cal-strip-number {
    color: white;
}

.cal-strip-day.cal-today:not(.cal-selected) {
    border: 2px solid var(--primary-color, #E40E18);
}

.cal-strip-day.cal-disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* Grid Mode */
.cal-grid-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 4px;
}

.cal-grid-weekday-label {
    text-align: center;
    font-size: 0.90rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    padding: 4px 0;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-grid-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.06rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    color: var(--text-color, #1e293b);
    user-select: none;
}

.cal-grid-day:hover:not(.cal-disabled):not(.cal-outside):not(.cal-selected) {
    background: color-mix(in srgb, var(--primary-color), transparent 90%);
}

.cal-grid-day.cal-selected {
    background: var(--primary-color, #E40E18);
    color: white;
    font-weight: 700;
    box-shadow: 0 2px 6px color-mix(in srgb, var(--primary-color), transparent 70%);
}

.cal-grid-day.cal-today:not(.cal-selected) {
    border: 2px solid var(--primary-color, #E40E18);
    font-weight: 700;
}

.cal-grid-day.cal-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.cal-grid-day.cal-outside {
    color: #cbd5e1;
    pointer-events: none;
}

/* Calendar Popup */
.cal-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 900;
    animation: cal-fade-in 0.15s ease;
}

.cal-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    padding: 20px;
    z-index: 901;
    width: 340px;
    max-width: 92vw;
    animation: cal-slide-up 0.2s ease;
}

.cal-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cal-popup-header > div {
    display: flex;
    align-items: center;
    gap: 4px;
}

@keyframes cal-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes cal-slide-up {
    from { opacity: 0; transform: translate(-50%, -46%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}


/* Botão */
.button-booking {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px;
    font-size: 1.12rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-family: 'BarlowCondensed', sans-serif;
    margin-top: 10px;
}


.buttonBooking {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px;
    font-size: 1.12rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 90%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-family: 'BarlowCondensed', sans-serif;
}

.buttonTransparent {
    background-color: transparent;
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    padding: 12px;
    font-size: 1.12rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border: solid 2px var(--primary-color);
    font-family: 'BarlowCondensed', sans-serif;
}

    .buttonTransparent:hover {
        background-color: black;
        color: white;
        border: solid 2px black;
    }


.buttonSlim {
    background-color: transparent;
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    padding: 12px;
    font-size: 1.12rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-family: 'BarlowCondensed', sans-serif;
}

    .buttonSlim:hover {
        text-decoration: underline;
        cursor: pointer;
    }

/* Cabeçalho */
.booking-container {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    box-sizing: border-box;
    width: 100%;
    max-width: 1200px;
    margin: 8px auto 0px auto;
    overflow: visible;
}

.booking-container-infos {
    display: flex;
    align-items: center;
    max-height: 150px;
    background-color: #F4F4F4;
    border-radius: 10px;
    
    padding: 10px;
}


    .booking-container .logo {
        padding-right: 0px;
        width: auto;
        height: auto;
    }

.squares-wrapper {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    max-width: 100%;
    scrollbar-width: none;
}

    .squares-wrapper::-webkit-scrollbar {
        display: none;
    }


.squares-container {
    display: flex;
    overflow: hidden;
    margin-right: 40px;
    width: 100%;
}


.square {
    min-width: 28px;
    min-height: 28px;
    max-width: 28px;
    max-height: 28px;
}

.squares-container .square:nth-child(odd) {
    background-color: var(--background-color);
}

.squares-container .square:nth-child(even) {
    background-color: var(--background-color);
}

.squares-container.alternate .square:nth-child(odd) {
    background-color: var(--background-color);
}

.squares-container.alternate .square:nth-child(even) {
    background-color: var(--background-color);
}

.cart-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 33px;
    background-color: #F4F4F4;
    padding: 10px 20px;
    border-radius: 5px;
}

.home-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #F4F4F4;
    padding: 10px 20px;
    border-radius: 5px;
}

.cart-button span{
 font-size: 1.56rem;
 font-weight: 700;
}

.button-account-login {
    border-radius: 48px;
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* Animação de bounce para o número da quantidade */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Classes que aplicam as animações */
.animate-pulse {
    animation: pulse 0.6s ease-in-out;
}

.animate-bounce {
    animation: bounce 0.6s ease;
}

/* Estilo base para a animação */
.cart-button span,
.icon-cart {
    transition: transform 0.3s ease;
}

/* Company Info no Header */
.header-company-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    margin-left: 16px;
    min-width: 0;
}

.header-company-name {
    font-size: 1.66rem;
    font-weight: 700;
    color: var(--text-color, #1e293b);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.3px;
}

.header-company-details {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.header-company-location,
.header-company-phone {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 1.06rem;
    color: #334155;
}

.header-company-location i,
.header-company-phone i {
    font-size: 1.20rem;
}

.header-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
}

.header-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: transform 0.2s;
    text-decoration: none;
}

.header-social-icon:hover {
    transform: scale(1.15);
}

.header-social-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%);
    transition: transform 0.2s, opacity 0.2s;
}

.header-directions-icon {
    width: 24px;
    height: 24px;
    text-decoration: none;
}

.header-directions-icon img.header-directions-image,
.header-directions-icon img.registration-only-header__directions-icon {
    width: 24px;
    height: 24px;
    transform: scale(1.2);
    transform-origin: center;
}

.header-directions-icon:hover {
    transform: scale(1.15);
}

/* Radapé */
.footer {
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.footer-squares-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    max-width: 100%;
    scrollbar-width: none;
    margin-top: 40px;
}

    .footer-squares-wrapper::-webkit-scrollbar {
        display: none;
    }

.footer-squares-container {
    display: flex;
    overflow: hidden;
    margin-right: 40px;
    width: 100%;
}

.footer-square {
    min-width: 28px;
    min-height: 28px;
    max-width: 28px;
    max-height: 28px;
}

.footer-squares-container .footer-square:nth-child(odd) {
    background-color: black;
}

.footer-squares-container .footer-square:nth-child(even) {
    background-color: var(--background-color);
}

.footer-squares-container.alternate .footer-square:nth-child(odd) {
    background-color: var(--background-color);
}

.footer-squares-container.alternate .footer-square:nth-child(even) {
    background-color: black;
}

.footer-black-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    width: 100%;
    height: 100%;
    background-color: black;
    color: white;
    box-sizing: border-box;
}

.logo-footer {
    max-width: 220px;
    max-height: auto;
}

.footer-black-bar a {
    color: white;
    text-decoration: none;
}

    .footer-black-bar .social-logo {
        border-radius: 5px;
        margin-left: 10px; 
    }

    .footer-black-bar div {
        display: flex;
        align-items: center; 
        gap: 5px; 
    }

    .footer-black-bar span {
        font-size: 0.88rem; 
    }



/* Outros */

.color-font {
    color: var(--primary-color);
}

.button.space-top {
    margin-top: 20px;
    top: 20px;
}

.buttonTransparent.space-top {
    margin-top: 20px;
    top: 20px;
}

.buttonTSlim.space-top {
    margin-top: 20px;
    top: 20px;
}

.sizeButton {
    width: 200px;
    min-width: 200px;    
}

.flex-direction {
    display: flex;
    flex-direction: row;
    gap: 15px;
    width: 100%;
}

.flex-direction p  {
    margin-top: 5px;
}

    .flex-direction svg {
        margin-top: 18px;
    }

.countdown {
    margin-bottom: 20px;
    margin-top: 20px;
}

.error-message-button {
    display: flex;
    flex-direction: row;
    gap: 20px;
    font-size: 0.94rem;
    color: red;
    margin-top: 10px;
    text-align: center;
    text-decoration: none;
    margin-bottom: 10px;
}

.error-message, .validation-message {
    color: red;
    margin-top: 10px;
    font-size: 1.25rem;
    text-align: center;
    text-decoration: none;
    margin-bottom: 10px;
}

.name-overflow {
    display: inline-block;
    width: 50%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}
.details-section .span2 img {
    margin-left: 20px;
    vertical-align: middle;
}
span.name-overflow.span2 {
    display: flex;
    align-items: center;
}

.name-overflow-prohibited {
    display: inline-block;
    width: 150%;
    text-align: center;
/*    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;*/
}

/* Estilo para os inputs e selects */
.input-field {
    background-color: white;
    color: black;
    border: solid 2px black;
    border-radius: 5px;
    padding: 12px;
    font-size: 1.25rem;
    width: 100%;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
    font-family: 'BarlowCondensed', sans-serif;
}

    .input-field:focus {
        outline: none;
        background-color: #f5f5f5; 
    }

.input-field.spaceInput {
    margin-bottom: 20px;
}

.logout {
    margin-left: 20px;
}

.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

@media (min-width: 1374px) and (max-width: 1600px) {

    .name-overflow {
        width: 30%;
    }
}

@media (min-width: 961px) and (max-width: 1374px) {
    .error-message, .validation-message {
        display: flex;
        flex-direction: column;
        /*margin-top: -150px !important;*/
        padding: 10px;
        align-content: center;
        align-items: center;
        /*width: 60%;*/
        margin: 0 auto;
        /*margin-bottom: 110px;*/
        font-size: 1.25rem !important;
    }
    .name-overflow {
        width: 100%;
    }
}


@media (min-width: 768px) and (max-width: 961px) {

    .error-message, .validation-message {
        padding: 20px;
        display: flex;
        flex-direction: column;
        /*margin-top: -150px !important;*/
        padding: 10px;
        align-content: center;
        align-items: center;
        width: 60%;
        margin: 0 auto;
        /*margin-bottom: 110px;*/
        font-size: 1.25rem !important;
    }
    .name-overflow {
        width: 100%;
    }
}

@media (min-width: 400px) and (max-width: 768px) {
    .header-company-name {
        font-size: 1.00rem;
    }
    .header-company-details {
        gap: 10px;
    }
    .header-social-links {
        display: none;
    }
    .details-section .span2 img {
        vertical-align: middle;
        height: 25px;
        width: 25px;
    }
    .error-message, .validation-message {
        padding: 20px;
        color: red;
        /*margin-top: 50px;*/
        font-size: 1.2rem;
        white-space: nowrap;
        text-align: center;
        border-radius: 5px;
        display: block;
    }

    /* Cabeçalho */
    .booking-container {
        padding: 10px 5px;
    }

        .booking-container .logo {
            width: 90%;
            height: 90%;
        }

    .squares-wrapper {
        transform: scale(0.8);
        margin-left: 2px;
        margin-right: 0;
    }

    .cart-button {
        margin-left: 2px;
    }

    /* Radapé */
    .footer {
        overflow: hidden;
    }

    .footer-black-bar {
        margin-top: -5.6px;
        flex-direction: column;
    }

        .footer-black-bar a {
            margin-top: 20px;
            margin-bottom: 20px;
        }

    /* Outros */
    .sizeButton {
        min-width: 150px;
        width: 150px;
    }

    .error-message-button {
        flex-direction: column;
    }

    .name-overflow {
        width: 100%;
        align-content: flex-start;
    }

    .name-overflow-prohibited {
        width: 110%;
    }
}


@media (min-width: 370px) and (max-width: 400px) {
    .header-company-name {
        font-size: 0.88rem;
    }
    .header-company-details {
        gap: 8px;
        font-size: 0.75rem;
    }
    .header-company-location,
    .header-company-phone {
        font-size: 0.75rem;
    }
    .header-map-link {
        font-size: 0.75rem;
    }
    .header-social-links {
        display: none;
    }
    .header-company-info {
        margin-left: 10px;
    }
    .error-message, .validation-message {
        display: flex;
        flex-direction: column;
        /*margin-top: -150px !important;*/
        padding: 10px 20px;
        align-content: center;
        align-items: center;
        width: 100%;
        /*margin: 0 auto;*/
        /*margin-bottom: 110px;*/
        font-size: 1.25rem !important;
    }

    /* Cabeçalho */
    .booking-container {
        padding: 10px 5px;
    }

        .booking-container .logo {
            width: 90%;
            height: 90%;
        }

    .squares-wrapper {
        transform: scale(0.8);
        margin-left: 2px;
        margin-right: 0;
    }

    .cart-button {
        margin-left: 2px;
    }

    /* Radapé */
    .footer {
        overflow: hidden;
    }

    .footer-black-bar {
        margin-top: -5.6px;
        flex-direction: column;
    }

        .footer-black-bar a {
            margin-top: 20px;
            margin-bottom: 20px;
        }

    /* Outros */
    .sizeButton {
        min-width: 150px;
        width: 150px;
    }

    .error-message-button {
        flex-direction: column;
    }

    .name-overflow {
        width: 100%;
        align-content: flex-start;
    }
    .name-overflow-prohibited {
        width: 100%;
    }
}


@media (min-width: 350px) and (max-width: 370px) {
    /* Cabeçalho */
    .booking-container {
        padding: 20px;
    }

        .booking-container .logo {
            width: 90%;
            height: 90%;
        }

    .squares-wrapper {
        transform: scale(0.8);
        margin-left: 2px;
        margin-right: 0;
    }

    .cart-button {
        margin-left: 2px;
    }

    /* Radapé */
    .footer {
        overflow: hidden;
    }

    .footer-black-bar {
        margin-top: -5.6px;
        flex-direction: column;
    }

        .footer-black-bar a {
            margin-top: 20px;
            margin-bottom: 20px;
        }

    /* Outros */
    .sizeButton {
        min-width: 150px;
        width: 150px;
    }

    .error-message-button {
        flex-direction: column;
    }

    .name-overflow {
        width: 100%;
        align-content: flex-start;
    }

    .name-overflow-prohibited {
        width: 90%;
    }
}

@media (min-width: 290px) and (max-width: 350px) {
    /* Cabeçalho */
    .booking-container {
        padding: 20px;
    }

        .booking-container .logo {
            width: 90%;
            height: 90%;
        }

    .squares-wrapper {
        transform: scale(0.8);
        margin-left: 2px;
        margin-right: 0;
    }

    .cart-button {
        margin-left: 2px;
    }

    /* Radapé */
    .footer {
        overflow: hidden;
    }

    .footer-black-bar {
        margin-top: -5.6px;
        flex-direction: column;
    }

        .footer-black-bar a {
            margin-top: 20px;
            margin-bottom: 20px;
        }

    /* Outros */
    .sizeButton {
        min-width: 150px;
        width: 150px;
    }

    .error-message-button {
        flex-direction: column;
    }

    .name-overflow {
        width: 100%;
        align-content: flex-start;
    }

    .name-overflow-prohibited {
        width: 80%;
    }
}

/* Actions row — cart icon + hamburger */
.header-actions-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

/* Standalone cart icon — desktop only */
.header-cart-standalone {
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f1f5f9;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
    text-decoration: none;
    color: #1e293b;
}

.header-cart-standalone:hover {
    background: #e2e8f0;
    transform: scale(1.04);
    color: #1e293b;
    text-decoration: none;
}

.header-cart-standalone i {
    font-size: 1.80rem;
}

.header-cart-standalone-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 10px;
    background: var(--primary-color, #E40E18);
    color: white;
    font-size: 0.83rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Pending Sales Icon */
.header-pending-standalone {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f1f5f9;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
    text-decoration: none;
    color: #1e293b;
}

.header-pending-standalone:hover {
    background: #e2e8f0;
    transform: scale(1.04);
    color: #1e293b;
    text-decoration: none;
}

.header-pending-standalone i {
    font-size: 1.80rem;
    color: #f59e0b;
}

@media (min-width: 769px) {
    .header-cart-standalone {
        display: flex;
    }

    .header-pending-standalone {
        display: flex;
    }

    .dropdown-item-cart-mobile {
        display: none;
    }
}

/* Hamburger Menu */
.header-menu-container {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: none;
    background: #f1f5f9;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
}

.header-hamburger:hover {
    background: #e2e8f0;
    transform: scale(1.04);
}

.header-hamburger i {
    font-size: 1.94rem;
    color: #1e293b;
}

.header-hamburger-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 10px;
    background: var(--primary-color, #E40E18);
    color: white;
    font-size: 0.83rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Dropdown Menu Card */
.header-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    width: 260px;
    padding: 6px;
    z-index: 9999;
    transform-origin: top right;
    animation: dropdownScale 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes dropdownScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-5px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    color: #1e293b;
    font-size: 1.13rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.15s;
    cursor: pointer;
}

.dropdown-item:hover {
    background: #f1f5f9;
}

.dropdown-icon-mat {
    font-size: 1.66rem;
    color: #64748b;
    flex-shrink: 0;
}

.dropdown-item:hover .dropdown-icon-mat {
    color: #1e293b;
}

.dropdown-badge {
    margin-left: auto;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 11px;
    background: var(--primary-color, #E40E18);
    color: white;
    font-size: 0.90rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 4px 10px;
}

.dropdown-item-danger .dropdown-icon-mat {
    color: #ef4444;
}

.dropdown-item-danger:hover {
    background: #fef2f2;
}

.dropdown-item-danger:hover .dropdown-icon-mat {
    color: #dc2626;
}

.dropdown-item-primary {
    color: var(--primary-color, #E40E18);
    font-weight: 600;
}

.dropdown-item-primary .dropdown-icon-mat {
    color: var(--primary-color, #E40E18);
}

.dropdown-item-primary:hover {
    background: rgba(var(--primary-color-rgb, 228, 14, 24), 0.06);
}

/* Legacy icon classes (kept for backward compatibility) */
.icon-cart {
    width: 45px;
    height: 30px;
}

.login {
    width: 30px;
}

@media (max-width: 600px) {
    .header-dropdown-menu {
        right: -8px;
        width: 240px;
    }

    .dropdown-item {
        padding: 10px 12px;
        font-size: 1.06rem;
    }
}

.menu-overlay {
    position: fixed; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent; 
    z-index: 100; 
    cursor: default;
}

@media (max-width: 290px) {
    /* Cabeçalho */
    .booking-container {
        padding: 20px;
    }

        .booking-container .logo {
            width: 90%;
            height: 90%;
        }

    .squares-wrapper {
        transform: scale(0.8);
        margin-left: 2px;
        margin-right: 0;
    }

    .cart-button {
        margin-left: 2px;
    }

    /* Radapé */
    .footer {
        overflow: hidden;
    }

    .footer-black-bar {
        margin-top: -5.6px;
        flex-direction: column;
    }

        .footer-black-bar a {
            margin-top: 20px;
            margin-bottom: 20px;
        }

    /* Outros */
    .sizeButton {
        min-width: 150px;
        width: 150px;
    }

    .error-message-button {
        flex-direction: column;
    }

    .name-overflow {
        width: 100%;
        align-content: flex-start;
    }

    .name-overflow-prohibited {
        width: 80%;
    }
}
