/* =============================================
   DELIVERY PAGE STYLES
   ============================================= */

/* Banner cerrado */
.delivery-closed-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff3cd;
    border-left: 5px solid #e6a817;
    color: #7a5100;
    padding: 14px 20px;
    font-size: 14px;
}
.delivery-closed-banner .fa {
    font-size: 28px;
    color: #e6a817;
    flex-shrink: 0;
}
.delivery-closed-banner strong { display: block; font-size: 15px; margin-bottom: 2px; }
.delivery-closed-banner span   { font-size: 13px; opacity: .85; }

/* Hero mini */
.delivery-hero {
    background: url(../images/banner.jpg) no-repeat center top;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    padding: 140px 0 60px;
    text-align: center;
}
.delivery-hero:before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.65);
}
.delivery-hero .container {
    position: relative;
    z-index: 1;
}
.delivery-hero h1 {
    font-family: 'nautilus_pompiliusregular', serif;
    color: #fff;
    font-size: 48px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.delivery-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
}

/* Main 2-column layout */
.delivery-main {
    background: #fff;
    padding: 30px 0 50px;
    min-height: 500px;
}

/* =============================================
   LEFT SIDEBAR: Categories
   ============================================= */
.delivery-sidebar {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 20px 15px;
    position: sticky;
    top: 80px;
}
.delivery-sidebar-search {
    position: relative;
    margin-bottom: 15px;
}
.delivery-sidebar-search input {
    width: 100%;
    padding: 9px 35px 9px 12px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background: #fff;
    color: #333;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s;
}
.delivery-sidebar-search input:focus {
    border-color: #e75b1e;
}
.delivery-sidebar-search input::placeholder {
    color: #999;
}
.delivery-sidebar-search .search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
}

/* Category buttons in sidebar */
.delivery-categories {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 500px;
    overflow-y: auto;
}
.delivery-cat-btn {
    display: block;
    width: 100%;
    padding: 8px 14px;
    border: 2px solid #e75b1e;
    border-radius: 20px;
    color: #333;
    background: #fff;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
    text-align: left;
}
.delivery-cat-btn:hover {
    background: #fff3ed;
}
.delivery-cat-btn.active {
    border-color: #e75b1e;
    color: #fff;
    background: #e75b1e;
}
.delivery-cat-btn.hidden {
    display: none;
}

/* =============================================
   RIGHT: Products area
   ============================================= */
.delivery-search-box {
    position: relative;
    max-width: 100%;
    margin-bottom: 20px;
}
.delivery-search-box input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #ccc;
    border-radius: 25px;
    background: #fff;
    color: #333;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}
.delivery-search-box input:focus {
    border-color: #e75b1e;
}
.delivery-search-box input::placeholder {
    color: #999;
}
.delivery-search-box .search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 16px;
}

/* Products grid */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Product card */
.delivery-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.delivery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.delivery-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    background: #f0f0f0;
    cursor: pointer;
}
.delivery-card-placeholder {
    width: 100%;
    height: 180px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.delivery-card-placeholder i {
    font-size: 60px;
    color: #ccc;
}
.delivery-card-body {
    padding: 12px 15px;
}
.delivery-card-cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e75b1e;
    margin-bottom: 4px;
}
.delivery-card-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
    line-height: 1.3;
}
.delivery-card-pres {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}
.delivery-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.delivery-card-price {
    font-size: 18px;
    font-weight: 700;
    color: #e75b1e;
}
.delivery-card-price small {
    font-size: 12px;
    color: #777;
    text-decoration: line-through;
    margin-left: 6px;
    font-weight: 400;
}
.delivery-add-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #1ee786;
    background: transparent;
    color: #1ee786;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    line-height: 1;
}
.delivery-add-btn:hover {
    background: #1ee786;
    color: #fff;
}
.delivery-card-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e75b1e;
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Load more */
.delivery-load-more {
    text-align: center;
    padding: 25px 0 10px;
}
.delivery-load-btn {
    display: inline-block;
    padding: 10px 35px;
    border: 2px solid #e75b1e;
    border-radius: 25px;
    color: #e75b1e;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.delivery-load-btn:hover {
    background: #e75b1e;
    color: #fff;
}
.delivery-load-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Empty state */
.delivery-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}
.delivery-empty i {
    font-size: 60px;
    margin-bottom: 15px;
    display: block;
    color: #ccc;
}
.delivery-empty p {
    font-size: 16px;
}

