* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #fffaf5;
    color: #222;
}

a {
    text-decoration: none;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    position: relative;
    background: linear-gradient(135deg, #111, #2b2b2b);
    color: white;
    padding: 60px 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.65), rgba(0,0,0,.35));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.logo-box {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 18px;
    padding: 25px;
    min-width: 260px;
}

.logo-box h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero-text {
    max-width: 500px;
}

.hero-text h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.hero-text p {
    margin-bottom: 20px;
    color: #f5d7c0;
}

.btn-primary,
.btn-secondary,
.btn-light {
    display: inline-block;
    border: none;
    border-radius: 12px;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #ff6b00;
    color: white;
}

.btn-secondary {
    background: #222;
    color: white;
}

.btn-light {
    background: #f1f1f1;
    color: #222;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 25px 0 10px;
}

.category-btn {
    border: none;
    background: white;
    padding: 10px 16px;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 5px 16px rgba(0,0,0,.08);
}

.category-btn.active {
    background: #ff6b00;
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    padding: 25px 0 90px;
}

.product-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.product-image {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: #ffe5d1;
}

.product-info {
    padding: 18px;
}

.product-info h3 {
    margin-bottom: 8px;
}

.product-info p {
    color: #666;
    margin-bottom: 14px;
    min-height: 42px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.product-footer span {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff6b00;
}

.floating-cart {
    position: fixed;
    bottom: 18px;
    right: 18px;
}

.floating-cart a {
    display: inline-block;
    background: #ff6b00;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,.2);
}

.simple-page {
    padding: 50px 0;
}

.simple-page h1 {
    margin-bottom: 25px;
}

.cart-box,
.order-form,
.login-box {
    background: white;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.cart-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.cart-row.total {
    font-size: 1.2rem;
    font-weight: bold;
}

.cart-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.order-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.full {
    width: 100%;
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #111, #2b2b2b);
    padding: 20px;
}

.login-box {
    width: 100%;
    max-width: 380px;
}

.login-box h1 {
    margin-bottom: 8px;
}

.login-box p {
    margin-bottom: 20px;
    color: #666;
}

.login-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.orders-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.order-column {
    background: #fff;
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

.order-column h2 {
    margin-bottom: 15px;
}

.order-card {
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 15px;
    color: #222;
}

.order-card h3 {
    margin-bottom: 10px;
}

.order-card p {
    margin-bottom: 8px;
}

.order-card.new {
    background: #ffe9d9;
}

.order-card.preparing {
    background: #fff5cc;
}

.order-card.ready {
    background: #dcfce7;
}
.cart-product {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.cart-product-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-product-info small {
    color: #777;
}

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-quantity button {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #222;
    color: white;
    cursor: pointer;
    font-size: 18px;
}

.cart-quantity span {
    min-width: 22px;
    text-align: center;
    font-weight: bold;
}

.cart-subtotal {
    min-width: 65px;
    text-align: right;
}

.cart-remove {
    border: none;
    background: transparent;
    color: #c0392b;
    cursor: pointer;
}

.empty-cart {
    text-align: center;
    padding: 30px;
}

@media (max-width: 650px) {

    .cart-product {
        grid-template-columns: 1fr auto;
    }

    .cart-subtotal {
        text-align: left;
    }

}
.checkout-layout {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 25px;
    align-items: start;
}

.delivery-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 22px;
}

.delivery-option input {
    display: none;
}

.delivery-option span {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 18px;
    border: 2px solid #eee;
    border-radius: 14px;
    cursor: pointer;
}

.delivery-option input:checked + span {
    border-color: #ff6b00;
    background: #fff3e9;
}

.delivery-option strong {
    font-size: 16px;
}

.delivery-option small {
    color: #777;
}

.checkout-summary {
    background: white;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.checkout-summary h2 {
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 22px;
    font-weight: bold;
    padding-top: 18px;
}

.form-error {
    background: #ffe0e0;
    color: #a40000;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 18px;
}

.order-success {
    max-width: 600px;
    margin: 60px auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.order-number {
    font-size: 38px;
    font-weight: bold;
    margin: 15px 0 25px;
}

.order-time {
    font-size: 28px;
    font-weight: bold;
    color: #ff6b00;
    margin: 10px 0 30px;
}

@media (max-width: 750px) {

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .delivery-options {
        grid-template-columns: 1fr;
    }

}
.admin-orders-container {
    width: 96%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 35px 0;
}

.orders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.orders-header h1 {
    font-size: 32px;
    margin-bottom: 5px;
}

.orders-header p {
    color: #777;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.live-indicator span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
}

.orders-board {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    gap: 18px;
    align-items: start;
}

.order-column {
    background: #f4f4f4;
    border-radius: 18px;
    padding: 15px;
    min-height: 300px;
}

.column-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.column-title h2 {
    font-size: 20px;
}

.column-title span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #222;
    color: white;
    font-weight: bold;
}

.empty-column {
    padding: 30px 10px;
    text-align: center;
    color: #999;
}

.real-order-card {
    background: white;
    border-radius: 15px;
    padding: 16px;
    margin-bottom: 15px;
    box-shadow: 0 6px 16px rgba(0,0,0,.08);
    border: 2px solid transparent;
}

.order-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.order-id {
    font-size: 22px;
}

.delivery-badge {
    font-size: 13px;
    background: #f1f1f1;
    padding: 6px 9px;
    border-radius: 20px;
}

.commitment-time {
    background: #fff3e9;
    color: #b84c00;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.commitment-time strong {
    font-size: 18px;
}

.customer-data {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.customer-data span {
    color: #666;
    font-size: 14px;
}

.order-items {
    padding: 12px 0;
}

.order-item {
    padding: 4px 0;
}

.delivery-address {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px;
    background: #f7f7f7;
    border-radius: 10px;
    margin-bottom: 10px;
}

.delivery-address small {
    color: #666;
    margin-top: 4px;
}

.order-notes {
    background: #fff8d8;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid #eee;
}

.order-total-row strong {
    font-size: 21px;
}

.order-action-button {
    width: 100%;
    border: none;
    border-radius: 11px;
    padding: 13px;
    background: #222;
    color: white;
    cursor: pointer;
    font-size: 15px;
}

.order-action-button:hover {
    background: #000;
}


/* TIEMPOS */

.real-order-card.order-warning {
    border-color: #f59e0b;
}

.real-order-card.order-urgent {
    border-color: #ef4444;
}

.real-order-card.order-late {
    border-color: #dc2626;
    background: #fff1f1;
}


/* RESPONSIVE */

@media (max-width: 1150px) {

    .orders-board {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 650px) {

    .orders-board {
        grid-template-columns: 1fr;
    }

    .orders-header {
        align-items: flex-start;
        flex-direction: column;
    }

}
/* =====================================================
   PANEL DE PEDIDOS
===================================================== */

.admin-orders-container {
    width: 96%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 35px 0;
}

.orders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.orders-header h1 {
    font-size: 32px;
    margin-bottom: 5px;
}

.orders-header p {
    color: #777;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.live-indicator span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
}

.orders-board {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    gap: 18px;
    align-items: start;
}

.order-column {
    background: #f4f4f4;
    border-radius: 18px;
    padding: 15px;
    min-height: 300px;
    box-shadow: none;
}

.column-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.column-title h2 {
    font-size: 20px;
}

.column-title span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    border-radius: 50px;
    background: #222;
    color: white;
    font-weight: bold;
}

.empty-column {
    padding: 30px 10px;
    text-align: center;
    color: #999;
}

.real-order-card {
    background: white;
    border-radius: 15px;
    padding: 16px;
    margin-bottom: 15px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
    border: 2px solid transparent;
}

.order-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.order-id {
    font-size: 22px;
}

.delivery-badge {
    font-size: 13px;
    background: #f1f1f1;
    padding: 6px 9px;
    border-radius: 20px;
}

.commitment-time {
    background: #fff3e9;
    color: #b84c00;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.commitment-time strong {
    font-size: 18px;
}

.customer-data {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.customer-data span {
    color: #666;
    font-size: 14px;
}

.order-items {
    padding: 12px 0;
}

.order-item {
    padding: 4px 0;
}

.delivery-address {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px;
    background: #f7f7f7;
    border-radius: 10px;
    margin-bottom: 10px;
}

.delivery-address small {
    color: #666;
    margin-top: 4px;
}

.order-notes {
    background: #fff8d8;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid #eee;
}

.order-total-row strong {
    font-size: 21px;
}

.order-action-button {
    width: 100%;
    border: none;
    border-radius: 11px;
    padding: 13px;
    background: #222;
    color: white;
    cursor: pointer;
    font-size: 15px;
}

.order-action-button:hover {
    background: #000;
}


/* AVISOS POR TIEMPO */

.real-order-card.order-warning {
    border-color: #f59e0b;
}

.real-order-card.order-urgent {
    border-color: #ef4444;
}

.real-order-card.order-late {
    border-color: #dc2626;
    background: #fff1f1;
}


/* RESPONSIVE */

@media (max-width: 1150px) {

    .orders-board {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 650px) {

    .orders-board {
        grid-template-columns: 1fr;
    }

    .orders-header {
        align-items: flex-start;
        flex-direction: column;
    }

}
/* =====================================================
   ADMINISTRACIÓN DE PRODUCTOS
===================================================== */

.admin-products-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 35px 0;
}

.admin-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.admin-products-header h1 {
    font-size: 32px;
    margin-bottom: 5px;
}

.admin-products-header p {
    color: #777;
}

.admin-nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

.admin-nav a {
    padding: 10px 14px;
    border-radius: 10px;
    color: #444;
    background: white;
}

.admin-nav a.active {
    background: #ff6b00;
    color: white;
}

.admin-products-grid {
    display: grid;
    gap: 15px;
}

.admin-product-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    box-shadow: 0 7px 18px rgba(0,0,0,.07);
}

.admin-product-card.product-disabled {
    opacity: .55;
}

.admin-product-info {
    flex: 1;
}

.admin-product-category {
    display: inline-block;
    font-size: 12px;
    color: #777;
    margin-bottom: 5px;
}

.admin-product-info h2 {
    margin-bottom: 5px;
    font-size: 20px;
}

.admin-product-info p {
    color: #777;
    margin-bottom: 8px;
}

.admin-product-price {
    color: #ff6b00;
    font-size: 19px;
}

.admin-product-status {
    min-width: 170px;
    text-align: right;
}

.status-available,
.status-unavailable {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.status-available {
    color: #16a34a;
}

.status-unavailable {
    color: #dc2626;
}

.btn-disable-product,
.btn-enable-product {
    border: none;
    border-radius: 10px;
    padding: 11px 15px;
    cursor: pointer;
}

.btn-disable-product {
    background: #222;
    color: white;
}

.btn-enable-product {
    background: #ff6b00;
    color: white;
}

@media (max-width: 700px) {

    .admin-products-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-product-card {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-product-status {
        text-align: left;
    }

}
/* =====================================================
   CONFIGURACIÓN
===================================================== */

.config-card {
    background: white;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 7px 18px rgba(0,0,0,.07);
}

.config-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 22px 0;
    border-bottom: 1px solid #eee;
}

.config-field strong {
    font-size: 18px;
}

.config-field p {
    color: #777;
    margin-top: 5px;
}

.config-input {
    display: flex;
    align-items: center;
    gap: 8px;
}

.config-input input {
    width: 110px;
    padding: 11px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
}

.config-save {
    margin-top: 25px;
}

.config-success {
    background: #dcfce7;
    color: #166534;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 18px;
}

@media (max-width: 650px) {

    .config-field {
        flex-direction: column;
        align-items: flex-start;
    }

}
/* IMÁGENES REALES DE PRODUCTOS */

.product-image {
    height: 200px;
    overflow: hidden;
    background: #111;
}

.product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
/* =====================================================
   MAQUILLAJE DEMO - MENÚ SINWESO
===================================================== */

.hero-mariscos {
    min-height: 310px;
    padding: 35px 0;

    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(255,101,0,.28) 0%,
            rgba(255,101,0,.08) 25%,
            transparent 48%
        ),
        linear-gradient(
            135deg,
            #171411 0%,
            #211b17 50%,
            #0f0e0d 100%
        );

    background-size: cover;
    background-position: center;
}
.hero-mariscos .hero-overlay {
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.25),
            transparent
        );
}

.hero-mariscos .hero-content {
    min-height: 240px;
    display: grid;
    grid-template-columns: 360px 1fr;
    align-items: center;
    gap: 60px;
}

.hero-brand {
    display: flex;
    align-items: center;
}

.hero-brand-card {
    min-width: 280px;
    max-width: 320px;
    padding: 34px 28px;
    border-radius: 26px;
    background: rgba(22, 22, 22, .72);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 20px 45px rgba(0,0,0,.32);
    backdrop-filter: blur(8px);
}

.hero-brand-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 14px;
}

.hero-brand-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,.82);
}

