/**
 * Estilo Estético do Cardápio Digital (Burgueria Express).
 */
.burger-menu-outer-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f7fafc;
    padding: 15px;
    border-radius: 16px;
}

.wp-burger-cardapio-container {
    max-width: 1000px;
    margin: 0 auto;
    color: #2d3748;
}

/* Header */
.burger-main-header {
    background: #1a1a1a;
    color: #fff;
    padding: 24px;
    border-radius: 14px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-emoji {
    font-size: 36px;
    background: rgba(255,255,255,0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.logo-texts h2 {
    margin: 0;
    font-size: 1.6em;
    font-weight: 850;
    color: #f6ad55;
    letter-spacing: -0.5px;
}

.logo-texts p {
    margin: 2px 0 0;
    font-size: 11px;
    color: #cbd5e0;
}

.schedule-badge {
    background: #2f855a;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.search-section {
    margin-top: 15px;
}

.search-section input {
    width: 100%;
    padding: 10px 14px;
    border: none;
    background: #2d3748;
    color: #fff;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 12px;
}

/* Categorias */
.burger-categories-bar-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.cat-tab-btn {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 8px 14px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    color: #4a5568;
    white-space: nowrap;
    transition: all 0.2s;
}

.cat-tab-btn.active, .cat-tab-btn:hover {
    background: #dd6b20;
    color: #fff;
    border-color: #dd6b20;
    box-shadow: 0 4px 6px -1px rgba(221, 107, 32, 0.2);
}

/* Products showcase grid */
.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.burger-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.burger-product-card .image-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.burger-product-card .details-box {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.burger-product-card .details-box h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    color: #1a202c;
}

.burger-product-card .details-box .description {
    font-size: 10.5px;
    color: #718096;
    margin: 8px 0 16px;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.pricing-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-t: 1px solid #f7fafc;
    padding-top: 10px;
}

.pricing-panel .raw-price {
    font-size: 14px;
    font-weight: 900;
    color: #dd6b20;
}

.btn-add-product {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-add-product:hover {
    background: #dd6b20;
}

/* Sacola de compras lateral drawer */
.burger-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 330px;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.burger-cart-drawer.hidden {
    transform: translateX(100%);
}

.cart-drawer-header {
    background: #1a1a1a;
    color: #fff;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
}

.close-drawer {
    font-size: 24px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

.cart-items-scroll-pane {
    flex-grow: 1;
    overflow-y: auto;
    padding: 15px;
}

.cart-draft-item {
    background: #f7fafc;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
}

.item-name-block {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}

.quantity-controls-rack {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.adjust-qty-btn {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #cbd5e0;
    background: #fff;
    cursor: pointer;
    font-weight: 900;
    font-size: 12px;
}

.cart-summary-footer {
    padding: 15px;
    border-top: 1px solid #e2e8f0;
    background: #fcfcfc;
}

.coupon-field {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.coupon-field input {
    flex-grow: 1;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #cbd5e0;
    font-size: 10px;
}

.coupon-field button {
    background: #4a5568;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 10.5px;
    cursor: pointer;
}

.values-rack {
    margin-bottom: 15px;
    font-size: 11px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.summary-line.total {
    font-size: 14px;
    font-weight: 900;
    color: #1a202c;
    border-top: 1px solid #e2e8f0;
    padding-top: 6px;
}

.btn-proceed-checkout {
    width: 100%;
    background: #dd6b20;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
}

.btn-proceed-checkout:disabled {
    background: #a0aec0;
}

/* Floating Bottom Mobile design */
.floating-mob-cart {
    position: fixed;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: #dd6b20;
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    cursor: pointer;
}

.floating-mob-cart.hidden {
    display: none;
}

.mob-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: bold;
}

.count-badge {
    background: #fff;
    color: #dd6b20;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

/* Checkout Overlay modal */
.checkout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.checkout-overlay.hidden {
    display: none;
}

.checkout-modal-card {
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

.modal-top {
    background: #1a1a1a;
    color: #fff;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-top h3 {
    margin: 0;
    font-size: 14px;
}

.close-modal-btn {
    font-size: 24px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

.steps-progress-bar {
    display: flex;
    background: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
}

.step-indicator {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 9.5px;
    font-weight: bold;
    color: #a0aec0;
}

.step-indicator.active {
    color: #dd6b20;
    border-bottom: 2px solid #dd6b20;
}

.steps-content-container {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.shipping-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.shipping-option-card {
    border: 2px solid #e2e8f0;
    background: #fff;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.shipping-option-card.active, .shipping-option-card:hover {
    border-color: #dd6b20;
    background: #fffaf0;
}

.opt-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.shipping-option-card h4 {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: bold;
}

.opt-desc {
    font-size: 9px;
    color: #718096;
}

.form-group-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group-item label {
    font-size: 10px;
    font-weight: bold;
    color: #4a5568;
}

.form-group-item input, .form-group-item textarea, .form-group-item select {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #cbd5e0;
    font-size: 11px;
}

.input-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkout-modal-footer {
    padding: 15px;
    background: #f7fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.checkout-modal-footer button {
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 11px;
    cursor: pointer;
}

.btn-checkout-back {
    border: 1px solid #cbd5e0;
    background: #fff;
    color: #4a5568;
}

.primary-solid {
    background: #dd6b20;
    color: #fff;
    border: none;
}

.hidden {
    display: none !important;
}