/* Loading spinner */
.delivery-spinner {
    text-align: center;
    padding: 40px;
    color: #e75b1e;
}
.delivery-spinner i {
    font-size: 30px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Products count */
.delivery-count {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

/* =============================================
   FLOATING CART
   ============================================= */
.delivery-cart-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}
.scrollup {
    bottom: 100px !important;
    right: 38px !important;
}

.delivery-cart-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e75b1e;
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(231,91,30,0.4);
    position: relative;
    transition: transform 0.3s;
}
.delivery-cart-toggle:hover {
    transform: scale(1.1);
}
.delivery-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: #fff;
    font-size: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Cart panel */
.delivery-cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100%;
    background: #fff;
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
}
.delivery-cart-panel.open {
    right: 0;
}
.delivery-cart-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
}
.delivery-cart-overlay.show {
    display: block;
}
.delivery-cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.delivery-cart-header h3 {
    color: #333;
    margin: 0;
    font-size: 18px;
}
.delivery-cart-close {
    background: none;
    border: none;
    color: #999;
    font-size: 22px;
    cursor: pointer;
    padding: 0;
}
.delivery-cart-close:hover {
    color: #333;
}
.delivery-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}
.delivery-cart-empty {
    text-align: center;
    padding: 40px 0;
    color: #999;
}
.delivery-cart-empty i {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

/* Cart item */
.delivery-cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}
.delivery-cart-item-img {
    width: 55px;
    height: 55px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}
.delivery-cart-item-info {
    flex: 1;
    min-width: 0;
}
.delivery-cart-item-name {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.delivery-cart-item-pres {
    color: #999;
    font-size: 12px;
}
.delivery-cart-item-price {
    color: #e75b1e;
    font-size: 14px;
    font-weight: 600;
}
.delivery-cart-item-extras {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}
.delivery-cart-item-extras i {
    color: #e75b1e;
    margin-right: 3px;
}
.delivery-cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.delivery-cart-item-btns {
    display: flex;
    gap: 6px;
}
.delivery-cart-edit,
.delivery-cart-delete {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s;
    padding: 0;
    color: #888;
}
.delivery-cart-edit:hover {
    border-color: #e75b1e;
    color: #e75b1e;
}
.delivery-cart-delete:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}

/* Quantity controls */
.delivery-qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}
.delivery-qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: transparent;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
    line-height: 1;
}
.delivery-qty-btn:hover {
    border-color: #e75b1e;
    color: #e75b1e;
}
.delivery-qty-btn.remove:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}
.delivery-qty-val {
    color: #333;
    font-size: 14px;
    min-width: 20px;
    text-align: center;
}

/* Cart footer */
.delivery-cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}
.delivery-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.delivery-cart-total span {
    color: #666;
    font-size: 16px;
}
.delivery-cart-total strong {
    color: #e75b1e;
    font-size: 22px;
}
.delivery-cart-wsp,
.delivery-cart-checkout {
    display: block;
    width: 100%;
    padding: 12px;
    background: #e75b1e;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background 0.3s;
    text-decoration: none;
}
.delivery-cart-wsp:hover,
.delivery-cart-checkout:hover {
    background: #cf4e17;
    color: #fff;
    text-decoration: none;
}
.delivery-cart-wsp i,
.delivery-cart-checkout i {
    margin-right: 6px;
}

/* =============================================
   PRODUCT CONFIG MODAL
   ============================================= */