.hero-kicker {
    display: inline-block;
    color: #ff7a00;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.hero-mariscos .hero-text {
    max-width: 620px;
}

.hero-mariscos .hero-text h2 {
    font-size: clamp(38px, 4.5vw, 66px);
    line-height: .98;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.hero-mariscos .hero-text h2 span {
    display: block;
    color: #ff6500;
    font-style: italic;
}

.hero-mariscos .hero-text p {
    font-size: 18px;
    color: rgba(255,255,255,.82);
}

.hero-button {
    font-weight: 700;
    padding: 14px 24px;
    box-shadow: 0 10px 25px rgba(255,107,0,.25);
}


/* CATEGORÍAS */

.categories {
    padding-top: 28px;
    padding-bottom: 15px;
    gap: 10px;
}

.category-btn {
    font-weight: 600;
    border: 1px solid rgba(0,0,0,.04);
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.category-btn.active {
    box-shadow: 0 8px 20px rgba(255,107,0,.23);
}


/* PRODUCTOS */

.products-grid {
    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.product-card {
    border-radius: 20px;
    transition:
        transform .22s ease,
        box-shadow .22s ease;
    border: 1px solid rgba(0,0,0,.035);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 38px rgba(0,0,0,.14);
}

.product-image {
    height: 220px;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 20px;
    line-height: 1.2;
}

.product-info p {
    color: #777;
    line-height: 1.45;
}

.product-footer {
    margin-top: 15px;
}

.product-footer span {
    font-size: 23px;
    font-weight: 800;
}

.product-footer .btn-secondary {
    background: #ff6500;
    padding: 11px 19px;
    font-weight: 700;
    transition:
        transform .2s ease,
        background .2s ease;
}

.product-footer .btn-secondary:hover {
    background: #e75b00;
    transform: scale(1.03);
}


/* CARRITO FLOTANTE */

.floating-cart a {
    font-weight: 700;
    padding: 15px 23px;
    box-shadow:
        0 12px 30px rgba(255,107,0,.32);
}


/* MÓVIL */

@media (max-width: 850px) {

    .hero-mariscos .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .hero-brand {
        justify-content: center;
    }

    .hero-logo {
        width: 210px;
    }

    .hero-mariscos .hero-text {
        margin: 0 auto;
    }

    .hero-mariscos .hero-text h2 {
        font-size: 40px;
    }

}
@media (max-width: 850px) {

    .hero-brand-card {
        min-width: auto;
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }

}
/* LOGO SINWESO DEMO */

.hero-logo-new {
    width: 330px;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,.45));
}

@media (max-width: 850px) {

    .hero-logo-new {
        width: 260px;
        margin: 0 auto;
    }

}
/* AJUSTE FINAL LOGO HERO */

.hero-mariscos .hero-content {
    grid-template-columns: 300px 1fr;
    gap: 70px;
}

.hero-brand {
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-new {
    width: 280px !important;
    max-width: 280px !important;
    height: auto !important;
    max-height: 230px;
    object-fit: contain;
    display: block;
}

.hero-mariscos .hero-text {
    position: relative;
    z-index: 3;
}

@media (max-width: 850px) {

    .hero-mariscos .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-brand {
        width: 100%;
    }

    .hero-logo-new {
        width: 220px !important;
        max-width: 220px !important;
        max-height: 190px;
        margin: 0 auto;
    }
}
/* =====================================================
   AJUSTE VISUAL DEMO - VERSION MAS PREMIUM
===================================================== */

/* FONDO GENERAL */
body {
    background:
        radial-gradient(circle at 20% 20%, rgba(255,110,0,.10), transparent 22%),
        radial-gradient(circle at 80% 25%, rgba(255,90,0,.08), transparent 18%),
        linear-gradient(180deg, #101010 0%, #171717 35%, #1d1d1d 65%, #161616 100%);
    color: #fff;
}
/* HERO */
.hero-mariscos {
    min-height: 300px;
    padding: 28px 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.62) 45%,
            rgba(0,0,0,.20) 100%
        ),
        url('../img/palermo.png');

    background-size: cover;
    background-position: center center;
    box-shadow: inset 0 -30px 60px rgba(0,0,0,.35);
}
.hero-mariscos .hero-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(255,120,0,.06) 0%,
            rgba(0,0,0,.15) 100%
        );
}

