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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    padding: 20px;
    color: #e0e0e0;
}

#app {
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo no canto superior esquerdo */
.app-logo {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1000;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.app-logo img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.app-logo:hover {
    opacity: 1;
}

/* Screens */
.screen {
    display: none;
}

.screen.active {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero */
.hero {
    text-align: center;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 50px 20px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.hero h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2em;
    color: #b0b0b0;
    font-weight: 300;
}

/* Cards */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.card {
    background: linear-gradient(135deg, #2d2d2d 0%, #252525 100%);
    border-radius: 16px;
    padding: 45px 35px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
    border-color: #D4AF37;
}

.card h3 {
    font-size: 1.8em;
    margin-bottom: 12px;
    color: #D4AF37;
    font-weight: 600;
}

.card p {
    font-size: 1em;
    color: #b0b0b0;
    font-weight: 300;
}

.card-green {
    border-color: rgba(212, 175, 55, 0.4);
}

.card-green:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
}

.card-green:hover h3,
.card-green:hover p {
    color: #1a1a1a;
    font-weight: 500;
}

.card-blue {
    border-color: rgba(212, 175, 55, 0.4);
}

.card-blue:hover {
    background: linear-gradient(135deg, #C9A961 0%, #A88F3D 100%);
}

.card-blue:hover h3,
.card-blue:hover p {
    color: #1a1a1a;
    font-weight: 500;
}

.card-orange {
    border-color: rgba(212, 175, 55, 0.4);
}

.card-orange:hover {
    background: linear-gradient(135deg, #F4D03F 0%, #D4AF37 100%);
}

.card-orange:hover h3,
.card-orange:hover p {
    color: #1a1a1a;
    font-weight: 500;
}

/* Selection Cards */
.selection-container {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.selection-container h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #D4AF37;
    font-weight: 600;
}

.selection-container > p {
    font-size: 1.1em;
    color: #b0b0b0;
    margin-bottom: 40px;
}

.selection-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.selection-card {
    background: linear-gradient(135deg, #252525 0%, #1f1f1f 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 40px 25px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.selection-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
}

.selection-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #D4AF37;
    transition: color 0.4s;
}

.selection-card:hover h3 {
    color: #1a1a1a;
}

.selection-card p {
    color: #b0b0b0;
    transition: color 0.4s;
}

.selection-card:hover p {
    color: #1a1a1a;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-back, .btn-cart {
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.btn-back {
    background: transparent;
    color: #b0b0b0;
    border: 2px solid #444;
}

.btn-back:hover {
    background: rgba(255,255,255,0.05);
    border-color: #666;
    color: #D4AF37;
}

.btn-cart {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #1a1a1a;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Header */
.header {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.header h2 {
    color: #D4AF37;
    font-size: 1.8em;
    font-weight: 600;
}

.header-info .info-pedido {
    color: #b0b0b0;
    margin-top: 8px;
    font-size: 0.95em;
}

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

.product-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #252525 100%);
    border-radius: 12px;
    padding: 25px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.product-card h3 {
    color: #D4AF37;
    margin-bottom: 10px;
    font-size: 1.4em;
    font-weight: 600;
}

.product-card p {
    color: #b0b0b0;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.product-price {
    font-size: 1.5em;
    font-weight: 700;
    color: #F4D03F;
    margin: 15px 0;
}

.product-category {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85em;
    margin-bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #2d2d2d 0%, #252525 100%);
    padding: 35px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    animation: modalSlideIn 0.3s;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content h3 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}

.modal-content p {
    color: #b0b0b0;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.modal-buttons button {
    flex: 1;
    min-width: 120px;
}

/* Inputs */
.input-text, textarea, select {
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    font-size: 1em;
    margin-top: 8px;
    background: #1a1a1a;
    color: #e0e0e0;
    transition: all 0.3s;
}

.input-text:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

textarea {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
}

label {
    color: #D4AF37;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

/* Mesas Grid */
.mesas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.mesa-btn {
    background: linear-gradient(135deg, #252525 0%, #1f1f1f 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 25px 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1em;
    color: #D4AF37;
    font-weight: 600;
}

.mesa-btn:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #1a1a1a;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.mesa-btn.ocupada {
    background: #3d3d3d;
    color: #666;
    cursor: not-allowed;
    border-color: #444;
}

.mesa-btn.ocupada:hover {
    transform: none;
    box-shadow: none;
}

/* Carrinho */
.cart-items {
    margin: 25px 0;
}

.cart-item {
    background: linear-gradient(135deg, #252525 0%, #1f1f1f 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.cart-item h4 {
    color: #D4AF37;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.cart-item p {
    color: #b0b0b0;
    margin: 5px 0;
}

.cart-item-obs {
    background: rgba(244, 208, 63, 0.15);
    color: #F4D03F;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 8px;
    font-size: 0.9em;
    border: 1px solid rgba(244, 208, 63, 0.3);
}

.cart-total {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.5em;
    font-weight: 700;
    margin: 25px 0;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

/* Payment */
.payment-container {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.payment-container h2 {
    color: #D4AF37;
    margin-bottom: 30px;
    font-size: 2em;
    text-align: center;
}

.payment-summary {
    background: linear-gradient(135deg, #252525 0%, #1f1f1f 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.payment-summary h3 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.payment-summary p {
    color: #b0b0b0;
    margin: 10px 0;
}

.payment-total {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #1a1a1a;
    padding: 18px;
    border-radius: 10px;
    font-size: 1.8em;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.payment-methods {
    margin: 30px 0;
}

.payment-method {
    background: linear-gradient(135deg, #252525 0%, #1f1f1f 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.payment-method:hover {
    border-color: #D4AF37;
    background: linear-gradient(135deg, #2d2d2d 0%, #252525 100%);
}

.payment-method input[type="radio"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    accent-color: #D4AF37;
}

.payment-method label {
    cursor: pointer;
    flex: 1;
    margin: 0;
}

.payment-method strong {
    color: #D4AF37;
    font-size: 1.1em;
}

.payment-method p {
    color: #b0b0b0;
    margin-top: 5px;
    font-size: 0.9em;
}

/* Processing Screen */
.processing-container {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.processing-container h2 {
    color: #D4AF37;
    margin-bottom: 30px;
    font-size: 2em;
}

.qr-code-container {
    background: white;
    padding: 25px;
    border-radius: 12px;
    display: inline-block;
    margin: 25px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Success Screen */
.success-container {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.success-icon {
    font-size: 5em;
    color: #50C878;
    margin-bottom: 25px;
}

.success-container h2 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 2.2em;
}

.success-details {
    background: linear-gradient(135deg, #252525 0%, #1f1f1f 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.success-details p {
    color: #b0b0b0;
    margin: 12px 0;
    font-size: 1.1em;
}

.success-details strong {
    color: #D4AF37;
}

/* Cozinha */
.cozinha-container {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.cozinha-header h2 {
    color: #D4AF37;
    font-size: 2em;
}

.pedido-card {
    background: linear-gradient(135deg, #252525 0%, #1f1f1f 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.pedido-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.pedido-header h3 {
    color: #D4AF37;
    font-size: 1.5em;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
}

.status-em-preparo {
    background: rgba(244, 208, 63, 0.2);
    color: #F4D03F;
    border: 1px solid rgba(244, 208, 63, 0.4);
}

.status-pronto {
    background: rgba(80, 200, 120, 0.2);
    color: #50C878;
    border: 1px solid rgba(80, 200, 120, 0.4);
}

.status-entregue {
    background: rgba(176, 176, 176, 0.2);
    color: #b0b0b0;
    border: 1px solid rgba(176, 176, 176, 0.4);
}

.pedido-info {
    margin-bottom: 20px;
}

.pedido-info p {
    color: #b0b0b0;
    margin: 8px 0;
}

.pedido-info strong {
    color: #D4AF37;
}

.pedido-items {
    margin: 20px 0;
}

.pedido-items h4 {
    color: #D4AF37;
    margin-bottom: 12px;
    font-size: 1.2em;
}

.pedido-items ul {
    list-style: none;
}

.pedido-items li {
    color: #b0b0b0;
    padding: 10px;
    background: rgba(26, 26, 26, 0.5);
    margin-bottom: 8px;
    border-radius: 6px;
    border-left: 3px solid #D4AF37;
}

.pedido-item-obs {
    display: block;
    background: rgba(244, 208, 63, 0.15);
    color: #F4D03F;
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 8px;
    font-size: 0.9em;
    border: 1px solid rgba(244, 208, 63, 0.3);
}

.pedido-total {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.4em;
    font-weight: 700;
    text-align: center;
    margin: 20px 0;
}

/* Admin */
.admin-container {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.admin-header h2 {
    color: #D4AF37;
    font-size: 2em;
}

.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.admin-tabs button {
    padding: 20px 40px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    background: transparent;
    color: #D4AF37;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    font-size: 1.15em;
    min-width: 160px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.admin-tabs button.active {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #1a1a1a;
    border-color: #D4AF37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.admin-tabs button:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
    transform: translateY(-1px);
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #252525 0%, #1f1f1f 100%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.stat-card h3 {
    color: #b0b0b0;
    font-size: 0.95em;
    margin-bottom: 10px;
    font-weight: 400;
}

.stat-card .stat-number {
    color: #D4AF37;
    font-size: 2.5em;
    font-weight: 700;
}

.admin-content {
    display: none;
}

.admin-content.active {
    display: block;
}

/* Mesa Card */
.mesa-card {
    background: linear-gradient(135deg, #252525 0%, #1f1f1f 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.mesa-card h4 {
    color: #D4AF37;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.mesa-card p {
    color: #b0b0b0;
    margin: 8px 0;
}

.mesa-card .qr-code {
    margin: 15px 0;
}

.mesa-status {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
}

.mesa-status.livre {
    background: rgba(80, 200, 120, 0.2);
    color: #50C878;
    border: 1px solid rgba(80, 200, 120, 0.4);
}

.mesa-status.ocupada {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.4);
}

/* Produto Admin Card */
.produto-admin-card {
    background: linear-gradient(135deg, #252525 0%, #1f1f1f 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.produto-admin-info h4 {
    color: #D4AF37;
    margin-bottom: 8px;
    font-size: 1.3em;
}

.produto-admin-info p {
    color: #b0b0b0;
    margin: 5px 0;
    font-size: 0.95em;
}

.produto-admin-actions {
    display: flex;
    gap: 10px;
}

.btn-edit {
    background: transparent;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-edit:hover {
    background: rgba(212, 175, 55, 0.1);
}

.btn-delete {
    background: transparent;
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-delete:hover {
    background: rgba(255, 107, 107, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
    }
    
    .header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        padding: 25px;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .app-logo img {
        width: 50px;
        height: 50px;
    }
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #F4D03F 0%, #D4AF37 100%);
}



/* Cozinha - Novo Layout com Filtros e Duas Colunas */
.cozinha-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #252525 0%, #1f1f1f 100%);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.filter-btn {
    padding: 12px 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: transparent;
    color: #b0b0b0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.95em;
}

.filter-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    border-color: #D4AF37;
}

.filter-btn.active {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #1a1a1a;
    border-color: #D4AF37;
    font-weight: 600;
}

.cozinha-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

/* Layout de 3 colunas para cozinha */
.cozinha-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Quando apenas uma coluna está visível, ocupar largura total */
.cozinha-grid-3 .cozinha-column:only-child,
.cozinha-grid-3 .cozinha-column[style*="display: block"]:first-child:last-child {
    grid-column: 1 / -1;
    max-width: 100%;
}

.empty-message {
    text-align: center;
    color: #666;
    padding: 40px 20px;
    font-style: italic;
    font-size: 0.9em;
}

.cozinha-column {
    background: linear-gradient(135deg, #252525 0%, #1f1f1f 100%);
    border-radius: 12px;
    padding: 25px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    min-height: 400px;
}

.column-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.column-header h3 {
    color: #D4AF37;
    font-size: 1.5em;
    margin-bottom: 8px;
}

.column-header p {
    color: #b0b0b0;
    font-size: 0.95em;
}

.pedidos-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pedidos-list:empty::after {
    content: 'Nenhum pedido nesta categoria';
    display: block;
    text-align: center;
    color: #666;
    padding: 40px 20px;
    font-style: italic;
}

/* Status Badges Atualizados */
.status-pendente {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
    border: 1px solid rgba(255, 193, 7, 0.4);
}

.status-em-preparo {
    background: rgba(255, 87, 34, 0.2);
    color: #FF5722;
    border: 1px solid rgba(255, 87, 34, 0.4);
}

.status-pronto {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.status-entregue {
    background: rgba(158, 158, 158, 0.2);
    color: #9E9E9E;
    border: 1px solid rgba(158, 158, 158, 0.4);
}

/* Botões de Ação do Pedido */
.pedido-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-action {
    flex: 1;
    min-width: 150px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.95em;
}

.btn-iniciar {
    background: linear-gradient(135deg, #FF5722 0%, #E64A19 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.btn-iniciar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.5);
}

.btn-marcar-pronto {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-marcar-pronto:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
}

.btn-marcar-entregue {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.btn-marcar-entregue:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.5);
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Responsive para Cozinha */
@media (max-width: 1200px) {
    .cozinha-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .cozinha-grid {
        grid-template-columns: 1fr;
    }
    
    .cozinha-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .cozinha-filters {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .filter-btn {
        flex: 1;
        min-width: 100px;
    }
    
    .cozinha-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header-actions {
        width: 100%;
    }
    
    .header-actions button {
        flex: 1;
    }
}




/* Admin Tabs - Visibility Control */
.admin-tab {
    display: none;
}

.admin-tab.active {
    display: block;
}



/* ========================================
   ADMIN BUTTON IMPROVEMENTS
   ======================================== */

/* Admin Card Actions */
.admin-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-edit,
.btn-delete {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-edit {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
}

.btn-edit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.btn-delete {
    background: linear-gradient(135deg, #f44336 0%, #da190b 100%);
    color: white;
}

.btn-delete:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.4);
}

/* PIX Validation Actions */
.pix-validation-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-validate,
.btn-reject {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.btn-validate {
    background: linear-gradient(135deg, #51cf66 0%, #37b24d 100%);
    color: white;
}

.btn-validate:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(81, 207, 102, 0.5);
}

.btn-reject {
    background: linear-gradient(135deg, #ff6b6b 0%, #fa5252 100%);
    color: white;
}

.btn-reject:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.5);
}

/* Add Product Button */
.btn-add-product {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #1a1a1a;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1em;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.btn-add-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Responsive for admin buttons */
@media (max-width: 768px) {
    .admin-card-actions,
    .pix-validation-actions {
        flex-direction: column;
    }
    
    .btn-edit,
    .btn-delete,
    .btn-validate,
    .btn-reject {
        width: 100%;
    }
}




/* Modal de Detalhes do Pedido */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-detalhes-pedido {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.modal-header h2 {
    color: #D4AF37;
    font-size: 1.8em;
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    color: #D4AF37;
    font-size: 2.5em;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
}

.modal-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.detalhe-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.detalhe-section:last-child {
    border-bottom: none;
}

.detalhe-section h3 {
    color: #D4AF37;
    font-size: 1.1em;
    margin-bottom: 10px;
    font-weight: 600;
}

.detalhe-valor {
    color: #e0e0e0;
    font-size: 1.1em;
    margin: 5px 0;
}

.detalhe-items {
    margin-top: 15px;
}

.detalhe-item {
    background: rgba(212, 175, 55, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 12px;
    border-left: 3px solid #D4AF37;
}

.detalhe-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.detalhe-item-qtd {
    color: #D4AF37;
    font-weight: bold;
    font-size: 1.1em;
    min-width: 40px;
}

.detalhe-item-nome {
    flex: 1;
    color: #fff;
    font-weight: 500;
}

.detalhe-item-preco {
    color: #50C878;
    font-weight: bold;
    font-size: 1.1em;
}

.detalhe-item-obs {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #ff9800;
    font-size: 0.95em;
}

.detalhe-total {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.detalhe-valor-total {
    color: #D4AF37;
    font-size: 2em;
    font-weight: bold;
    margin: 10px 0 0 0;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.pedido-card {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pedido-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Responsive para modal */
@media (max-width: 768px) {
    .modal-detalhes-pedido {
        max-width: 95%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 1.4em;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .detalhe-item-header {
        flex-wrap: wrap;
    }
    
    .detalhe-valor-total {
        font-size: 1.6em;
    }
}




/* Configurações de Disponibilidade */
.config-section {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.dias-semana-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.dia-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dia-checkbox:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.dia-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #D4AF37;
}

.dia-checkbox span {
    color: #e0e0e0;
    font-weight: 500;
}

.dia-checkbox input[type="checkbox"]:checked + span {
    color: #D4AF37;
}

.horario-config {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.switch-container {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.switch-container input[type="checkbox"] {
    display: none;
}

.switch-slider {
    position: relative;
    width: 60px;
    height: 30px;
    background: #666;
    border-radius: 30px;
    transition: all 0.3s;
}

.switch-slider::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: all 0.3s;
}

.switch-container input[type="checkbox"]:checked + .switch-slider {
    background: #D4AF37;
}

.switch-container input[type="checkbox"]:checked + .switch-slider::before {
    left: 33px;
}

.switch-label {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .dias-semana-grid {
        grid-template-columns: 1fr;
    }
    
    .horario-config {
        grid-template-columns: 1fr;
    }
}


/* Estilo para pedidos entregues em modo lista */
.pedido-lista-item {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid #444;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.pedido-lista-item:hover {
    background: linear-gradient(135deg, #333 0%, #222 100%);
    border-color: #DAA520;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(218, 165, 32, 0.2);
}

.pedido-lista-info {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

.pedido-lista-id {
    font-weight: 700;
    color: #DAA520;
    min-width: 60px;
}

.pedido-lista-cliente {
    flex: 1;
    color: #fff;
    font-weight: 600;
}

.pedido-lista-itens {
    color: #aaa;
    min-width: 80px;
}

.pedido-lista-total {
    color: #50C878;
    font-weight: 700;
    min-width: 90px;
    text-align: right;
}

.pedido-lista-hora {
    color: #888;
    font-size: 12px;
    min-width: 140px;
    text-align: right;
}

/* Responsividade para lista de pedidos */
@media (max-width: 768px) {
    .pedido-lista-info {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .pedido-lista-id,
    .pedido-lista-cliente {
        flex: 1 1 100%;
    }

/* Header Actions */
.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* View Toggle Button */
.btn-view-toggle {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.btn-view-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.6);
}

.btn-view-toggle span {
    font-size: 1.2em;
    margin-right: 5px;
}

.btn-view-toggle svg {
    vertical-align: middle;
    margin-right: 5px;
}

/* Products List View */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-list-item {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 2px solid #444;
    border-radius: 12px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
}

.product-list-item:hover {
    border-color: #D4AF37;
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.product-list-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-list-name {
    color: #D4AF37;
    font-size: 1.2em;
    font-weight: 700;
}

.product-list-description {
    color: #999;
    font-size: 0.9em;
}

.product-list-stock {
    color: #4CAF50;
    font-size: 0.85em;
    font-weight: 600;
}

.product-list-stock.low {
    color: #ff6b6b;
}

.product-list-price {
    color: #4CAF50;
    font-size: 1.5em;
    font-weight: 700;
    text-align: right;
}

.product-list-add {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.product-list-add:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
    .product-list-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .product-list-price {
        text-align: center;
    }
}

/* Cart Summary */
.cart-summary {
    background: #2d2d2d;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.cart-subtotal,
.cart-fee {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #D4AF37;
    font-size: 1.1em;
    border-bottom: 1px solid #444;
}

.cart-fee {
    color: #ff9800;
    font-weight: 600;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0 0 0;
}

.cart-total h3 {
    color: #4CAF50;
    font-size: 1.5em;
    margin: 0;
}

/* Cart List View */
.cart-list-item {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 2px solid #444;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 15px;
    align-items: center;
    transition: all 0.3s ease;
}

.cart-list-item:hover {
    border-color: #D4AF37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.cart-list-item-info h4 {
    color: #D4AF37;
    margin: 0 0 5px 0;
    font-size: 1.1em;
}

.cart-list-item-info p {
    color: #999;
    margin: 3px 0;
    font-size: 0.9em;
}

.cart-list-item-obs {
    background: #1a1a1a;
    border-left: 3px solid #D4AF37;
    padding: 8px;
    margin-top: 8px;
    color: #D4AF37;
    font-size: 0.85em;
    font-style: italic;
}

.cart-list-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-list-item-quantity button {
    background: #D4AF37;
    border: none;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    color: #000;
    font-weight: 700;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-list-item-quantity button:hover {
    background: #F4D03F;
    transform: scale(1.1);
}

.cart-list-item-quantity span {
    color: #fff;
    font-size: 1.2em;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

.cart-list-item-subtotal {
    color: #4CAF50;
    font-size: 1.3em;
    font-weight: 700;
    text-align: right;
}

.cart-list-item-remove {
    background: #ff4444;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-list-item-remove:hover {
    background: #ff6666;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .cart-list-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cart-list-item-quantity {
        justify-content: center;
    }
    
    .cart-list-item-subtotal {
        text-align: center;
    }
}


/* Quantidade Control in Modal */
.quantidade-control {
    margin: 20px 0;
}

.quantidade-control label {
    display: block;
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 10px;
}

.qty-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.qty-buttons button {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border: none;
    border-radius: 8px;
    width: 45px;
    height: 45px;
    color: #000;
    font-weight: 700;
    font-size: 1.5em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-buttons button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
}

.qty-buttons input[type="number"] {
    background: #1a1a1a;
    border: 2px solid #D4AF37;
    border-radius: 8px;
    width: 80px;
    height: 45px;
    color: #fff;
    font-size: 1.3em;
    font-weight: 700;
    text-align: center;
    padding: 0 10px;
}

.qty-buttons input[type="number"]:focus {
    outline: none;
    border-color: #F4D03F;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Remove spinner arrows from number input */
.qty-buttons input[type="number"]::-webkit-inner-spin-button,
.qty-buttons input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-buttons input[type="number"] {
    -moz-appearance: textfield;
}

.estoque-info {
    margin-top: 10px;
    text-align: center;
    font-size: 0.9em;
    font-weight: 600;
}

.observacoes-field {
    margin: 20px 0;
}

.observacoes-field label {
    display: block;
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 10px;
}

.observacoes-field textarea {
    width: 100%;
    background: #1a1a1a;
    border: 2px solid #444;
    border-radius: 8px;
    color: #fff;
    padding: 12px;
    font-family: inherit;
    font-size: 1em;
    resize: vertical;
}

.observacoes-field textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

.observacoes-field .help-text {
    color: #888;
    font-size: 0.85em;
    margin-top: 5px;
}