.delivery-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: none;
}
.delivery-modal-overlay.show { display: block; }
.delivery-modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 520px;
    max-width: 95vw;
    max-height: 85vh;
    background: #fff;
    border-radius: 16px;
    z-index: 2001;
    display: none;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.delivery-modal.show {
    display: flex;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.delivery-modal-content {
    display: flex;
    flex-direction: column;
    max-height: 85vh;
}
.delivery-modal-header {
    text-align: center;
    padding: 25px 20px 15px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}
.delivery-modal-label {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color: #e75b1e;
    font-weight: 600;
    margin-bottom: 5px;
}
.delivery-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 4px;
}
.delivery-modal-sub {
    font-size: 13px;
    color: #999;
    margin: 0;
}
.delivery-modal-close {
    position: absolute;
    top: 15px; right: 15px;
    background: none;
    border: none;
    font-size: 22px;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}
.delivery-modal-close:hover { color: #333; }
.delivery-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.delivery-modal-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.delivery-modal-section-header h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #555;
    margin: 0;
}
.delivery-modal-search {
    position: relative;
}
.delivery-modal-search i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    font-size: 12px;
}
.delivery-modal-search input {
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 6px 12px 6px 28px;
    font-size: 12px;
    width: 160px;
    outline: none;
}
.delivery-modal-search input:focus {
    border-color: #e75b1e;
}

/* Notas checkboxes */
.delivery-modal-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 12px;
}
.delivery-modal-check {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 13px;
    color: #444;
}
.delivery-modal-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #e75b1e;
    cursor: pointer;
}
.delivery-modal-hint {
    font-size: 11px;
    color: #999;
    margin: 0 0 6px;
}
.delivery-modal-hint strong {
    color: #e75b1e;
}
/* Tags input */
.delivery-modal-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 6px 10px;
    min-height: 38px;
    margin-bottom: 15px;
    transition: border-color 0.2s;
}
.delivery-modal-tags-wrap:focus-within {
    border-color: #e75b1e;
}
.delivery-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.delivery-modal-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #e75b1e;
    color: #fff;
    padding: 3px 10px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 500;
}
.delivery-modal-tag-remove {
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    opacity: 0.8;
}
.delivery-modal-tag-remove:hover {
    opacity: 1;
}
.delivery-modal-tags-input {
    border: none;
    outline: none;
    font-size: 13px;
    flex: 1;
    min-width: 120px;
    padding: 2px 0;
}

/* Topping categories */
.delivery-modal-topping-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}
.delivery-modal-topcatbtn {
    padding: 6px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
    color: #555;
}
.delivery-modal-topcatbtn.active {
    background: #e75b1e;
    border-color: #e75b1e;
    color: #fff;
}
.delivery-modal-topcatbtn:hover {
    border-color: #e75b1e;
}

/* Topping items */
.delivery-modal-topping-items {
    margin-bottom: 10px;
}
.delivery-modal-topitem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    margin-bottom: 6px;
    cursor: pointer;
    transition: all 0.2s;
}
.delivery-modal-topitem:hover {
    border-color: #e75b1e;
}
.delivery-modal-topitem.selected {
    border-color: #e75b1e;
    background: #fff5f0;
}
.delivery-modal-topitem-name {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}
.delivery-modal-topitem-price {
    font-size: 13px;
    color: #e75b1e;
    font-weight: 600;
}

/* Topping summary */
.delivery-modal-topping-summary {
    margin-top: 15px;
    padding: 12px;
    background: #fef5f0;
    border: 1px solid #fde0d0;
    border-radius: 8px;
}
.delivery-modal-topping-summary h5 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #e75b1e;
    margin: 0 0 8px;
    text-transform: uppercase;
}
.delivery-modal-topping-sumlist {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.delivery-modal-topping-sumrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #555;
}
.delivery-modal-topping-sumrow .sum-name {
    flex: 1;
}
.delivery-modal-topping-sumrow .sum-price {
    color: #e75b1e;
    font-weight: 600;
}
.delivery-modal-topping-sumrow .sum-remove {
    margin-left: 8px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #888;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s;
    flex-shrink: 0;
}
.delivery-modal-topping-sumrow .sum-remove:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}
.delivery-modal-topping-sumtotal {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #fde0d0;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    color: #333;
}
.delivery-modal-topping-sumtotal .sum-total-price {
    color: #e75b1e;
}