.hero-mariscos .hero-text h2 {
    text-shadow: 0 10px 24px rgba(0,0,0,.35);
}

.hero-mariscos .hero-text p {
    color: rgba(255,255,255,.88);
}

.hero-logo-new {
    filter:
        drop-shadow(0 10px 18px rgba(0,0,0,.45))
        drop-shadow(0 0 18px rgba(255,110,0,.18));
}

/* CONTENEDOR DE MENU */
.container {
    position: relative;
    z-index: 2;
}

/* ZONA BAJA: PASTILLAS + PRODUCTOS */
.categories,
.products-grid {
    position: relative;
    z-index: 2;
}

.categories {
    margin-top: 12px;
    padding: 18px 0 16px;
}

.category-btn {
    background: rgba(255,255,255,.95);
    color: #222;
    border: 1px solid rgba(255,255,255,.7);
    box-shadow:
        0 8px 22px rgba(0,0,0,.20),
        0 0 18px rgba(255,255,255,.16);
    font-weight: 700;
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 25px rgba(0,0,0,.24),
        0 0 20px rgba(255,255,255,.22);
}

.category-btn.active {
    background: linear-gradient(180deg, #ff7a00 0%, #ff5e00 100%);
    color: white;
    box-shadow:
        0 10px 22px rgba(255,95,0,.35),
        0 0 20px rgba(255,120,0,.28);
}

/* TARJETAS */
.product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.55);
    box-shadow:
        0 12px 26px rgba(0,0,0,.28),
        0 0 20px rgba(255,255,255,.08);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 16px 34px rgba(0,0,0,.34),
        0 0 22px rgba(255,255,255,.12);
}