/* Footer */
.delivery-modal-footer {
    display: flex;
    gap: 12px;
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
}
.delivery-modal-btn-cancel {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.delivery-modal-btn-cancel:hover {
    background: #f5f5f5;
}
.delivery-modal-btn-add {
    flex: 2;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #e75b1e;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.delivery-modal-btn-add:hover {
    background: #d14e15;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1199px) {
    .delivery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 991px) {
    .delivery-sidebar {
        position: static;
        margin-bottom: 20px;
    }
    .delivery-categories {
        flex-direction: row;
        flex-wrap: wrap;
        max-height: none;
    }
    .delivery-cat-btn {
        width: auto;
        display: inline-block;
    }
    .delivery-hero h1 {
        font-size: 36px;
    }
    .delivery-cart-panel {
        width: 320px;
    }
}
@media (max-width: 600px) {
    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    /* Tarjeta horizontal en móvil */
    .delivery-card {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        min-height: 110px;
    }
    .delivery-card-img {
        width: 130px;
        height: 130px;
        flex-shrink: 0;
        border-radius: 8px 0 0 8px;
        object-fit: cover;
        cursor: pointer;
    }
    .delivery-card-placeholder {
        width: 130px;
        height: 130px;
        flex-shrink: 0;
        border-radius: 8px 0 0 8px;
        cursor: pointer;
    }
    .delivery-card-placeholder i {
        font-size: 42px;
    }
    .delivery-card-body {
        flex: 1;
        padding: 10px 10px 10px 12px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-width: 0;
    }
    .delivery-card-cat {
        font-size: 11px;
        margin-bottom: 3px;
    }
    .delivery-card-name {
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 2px;
        line-height: 1.2;
    }
    .delivery-card-pres {
        font-size: 13px;
        margin-bottom: 8px;
    }
    .delivery-card-footer {
        align-items: center;
    }
    .delivery-card-price {
        font-size: 16px;
    }
    .delivery-add-btn {
        width: 34px;
        height: 34px;
        font-size: 17px;
    }
    .delivery-detail-btn {
        width: 34px;
        height: 34px;
        font-size: 17px;
    }
    .delivery-card-fav {
        top: 6px;
        right: 6px;
        font-size: 9px;
        padding: 2px 5px;
    }
    .delivery-hero {
        padding: 120px 0 40px;
    }
    .delivery-hero h1 {
        font-size: 28px;
    }
    .delivery-cart-panel {
        width: 100%;
        right: -100%;
    }
    .delivery-cart-float {
        bottom: 20px;
        right: 20px;
    }
    .delivery-modal {
        width: 95vw;
        max-height: 90vh;
    }
    .delivery-modal-section-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    .delivery-modal-search input {
        width: 100%;
    }
}

/* =============================================
   CHECKOUT PAGE
   ============================================= */
.checkout-main {
    padding: 30px 0 60px;
    background: #f5f5f5;
    min-height: 60vh;
}
.checkout-card {
    background: #fff;
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.checkout-section-title {
    color: #d4894a;
    font-family: 'nautilus_pompiliusregular', serif;
    font-size: 22px;
    margin-bottom: 10px;
}
.checkout-section-title i {
    margin-right: 8px;
}
.checkout-welcome h4 {
    font-family: 'nautilus_pompiliusregular', serif;
    color: #333;
    margin-bottom: 5px;
}
.checkout-welcome h6 {
    color: #666;
    font-weight: 400;
    margin-bottom: 8px;
}
.checkout-option {
    border: 2px solid #ddd;
    border-radius: 6px;
    padding: 15px 10px;
    cursor: pointer;
    transition: border-color 0.3s;
    text-align: center;
    height: 100%;
}
.checkout-option.active {
    border-color: #e75b1e;
}
.checkout-option i {
    color: #666;
}
.checkout-option.active i {
    color: #e75b1e;
}
.checkout-option label {
    cursor: pointer;
    margin-top: 8px;
    display: block;
    font-size: 13px;
}

/* Buttons */
.btn-checkout-green {
    display: block;
    width: 100%;
    padding: 12px;
    background: #e75b1e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-checkout-green:hover {
    background: #cf4e17;
    color: #fff;
    text-decoration: none;
}
.btn-checkout-green:disabled {
    background: #999;
    cursor: not-allowed;
}
.btn-checkout-outline {
    display: block;
    width: 100%;
    padding: 12px;
    background: #fff;
    color: #666;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background 0.3s;
}
.btn-checkout-outline:hover {
    background: #f5f5f5;
}

/* Summary */
.checkout-summary-sticky {
    position: sticky;
    top: 80px;
}
.checkout-summary {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    overflow: hidden;
}
.checkout-summary-header {
    background: #e75b1e !important;
    color: #fff !important;
    padding: 14px 20px;
    text-align: center;
}
.checkout-summary-header h5 {
    margin: 0;
    padding: 0;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff !important;
    line-height: 1;
}
.checkout-summary-body {
    padding: 10px 15px;
    max-height: 400px;
    overflow-y: auto;
}
.checkout-summary-empty {
    text-align: center;
    padding: 30px 20px;
    color: #999;
}
.checkout-summary-empty i {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}
.checkout-summary-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    font-size: 16px;
}
.checkout-summary-footer strong {
    color: #e75b1e;
    font-size: 20px;
}

/* Summary Items */
.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.checkout-item:last-child {
    border-bottom: none;
}
.checkout-item-left {
    display: flex;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
}
.checkout-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
    margin-left: 10px;
}
.checkout-item-qty {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 12px;
    min-width: 28px;
}
.checkout-item-qty span {
    font-weight: 600;
    color: #e75b1e;
    font-size: 14px;
}
.checkout-qty-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 2px;
    font-size: 10px;
    line-height: 1;
}
.checkout-qty-btn:hover {
    color: #333;
}
.checkout-item-info {
    flex: 1;
    font-size: 13px;
    min-width: 0;
}
.checkout-item-info strong {
    display: block;
    margin-bottom: 2px;
    font-size: 13px;
}
.checkout-item-uprice {
    color: #999;
    font-size: 12px;
}
.checkout-item-extras {
    color: #888;
    font-size: 11px;
    margin-top: 3px;
}
.checkout-item-extras i {
    color: #e75b1e;
    margin-right: 3px;
}
.checkout-item-price {
    font-weight: 600;
    font-size: 14px;
    text-align: right;
}
.checkout-item-btns {
    display: flex;
    gap: 6px;
}
.checkout-btn-edit,
.checkout-btn-delete {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s;
    padding: 0;
    color: #888;
}
.checkout-btn-edit:hover {
    border-color: #e75b1e;
    color: #e75b1e;
}
.checkout-btn-delete:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}

/* Form controls */
.checkout-card .form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
}
.checkout-card .form-control:focus {
    border-color: #e75b1e;
    outline: none;
    box-shadow: 0 0 0 2px rgba(231,91,30,0.15);
}
.checkout-card label {
    font-size: 13px;
    color: #d4894a;
    font-weight: 600;
    margin-bottom: 4px;
}

/* Back link */
.checkout-back-link {
    color: #e75b1e;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}
.checkout-back-link:hover {
    color: #cf4e17;
    text-decoration: none;
}
.checkout-back-link i {
    margin-right: 5px;
}

/* Cart count badge */
.checkout-cart-count {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.85;
}

/* Topping detail lines */
.checkout-item-toppings {
    margin-top: 3px;
    padding-left: 2px;
}
.checkout-item-toppings i {
    color: #e75b1e;
    margin-right: 3px;
}
.checkout-topping-line {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #888;
    line-height: 1.6;
}
.checkout-topping-price {
    margin-left: 10px;
    white-space: nowrap;
}
.checkout-topping-total {
    border-top: 1px dashed #ddd;
    margin-top: 2px;
    padding-top: 2px;
    color: #555;
}

/* Payment buttons grid */
.checkout-pagos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.checkout-pago-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 60px;
    border: 2px solid #ddd;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    padding: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.checkout-pago-btn:hover {
    border-color: #e75b1e;
}
.checkout-pago-btn.active {
    border-color: #e75b1e;
    box-shadow: 0 0 0 2px rgba(231,91,30,0.25);
}
.checkout-pago-btn img {
    max-width: 80px;
    max-height: 45px;
    object-fit: contain;
}
.checkout-pago-color {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.checkout-pago-color.active {
    box-shadow: 0 0 0 3px rgba(231,91,30,0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .checkout-main {
        padding: 15px 0 40px;
    }
    .checkout-card {
        padding: 20px 15px;
    }
    .checkout-summary-sticky {
        position: static;
        margin-top: 20px;
    }
}

/* =============================================
   MIS PEDIDOS - NAVBAR ICON & BADGE
   ============================================= */
.nav-mispedidos > a {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
}
.nav-mispedidos > a i {
    font-size: 18px;
}
.nav-mispedidos-label {
    font-size: 13px;
    font-weight: 600;
}
.badge-pedidos {
    display: none;
}
.badge-pedidos.show {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: #e75b1e;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    min-width: 17px;
    height: 17px;
    border-radius: 9px;
    padding: 0 4px;
    line-height: 1;
    vertical-align: middle;
}

/* =============================================
   PWA INSTALL BUTTON
   ============================================= */
#pwa-install-li > a {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    padding: 5px 12px !important;
    margin: 13px 0 13px 6px;
    border: 1.5px solid currentColor;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .3px;
    white-space: nowrap;
    opacity: .85;
    transition: opacity .2s, background .2s;
}
#pwa-install-li > a:hover {
    opacity: 1;
    background: rgba(255,255,255,.12);
}
#pwa-install-li > a i {
    font-size: 13px;
}
.pwa-install-label {
    display: inline;
}
@media (max-width: 767px) {
    #pwa-install-li > a {
        margin: 6px 15px;
        display: flex !important;
        justify-content: center;
        border-radius: 20px;
        padding: 7px 16px !important;
    }
}