.product-image {
    background: #111;
}

.product-info {
    background: #fff;
}

.product-info h3 {
    color: #1f1f1f;
    font-weight: 800;
}

.product-info p {
    color: #777;
}

.product-footer span {
    color: #ff6200;
    font-weight: 900;
    text-shadow: 0 1px 0 rgba(255,255,255,.2);
}

.product-footer .btn-secondary {
    background: linear-gradient(180deg, #ff7a00 0%, #ff5a00 100%);
    color: #fff;
    border: none;
    box-shadow: 0 8px 18px rgba(255,100,0,.26);
}

.product-footer .btn-secondary:hover {
    background: linear-gradient(180deg, #ff8420 0%, #ff5a00 100%);
    transform: translateY(-1px);
}

/* BOTON HERO */
.hero-button,
.btn-primary {
    background: linear-gradient(180deg, #ff7a00 0%, #ff5b00 100%);
    color: white;
    box-shadow:
        0 10px 22px rgba(255,95,0,.30),
        0 0 18px rgba(255,110,0,.15);
}

.hero-button:hover,
.btn-primary:hover {
    transform: translateY(-1px);
}

/* CARRITO FLOTANTE */
.floating-cart a {
    background: linear-gradient(180deg, #ff7a00 0%, #ff5c00 100%);
    color: #fff;
    box-shadow:
        0 12px 26px rgba(255,95,0,.35),
        0 0 20px rgba(255,110,0,.18);
    font-weight: 800;
}

/* OPCIONAL: SI QUIERES QUE LA ZONA BAJA SE NOTE MAS OSCURA */
.products-grid {
    padding-bottom: 100px;
}

/* =====================================================
   CORRECCION TEXTO EN TARJETAS BLANCAS
===================================================== */

/* CARRITO */
.cart-box,
.cart-product,
.cart-product-info,
.cart-row {
    color: #222;
}

.cart-product-info strong {
    color: #222;
}

.cart-product-info small {
    color: #777;
}

.cart-quantity span {
    color: #222;
}


/* CHECKOUT */
.order-form,
.checkout-summary {
    color: #222;
}

.order-form label {
    color: #222;
}

.order-form input,
.order-form select,
.order-form textarea {
    color: #222;
    background: #fff;
}

.checkout-summary h2,
.summary-row,
.summary-total {
    color: #222;
}


/* PICKUP / DOMICILIO */
.delivery-option span {
    color: #222;
}

.delivery-option strong {
    color: #222;
}

.delivery-option small {
    color: #777;
}


/* CONFIRMACION */
.order-success {
    color: #222;
}

.order-success h1,
.order-success p,
.order-number {
    color: #222;
}

.order-time {
    color: #ff6500;
}

/* =====================================================
   CORRECCION PANEL ADMINISTRATIVO
===================================================== */

.admin-orders-container {
    color: #fff;
}

/* CABECERA */

.orders-header h1 {
    color: #fff;
}

.orders-header p {
    color: #aaa;
}

.live-indicator {
    color: #aaa;
}


/* COLUMNAS */

.order-column {
    background: #292929;
    border: 1px solid rgba(255,255,255,.06);
}

.column-title h2 {
    color: #fff;
}

.empty-column {
    color: #888;
}


/* TARJETAS DE PEDIDOS */

.real-order-card {
    background: #fff;
    color: #222;
}

.order-id {
    color: #222;
}

.delivery-badge {
    color: #333;
    background: #f2f2f2;
}

.customer-data strong {
    color: #222;
}

.customer-data span {
    color: #777;
}

.order-item,
.order-items {
    color: #222;
}

.order-total-row {
    color: #222;
}

.order-total-row strong {
    color: #222;
}

.delivery-address {
    color: #222;
}

.order-notes {
    color: #222;
}


/* BOTON */

.order-action-button {
    background: #202020;
    color: #fff;
}

.order-action-button:hover {
    background: #ff6500;
}
/* =====================================================
   AJUSTE FINAL COLOR PANEL ADMIN
===================================================== */

body {
    background:
        linear-gradient(
            180deg,
            #25211f 0%,
            #2c2825 45%,
            #24211f 100%
        );
}

.admin-orders-container {
    color: #222;
}

/* ENCABEZADO */

.orders-header h1 {
    color: #f7f7f7;
}

.orders-header p,
.live-indicator {
    color: #b8b3af;
}


/* COLUMNAS */

.order-column {
    background: #363230;
    border: 1px solid rgba(255,255,255,.07);
    box-shadow: 0 10px 24px rgba(0,0,0,.15);
}

.column-title h2 {
    color: #f5f5f5;
}

.column-title span {
    background: #ff6500;
    color: white;
}

.empty-column {
    color: #aaa39e;
}


/* TARJETAS */

.real-order-card {
    background: #ffffff;
    color: #222;
    box-shadow: 0 9px 22px rgba(0,0,0,.18);
}


/* BOTON PRINCIPAL */

.order-action-button {
    background: #292624;
    color: white;
}

.order-action-button:hover {
    background: #ff6500;
}
/* =====================================================
   CORRECCION BOTON CARRITO EN MOVIL
===================================================== */

.floating-cart {
    position: fixed !important;
    right: 18px !important;
    bottom: 18px !important;
    z-index: 99999 !important;
    pointer-events: auto !important;
}

.floating-cart a {
    position: relative;
    z-index: 99999;
    pointer-events: auto !important;
    touch-action: manipulation;
    cursor: pointer;
}

@media (max-width: 650px) {

    .floating-cart {
        right: 14px !important;
        bottom: 14px !important;
    }

    .floating-cart a {
        padding: 14px 19px;
    }

}
/* =====================================================
   COMPLEMENTOS ADMIN
===================================================== */

.complement-section {
    background: #fff;
    color: #222;
    padding: 26px;
    border-radius: 18px;
    margin-bottom: 25px;
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.complement-section h2 {
    margin-bottom: 5px;
}

.section-description {
    color: #777;
    margin-bottom: 22px;
}

.new-complement-form {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.new-complement-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.complement-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.complement-name-form {
    display: flex;
    gap: 10px;
    flex: 1;
}

.complement-name-form input {
    max-width: 350px;
    width: 100%;
    padding: 11px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.complement-status {
    display: flex;
    align-items: center;
    gap: 15px;
}

.status-available {
    color: #159447;
    font-weight: 700;
}

.status-unavailable {
    color: #c0392b;
    font-weight: 700;
}


/* REGLAS */

.rule-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: end;
    margin-bottom: 28px;
}

.rule-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
}

.rule-form input,
.rule-form select {
    width: 100%;
    padding: 11px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.rules-table {
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
}

.rules-header,
.rule-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr .7fr;
    gap: 15px;
    align-items: center;
    padding: 14px 18px;
}

.rules-header {
    background: #f4f4f4;
    font-weight: 700;
}

.rule-row {
    border-top: 1px solid #eee;
}

.rule-max {
    display: inline-flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    background: #fff1e7;
    color: #ff6500;
    border-radius: 50%;
    font-weight: 800;
}

.rule-delete {
    border: 0;
    background: transparent;
    color: #c0392b;
    cursor: pointer;
}


/* MOVIL */

@media (max-width: 800px) {

    .rule-form {
        grid-template-columns: 1fr;
    }

    .complement-row {
        flex-direction: column;
        align-items: stretch;
    }

    .complement-status {
        justify-content: space-between;
    }

}
/* =====================================================
   SELECTOR PUBLICO DE COMPLEMENTOS
===================================================== */

.complement-modal {
    position: fixed;
    inset: 0;
    z-index: 200000;
    background: rgba(0,0,0,.72);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.complement-modal.active {
    display: flex;
}

body.modal-open {
    overflow: hidden;
}

.complement-modal-box {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    color: #222;
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0 25px 70px rgba(0,0,0,.4);
}

.complement-modal-close {
    position: absolute;
    top: 12px;
    right: 15px;
    border: none;
    background: transparent;
    color: #777;
    font-size: 30px;
    cursor: pointer;
}

.complement-modal-label {
    display: block;
    color: #ff6500;
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 800;
    margin-bottom: 7px;
}

.complement-modal-box h2 {
    margin-bottom: 7px;
}

.complement-modal-box > p {
    color: #777;
    margin-bottom: 20px;
}

.public-complement-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}

.public-complement-option input {
    display: none;
}

.public-complement-option span {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px;
    border: 2px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: .18s ease;
}

.public-complement-option input:checked + span {
    background: #fff1e7;
    border-color: #ff6500;
    color: #d95400;
}

.complement-counter {
    background: #f6f6f6;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 18px;
    text-align: center;
}

.complement-counter strong {
    color: #ff6500;
}

@media (max-width: 550px) {

    .public-complement-list {
        grid-template-columns: 1fr;
    }

    .complement-modal-box {
        padding: 25px 20px;
    }

}
/* =====================================================
   SELECTOR PUBLICO DE COMPLEMENTOS
===================================================== */

.complement-modal {
    position: fixed;
    inset: 0;
    z-index: 200000;
    background: rgba(0,0,0,.72);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.complement-modal.active {
    display: flex;
}

body.modal-open {
    overflow: hidden;
}

.complement-modal-box {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    color: #222;
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0 25px 70px rgba(0,0,0,.4);
}

.complement-modal-close {
    position: absolute;
    top: 12px;
    right: 15px;
    border: none;
    background: transparent;
    color: #777;
    font-size: 30px;
    cursor: pointer;
}

.complement-modal-label {
    display: block;
    color: #ff6500;
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 800;
    margin-bottom: 7px;
}

.complement-modal-box h2 {
    margin-bottom: 7px;
}

.complement-modal-box > p {
    color: #777;
    margin-bottom: 20px;
}

.public-complement-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}

.public-complement-option input {
    display: none;
}

.public-complement-option span {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px;
    border: 2px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: .18s ease;
}

.public-complement-option input:checked + span {
    background: #fff1e7;
    border-color: #ff6500;
    color: #d95400;
}

.complement-counter {
    background: #f6f6f6;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 18px;
    text-align: center;
}

.complement-counter strong {
    color: #ff6500;
}

@media (max-width: 550px) {

    .public-complement-list {
        grid-template-columns: 1fr;
    }

    .complement-modal-box {
        padding: 25px 20px;
    }

}
/* COMPLEMENTOS EN CARRITO */

.cart-complements {
    margin: 6px 0;
    font-size: 13px;
    line-height: 1.5;
}

.cart-complements span {
    color: #777;
}

.cart-complements strong {
    color: #ff6500;
    font-weight: 700;
}
/* =====================================================
   COMPLEMENTOS EN CONFIRMACION
===================================================== */

.summary-product {
    margin-bottom: 14px;
}

.summary-complements {
    margin-top: 4px;
    padding-left: 4px;
    color: #777;
    font-size: 13px;
    line-height: 1.5;
}

.summary-complements strong {
    color: #ff6500;
    font-weight: 700;
}
/* =====================================================
   ADMINISTRACION COMPLETA DE PRODUCTOS
===================================================== */

.product-admin-form-box {
    background: #fff;
    color: #222;
    padding: 28px;
    border-radius: 20px;
    margin-bottom: 32px;
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

.product-form-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.product-form-heading h2 {
    margin: 0 0 5px;
}

.product-form-heading p {
    margin: 0;
    color: #777;
}

.product-admin-form {
    width: 100%;
}

.product-form-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-admin-form .form-group {
    margin: 0;
}

.product-admin-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 7px;
    color: #222;
}

.product-admin-form input,
.product-admin-form select,
.product-admin-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 13px;
    border: 1px solid #ddd;
    border-radius: 11px;
    background: #fff;
    color: #222;
    font: inherit;
}

.product-admin-form textarea {
    min-height: 95px;
    resize: vertical;
}

.product-description-field {
    grid-column: span 2;
}

.product-image-field {
    grid-column: span 2;
}

.product-field-help {
    display: block;
    color: #888;
    font-size: 12px;
    margin-top: 6px;
}

.product-form-actions {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.current-product-image {
    margin-top: 20px;
}

.current-product-image span {
    display: block;
    color: #777;
    font-size: 12px;
    margin-bottom: 8px;
}

.current-product-image img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #ddd;
}


/* LISTADO */

.products-section-title {
    color: #fff;
    margin-bottom: 18px;
}

.products-section-title h2 {
    margin: 0 0 4px;
}

.products-section-title p {
    margin: 0;
    opacity: .7;
}

.admin-product-image {
    height: 145px;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
    margin: -1px -1px 15px;
}

.admin-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-product-pieces {
    display: inline-block;
    margin: 3px 0 8px;
    padding: 4px 8px;
    background: #fff1e7;
    color: #d95400;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
}

.product-card-actions {
    display: flex;
    gap: 9px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-edit-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 9px;
    background: #f1f1f1;
    color: #222;
    text-decoration: none;
    font-weight: 600;
}

.btn-edit-product:hover {
    background: #e5e5e5;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .product-form-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 600px) {

    .product-form-grid {
        grid-template-columns: 1fr;
    }

    .product-description-field,
    .product-image-field {
        grid-column: auto;
    }

    .product-form-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-form-actions {
        flex-direction: column;
    }

}
.btn-delete-product {
    border: 0;
    padding: 10px 16px;
    border-radius: 9px;
    background: #fff0f0;
    color: #c62828;
    font-weight: 600;
    cursor: pointer;
}

.btn-delete-product:hover {
    background: #c62828;
    color: #fff;
}
.config-card {
    background: #f7f6f4;
    border-radius: 26px;
    padding: 28px;
}

.config-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 26px 0;
    border-bottom: 1px solid #e6e1dc;
}

.config-field:last-of-type {
    border-bottom: none;
}

.config-field-info {
    flex: 1;
    min-width: 260px;
}

.config-tag {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 106, 0, 0.12);
    color: #ff6a00;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.config-field-info strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 700;
    color: #1f1f1f;
}

.config-field-info p {
    margin: 0;
    color: #7a7a7a;
    line-height: 1.5;
}

.config-input {
    width: 220px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.config-input input[type="number"] {
    width: 110px;
    height: 48px;
    border: 1px solid #d9d2cb;
    border-radius: 14px;
    padding: 0 14px;
    font-size: 18px;
    background: #fff;
}

.config-input span {
    color: #666;
    font-weight: 600;
}

.config-input input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: #ff6a00;
}

.config-input textarea {
    width: 220px;
    min-height: 90px;
    border: 1px solid #d9d2cb;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.4;
    resize: vertical;
    background: #fff;
}

.config-save {
    margin-top: 20px;
}
/* =====================================================
   CONFIGURACIÓN - DISEÑO FINAL
===================================================== */

.config-card {
    padding: 24px;
}

.config-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: center;
    gap: 32px;
    padding: 22px 0;
    border-bottom: 1px solid #ece7e2;
}

.config-field-info {
    min-width: 0;
}

.config-tag {
    display: inline-block;
    margin-bottom: 7px;
    padding: 4px 9px;
    border-radius: 999px;
    background: #fff0e6;
    color: #ff6500;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
}

.config-field-info strong {
    display: block;
    margin-bottom: 5px;
    font-size: 17px;
    color: #222;
}

.config-field-info p {
    margin: 0;
    color: #777;
    line-height: 1.45;
}


/* COLUMNA DERECHA */

.config-control {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}


/* NÚMEROS */

.config-control input[type="number"] {
    width: 135px;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #ded8d2;
    border-radius: 10px;
    background: #fff;
    color: #222;
    font: inherit;
    box-sizing: border-box;
}


/* CHECKBOXES */

.config-check {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    cursor: pointer;
    font-weight: 600;
    color: #333;
}

.config-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #ff6500;
    cursor: pointer;
}