/* =============================================
   MIS PEDIDOS PAGE
   ============================================= */
.mispedidos-main {
    padding: 40px 0 60px;
    min-height: 60vh;
    background: #f5f5f5;
}

/* Login centered */
.mp-login-wrap {
    max-width: 420px;
    margin: 0 auto;
}
.mp-login-wrap .checkout-card {
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-radius: 8px;
}

/* Welcome bar */
.mp-welcome {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 15px;
}
.mp-welcome i {
    margin-right: 6px;
    color: #e75b1e;
}
.mp-welcome-total {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

/* Tabs */
.mp-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
}
.mp-tab {
    background: none;
    border: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}
.mp-tab:hover {
    color: #e75b1e;
}
.mp-tab.active {
    color: #e75b1e;
    border-bottom-color: #e75b1e;
}
.mp-tab-badge {
    background: #e75b1e;
    color: #fff;
    font-size: 11px;
    padding: 1px 7px;
    border-radius: 10px;
    margin-left: 6px;
}
.mp-tab-badge:empty {
    display: none;
}

/* Order cards */
.mp-order-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s;
}
.mp-order-card:hover {
    border-color: #e75b1e;
    box-shadow: 0 2px 8px rgba(231,91,30,0.12);
}
.mp-order-nro {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}
.mp-order-fecha {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}
.mp-order-fecha i {
    margin-right: 3px;
}
.mp-order-right {
    text-align: right;
}
.mp-order-total {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}
.mp-status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}
.mp-status-badge i {
    margin-right: 4px;
}
.mp-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 6px;
}
.mp-badge-delivery {
    background: #e8f5e9;
    color: #2e7d32;
}
.mp-badge-pickup {
    background: #e3f2fd;
    color: #1565c0;
}
.mp-order-docs {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.mp-doc-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.15s;
}
.mp-doc-link:hover {
    text-decoration: none;
    transform: translateY(-1px);
}
.mp-doc-pdf {
    background: #fdecea;
    color: #c62828;
    border-color: #f5c6c4;
}
.mp-doc-pdf:hover { background: #f8d2cf; color: #b71c1c; }
.mp-doc-xml {
    background: #e3f2fd;
    color: #1565c0;
    border-color: #bbdefb;
}
.mp-doc-xml:hover { background: #bbdefb; color: #0d47a1; }
.mp-doc-cdr {
    background: #e8f5e9;
    color: #2e7d32;
    border-color: #c8e6c9;
}
.mp-doc-cdr:hover { background: #c8e6c9; color: #1b5e20; }

/* =============================================
   MIS PEDIDOS MODAL
   ============================================= */
.mp-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}
.mp-modal-overlay.show { display: block; }

.mp-modal {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
}
.mp-modal.show { display: block; }

.mp-modal-content {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}
.mp-modal-fixed-top {
    flex-shrink: 0;
}
.mp-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #e75b1e;
    color: #fff;
}
.mp-modal-header h4 {
    margin: 0;
    font-size: 16px;
    color: #fff;
}
.mp-modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}
.mp-modal-body {
    padding: 12px 20px 20px;
    overflow-y: auto;
    flex: 1;
}

/* Status stepper */
.mp-stepper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 24px;
    padding: 10px 0;
}
.mp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 70px;
}
.mp-step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s;
}
.mp-step.active .mp-step-circle {
    background: #e75b1e;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(231,91,30,0.2);
}
.mp-step.completed .mp-step-circle {
    background: #28a745;
    color: #fff;
}
.mp-step-label {
    font-size: 11px;
    color: #999;
    margin-top: 6px;
    line-height: 1.2;
}
.mp-step.active .mp-step-label,
.mp-step.completed .mp-step-label {
    color: #333;
    font-weight: 600;
}
.mp-step-time {
    font-size: 10px;
    color: #888;
    margin-top: 2px;
}
.mp-step-line {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    margin-top: 18px;
    min-width: 20px;
}
.mp-step-line.active {
    background: #28a745;
}

/* Fixed top stepper padding */
.mp-modal-fixed-top .mp-stepper {
    padding: 10px 20px 5px;
    margin-bottom: 0;
    background: #fff;
}

/* Repeat order banner */
.mp-repeat-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff8f0;
    border: 1px dashed #e75b1e;
    border-radius: 6px;
    padding: 10px 14px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #555;
}
.mp-repeat-banner i {
    color: #e75b1e;
    font-size: 16px;
    flex-shrink: 0;
}
.mp-repeat-banner span {
    flex: 1;
}
.mp-repeat-btn {
    background: #e75b1e;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.mp-repeat-btn:hover {
    background: #c94e18;
}

/* Order info */
.mp-order-info {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 16px;
}
.mp-info-row {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    font-size: 13px;
}
.mp-info-row span {
    color: #888;
}
.mp-info-total {
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid #eee;
    font-size: 14px;
}
.mp-info-total span {
    color: #333;
    font-weight: 600;
}
.mp-info-total strong {
    color: #e75b1e;
    font-size: 15px;
}