/* MENSAJE DE CIERRE */

.config-control textarea {
    width: 100%;
    min-height: 95px;
    padding: 12px 14px;
    border: 1px solid #ded8d2;
    border-radius: 10px;
    background: #fff;
    color: #222;
    font: inherit;
    line-height: 1.4;
    resize: vertical;
    box-sizing: border-box;
}


/* BOTÓN */

.config-save {
    margin-top: 24px;
}


/* =====================================================
   CONFIGURACIÓN - RESPONSIVE
===================================================== */

@media (max-width: 850px) {

    .config-field {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 20px 0;
    }

    .config-control {
        width: 100%;
    }

    .config-control textarea {
        width: 100%;
    }
}
/* =====================================================
   AVISO NEGOCIO CERRADO
===================================================== */

.business-closed-notice {
    margin: 28px 0 22px;
    padding: 18px 22px;
    border: 1px solid #ff6500;
    border-radius: 14px;
    background: #fff3eb;
}

.business-closed-notice strong {
    display: block;
    margin-bottom: 5px;
    color: #d94f00;
    font-size: 18px;
}

.business-closed-notice p {
    margin: 0;
    color: #4a403a;
    line-height: 1.5;
}
/* =====================================================
   CARRITO - NEGOCIO CERRADO
===================================================== */

.cart-closed-message {
    padding: 12px 16px;
    border: 1px solid #ff6500;
    border-radius: 10px;
    background: #fff3eb;
    color: #4a403a;
}

.cart-closed-message strong {
    display: block;
    margin-bottom: 3px;
    color: #d94f00;
}

.cart-closed-message span {
    font-size: 14px;
}
/* =====================================================
   MESA SELECCIONADA - CLIENTE
===================================================== */

input[name="mesa_id"] + div {
    transition: all .18s ease;
}

input[name="mesa_id"]:checked + div {
    border: 2px solid #ff6a00 !important;
    background: #4a260d !important;
    color: #ffffff !important;
    box-shadow:
        0 0 0 3px rgba(255, 106, 0, .15),
        0 0 18px rgba(255, 106, 0, .30);
    transform: translateY(-2px);
}

input[name="mesa_id"]:checked + div::after {
    content: "✓ SELECCIONADA";
    display: block;
    margin-top: 5px;
    font-size: 9px;
    font-weight: 900;
    color: #ffb47a;
}