/* Products list */
.mp-products-header {
    background: #e75b1e;
    color: #fff;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px 4px 0 0;
}
.mp-products-list {
    padding: 0;
}
.mp-prod-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
}
.mp-prod-info {
    flex: 1;
}
.mp-prod-name {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
}
.mp-prod-pres {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}
.mp-prod-notas {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}
.mp-prod-notas i {
    color: #e75b1e;
    margin-right: 3px;
}
.mp-prod-toppings {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}
.mp-prod-toppings i {
    color: #28a745;
    margin-right: 3px;
}
.mp-prod-price {
    font-size: 14px;
    font-weight: 700;
    color: #e75b1e;
    margin-top: 6px;
}
.mp-prod-qty {
    background: #f5f5f5;
    color: #333;
    font-weight: 700;
    font-size: 14px;
    min-width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 4px;
    margin-left: 12px;
    flex-shrink: 0;
}
.mp-total {
    padding: 10px 16px;
    font-size: 13px;
    color: #555;
    border-top: 2px solid #eee;
}
.mp-total-row {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
}
.mp-total-final {
    font-size: 15px;
    color: #333;
    padding-top: 6px;
    margin-top: 4px;
    border-top: 1px solid #eee;
}

/* Load more button */
.mp-btn-load-more {
    background: #fff;
    border: 2px solid #e75b1e;
    color: #e75b1e;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.mp-btn-load-more:hover {
    background: #e75b1e;
    color: #fff;
}


/* =============================================
   MIS PEDIDOS RESPONSIVE
   ============================================= */
@media (max-width: 767px) {
    .mp-order-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .mp-order-right {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        justify-content: space-between;
    }
    .mp-stepper {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    .mp-step {
        min-width: 60px;
    }
    .mp-welcome {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .mp-modal {
        width: 95%;
    }
}

/* =============================================
   PRODUCT DETAIL MODAL
   ============================================= */
.delivery-card-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}
.delivery-detail-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #e75b1e;
    background: transparent;
    color: #e75b1e;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    line-height: 1;
    flex-shrink: 0;
}
.delivery-detail-btn:hover {
    background: #e75b1e;
    color: #fff;
}
.detail-modal-content {
    max-width: 650px;
}
.detail-modal-body {
    padding: 0 !important;
}
.detail-modal-layout {
    display: flex;
    gap: 0;
}
.detail-modal-img-wrap {
    flex: 0 0 45%;
    max-width: 45%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
    overflow: hidden;
    min-height: 200px;
    position: relative;
}
.detail-modal-img-wrap::after {
    content: '\f002';
    font-family: 'Font Awesome 5 Free', 'FontAwesome';
    font-weight: 900;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    color: #fff;
    font-size: 32px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.detail-modal-img-wrap:hover::after {
    opacity: 1;
}
.detail-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.detail-modal-img-wrap:hover .detail-modal-img {
    transform: scale(1.05);
}
.detail-modal-info {
    flex: 1;
    padding: 20px;
}
.detail-modal-table {
    width: 100%;
    border-collapse: collapse;
}
.detail-modal-table td {
    padding: 10px 4px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    vertical-align: top;
}
.detail-modal-table tr:last-child td {
    border-bottom: none;
}
.detail-label {
    font-weight: 600;
    color: #555;
    width: 110px;
    white-space: nowrap;
}
.detail-modal-table td:last-child {
    color: #333;
    text-align: right;
}
#img-zoom-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,.85);
    z-index: 100000;
    cursor: zoom-out;
    justify-content: center;
    align-items: center;
}
@media (max-width: 576px) {
    .detail-modal-layout {
        flex-direction: column;
    }
    .detail-modal-img-wrap {
        flex: none;
        max-width: 100%;
        max-height: 250px;
    }
    .detail-modal-info {
        padding: 15px;
    }
    .detail-label {
        width: 90px;
    }
    .detail-modal-content {
        width: 100%;
    }
}
