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


:root {
    --red:       #f1a8d1;
    --red-dark:  #e67eab;
    --bg:        #f8f1f4;
    --card-bg:   #ffffff;
    --text:      #1a1a2e;
    --text-muted:#888888;
    --border:    #f8bbd0;
    --shadow:    0 2px 8px rgba(233,30,140,0.10);
    --sc:        #e91e8c;
        --textSimple: #ffffff;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    padding-bottom: 70px;
}

header {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.header-logo span {
    font-size: 18px;
    font-weight: 700;
    color: #d4608a;
}

.logo-icon {
    width: 36px;
    height: 36px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.btn-login {
    background: #fff0f7;
    color: #c0467a;
    border: 1.5px solid #f9c8e4;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-login:hover {
    background: #fce4f3;
    border-color: #e91e8c;
}

.btn-back {
    background: #555;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-back:hover {
    background: #333;
}

/* Botão Voltar no header (aba Promoções) — mesmo visual do .btn-back do carrinho */
.btn-back-promo {
    background: #555;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background .18s;
}
.btn-back-promo:hover {
    background: #333;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 16px;
}


.search-box {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 24px;
    font-size: 15px;
    background: #fff;
    outline: none;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
}

.search-box:focus {
    border-color: var(--red);
}

.categories {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cat-btn {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.cat-btn.active {
    background: #f9c8e4;
    color: #9a2060;
    border-color: #f9c8e4;
}

.cat-btn:hover:not(.active) {
    background: #f0e8e0;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 380px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    background: #f0e8e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.product-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    flex: 1;
}

.product-price-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.price-original {
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: line-through;
    line-height: 1;
}

.price-current {
    font-size: 22px;
    font-weight: 800;
    color: #c0467a;
    line-height: 1.15;
    letter-spacing: -0.3px;
}

.discount-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #9e6d9a;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(158,109,154,0.35);
    z-index: 2;
    pointer-events: none;
}

.btn-add {
    background: #f9c8e4;
    color: #9a2060;
    border: none;
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0;
    width: 100%;
    transition: background 0.2s;
    letter-spacing: 0.2px;
}

.btn-add:hover {
    background: #f4a8d0;
}

.card-btn-wrap {
    margin-top: 8px;
}

.card-qty-ctrl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    height: 36px;
    width: 100%;
}

.card-qty-btn {
    flex: 0 0 36px;
    height: 100%;
    border: none;
    color: #555;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.15s;
    background: #f5f5f5;
}

.card-qty-minus {
    background: #f0f0f0;
    border-right: 1.5px solid #ddd;
}

.card-qty-minus:hover {
    background: #e0e0e0;
}

.card-qty-plus {
    background: #f0f0f0;
    border-left: 1.5px solid #ddd;
}

.card-qty-plus:hover {
    background: #e0e0e0;
}

.card-qty-num {
    flex: 1;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 82px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #222;
    color: #fff;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.toast.toast-add    { background: #2e9e4f; }
.toast.toast-plus   { background: #2e9e4f; }
.toast.toast-minus  { background: var(--red); }
.toast.toast-remove { background: #555; }

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.coupon-wrap {
    margin: 0 0 12px;
}

.coupon-row {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}

.coupon-input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    background: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: border 0.2s;
}

.coupon-input:focus {
    border-color: var(--red);
}

.coupon-input:disabled {
    background: #f5f5f5;
    color: #888;
}

.coupon-btn {
    padding: 10px 18px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.coupon-btn:hover {
    background: #111;
}

.coupon-success {
    color: #2e9e4f;
    font-size: 13px;
    font-weight: 600;
}

.coupon-error {
    color: var(--red);
    font-size: 13px;
    font-weight: 600;
}

.discount-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #eefbe7;
    border: 1px solid #a5d6a7;
    border-radius: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2e7d32;
}

.discount-value {
    font-weight: 700;
    color: #2e9e4f;
}

.total-final-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: #fff3e0;
    border: 1px solid #ffcc80;
    border-radius: 10px;
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 700;
    color: #e65100;
}

.total-final-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--red);
}

/* PDV Admin search bar */
.pdv-search-wrap {
    background: #1a1a2e;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 20px;
}

.pdv-search-label {
    color: #fff;
    font-size: 13px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.pdv-search-row {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.pdv-qty-input {
    width: 62px;
    flex-shrink: 0;
    padding: 10px 8px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    outline: none;
    background: #fff;
    color: var(--red);
    -moz-appearance: textfield;
}

.pdv-qty-input::-webkit-outer-spin-button,
.pdv-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pdv-autocomplete-wrap {
    flex: 1;
    position: relative;
}

.pdv-search-input {
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    background: #fff;
}

.pdv-suggestions {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    list-style: none;
    z-index: 999;
    max-height: 260px;
    overflow-y: auto;
    display: none;
}

.pdv-suggestion-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 14px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.15s;
}

.pdv-suggestion-item:last-child { border-bottom: none; }
.pdv-suggestion-item:hover { background: #fff3f0; }
.pdv-sug-nome { font-weight: 600; }
.pdv-sug-preco { color: var(--red); font-weight: 700; }

.pdv-add-btn {
    padding: 10px 18px;
    background: #2e9e4f;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.pdv-add-btn:hover { background: #247a3d; }

.pdv-msg { margin-top: 8px; font-size: 13px; min-height: 20px; }

/* Admin badge */
.admin-badge {
    background: #1a1a2e;
    color: #f5c518;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    border-top: 1px solid var(--border);
    z-index: 200;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 11px;
    gap: 3px;
    position: relative;
    cursor: pointer;
}

.nav-item.active {
    color: var(--red);
}

.nav-item svg {
    width: 22px;
    height: 22px;
}

.nav-badge {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(2px);
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-page-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cart-item {
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.cart-item-num {
    color: var(--text-muted);
    font-size: 14px;
    min-width: 16px;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background: #f0e8e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    overflow: hidden;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 700;
    font-size: 14px;
}

.cart-item-price {
    font-size: 13px;
    color: var(--text-muted);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 6px;
    background: var(--red);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.qty-btn:hover {
    background: var(--red-dark);
}

.qty-value {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}

.cart-item-total {
    font-weight: 700;
    font-size: 15px;
    min-width: 60px;
    text-align: right;
}

.btn-delete {
    width: 32px;
    height: 32px;
    background: #e0e0e0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.btn-delete:hover {
    background: #ccc;
}

.cart-total {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    margin: 20px 0 16px;
    color: var(--red);
    background: #fff8f0;
    border: 2px solid #f5d0ca;
    border-radius: 14px;
    padding: 14px 16px;
    letter-spacing: -0.3px;
}

.btn-finalizar {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 16px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.2s;
}

.btn-finalizar:hover {
    opacity: 0.9;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 16px;
}

.form-page-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    background: #fff;
    outline: none;
    transition: border 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--red);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    display: block;
    width: 100%;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    text-decoration: none;
}

.btn-submit:hover {
    background: var(--red-dark);
}

.alert {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 14px;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.resumo-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 24px;
    text-align: center;
}

.resumo-card h2 {
    color: var(--red);
    font-size: 18px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.resumo-card p {
    font-size: 15px;
    margin-bottom: 4px;
}

.resumo-card p strong {
    font-weight: 700;
}

.resumo-linha {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 5px 0;
    text-align: left;
}

.resumo-desconto {
    color: #2e7d32;
    font-weight: 600;
}

.resumo-valor-desconto {
    font-weight: 700;
    color: #2e9e4f;
}

.resumo-entrega {
    color: #555;
}

.resumo-valor-entrega {
    font-weight: 600;
    color: #555;
}

.resumo-separador {
    border-top: 1.5px dashed var(--border);
    margin: 10px 0;
}

.resumo-total-final {
    font-size: 16px;
}

.resumo-valor-total {
    font-size: 20px;
    font-weight: 800;
    color: var(--red);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 300;
}

.sidebar-overlay.open {
    display: block;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    height: 100vh;
    background: #fff;
    z-index: 400;
    transition: left 0.3s;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
  
}

.sidebar.open {
    left: 0;

}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 16px;
    border-bottom: 1px solid var(--border);
}

.sidebar-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--red);
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #555;
}

.sidebar-nav {
    flex: 1;
    padding: 16px 0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    text-decoration: none;
    color: var(--textSimple);
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}

.sidebar-nav a:hover {
    background: var(--bg);
}

.sidebar-nav a svg {
    width: 20px;
    height: 20px;
    color: var(--red);
}

.sidebar-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
}

.sidebar-footer strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.sidebar-footer a {
    color: #25d366;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.link-conta {
    display: block;
    text-align: center;
    margin-top: 12px;
    color: var(--red);
    text-decoration: none;
    font-size: 14px;
}

.link-conta:hover {
    text-decoration: underline;
}

.pedidos-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.pedidos-table thead tr {
    background: var(--red);
    color: #fff;
}

.pedidos-table th,
.pedidos-table td {
    padding: 12px 14px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.pedidos-table tbody tr:last-child td {
    border-bottom: none;
}

.pedidos-table tbody tr:hover {
    background: #fdf0ec;
}

.btn-ver-pedido {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.btn-ver-pedido:hover {
    background: var(--red-dark);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal-box {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
    animation: modalIn 0.2s ease;
}

@keyframes modalIn {
    from { transform: scale(0.95); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: #fff;
    z-index: 1;
    flex-shrink: 0;
}

.modal-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--red);
}

.modal-close {
    background: #f0f0f0;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #ddd;
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1 1 0;
    min-height: 0;
}

.modal-info-row {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.modal-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 14px 0;
}

.modal-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #f0e8e0;
}

.modal-item:last-child {
    border-bottom: none;
}

.modal-item-name {
    color: var(--text);
}

.modal-item-price {
    font-weight: 700;
    color: var(--red);
}

/* Modal tabs */
.modal-tabs {
    display: flex;
    border-bottom: 2px solid var(--border);
    background: #fafafa;
    flex-shrink: 0;
}

.modal-tab {
    flex: 1;
    padding: 11px 8px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.15s, border-color 0.15s;
}

.modal-tab.active {
    color: var(--red);
    border-bottom-color: var(--red);
    background: #fff;
}

/* Edit sections */
.edit-section {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}

.edit-section:last-of-type { border-bottom: none; }

.edit-section-title {
    font-size: 13px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 10px;
}

.edit-input {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background: #fff;
    transition: border-color 0.2s;
}

.edit-input:focus { border-color: var(--red); }

/* Edit items list */
.edit-item-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    border-bottom: 1px solid #f5ede8;
    font-size: 13px;
}

.edit-item-row:last-child { border-bottom: none; }
.edit-item-name  { flex: 1; font-weight: 600; }
.edit-item-price { color: var(--text-muted); font-size: 12px; white-space: nowrap; }
.edit-item-ctrl  { display: flex; align-items: center; gap: 4px; }
.edit-item-total { font-weight: 700; color: var(--red); white-space: nowrap; min-width: 64px; text-align: right; }

.edit-item-del {
    background: none;
    border: none;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 4px;
    transition: color 0.15s;
    line-height: 1;
}

.edit-item-del:hover { color: var(--red); }

.edit-add-produto {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
}

/* Edit financial summary */
.edit-resumo-linha {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 5px 0;
}

.modal-total {
    font-size: 17px;
    font-weight: 700;
    text-align: right;
    color: var(--text);
}

/* Status badge in table */
.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

/* Admin modal actions panel */
.modal-admin-actions {
    border-top: 2px solid #f0e8e0;
    padding: 16px 20px 20px;
    background: #fafafa;
    border-radius: 0 0 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
}

.admin-action-section { display: flex; flex-direction: column; gap: 8px; }

.admin-action-label {
    font-size: 13px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-status-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.status-btn {
    padding: 7px 14px;
    border-radius: 20px;
    border: 2px solid var(--sc, #ccc);
    background: transparent;
    color: var(--sc, #555);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.status-btn:hover:not(:disabled) {
    background: var(--sc, #ccc);
    color: #fff;
}

.status-btn-active {
    background: var(--sc, #ccc);
    color: #fff;
    cursor: default;
    opacity: 0.85;
}

.btn-excluir-pedido {
    width: 100%;
    padding: 11px;
    background: transparent;
    border: 2px solid #e63329;
    color: #e63329;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.btn-excluir-pedido:hover {
    background: #e63329;
    color: #fff;
}

/* Confirm delete modal */
.btn-cancel-excluir {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #ccc;
    background: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    color: #555;
}

.btn-cancel-excluir:hover { background: #f5f5f5; }

.btn-confirm-excluir {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: #e63329;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-confirm-excluir:hover { background: #c0291f; }
.btn-confirm-excluir:disabled { opacity: 0.6; cursor: not-allowed; }

/* Admin feedback message */
.admin-feedback {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.admin-feedback-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.admin-feedback-error   { background: #fdecea; color: #c62828; border: 1px solid #ef9a9a; }

@media (min-width: 600px) {
    .container {
        padding: 24px 20px;
       
    }

    .products-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (min-width: 900px) {
    .container {
        
        min-width: 900px;
       
    }
    

    .products-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}
@media (min-width: 1400px) {
    .container {
        
        min-width: 1200px;
       
    }
    

    .products-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr  1fr;
    }
}

/* =============================================
   INFO BAR (barra superior informativa)
   ============================================= */
.info-bar {
    background: #fff0f7;
    color: #9a2060;
    text-align: center;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    position: relative;
    z-index: 99;
    transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.35s ease;
    overflow: hidden;
    max-height: 60px;
    opacity: 1;
    letter-spacing: 0.2px;
    border-bottom: 1px solid #f9c8e4;
}

.info-bar.hidden {
    max-height: 0;
    padding: 0;
    opacity: 0;
}

/* =============================================
   MINI BANNER
   ============================================= */
.mini-banner {
    background: linear-gradient(135deg, #f9c8e4 0%, #fff0f7 100%);
    border-radius: 16px;
    padding: 20px 18px 16px;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
    color: #7a1f50;
    border: 1px solid #f4b0d8;
}

.mini-banner::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.35);
    border-radius: 50%;
}

.mini-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.mini-banner-text {
    flex: 1;
}

.mini-banner-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4px;
    color: #f9c8e4;
    text-shadow: 0 1px 3px rgba(180,60,120,0.15);
}

.mini-banner-sub {
    font-size: 13px;
    color: #a0406e;
    margin-bottom: 10px;
}

.mini-banner-price {
    font-size: 14px;
    color: #7a1f50;
}

.mini-banner-price strong {
    font-size: 26px;
    font-weight: 900;
    display: inline-block;
    color: #c0467a;
}

.mini-banner-parcela {
    font-size: 12px;
    color: #b05080;
    margin-top: 2px;
}

.mini-banner-img {
    font-size: 64px;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
    flex-shrink: 0;
    margin-left: 12px;
}

.mini-banner-btn {
    display: inline-block;
    background: #fff;
    color: #f9c8e4;
    font-size: 14px;
    font-weight: 800;
    padding: 10px 28px;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(200,80,140,0.18);
    border: 2px solid #f9c8e4;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.mini-banner-btn:hover {
    transform: translateY(-2px);
    background: #fff0f7;
    box-shadow: 0 6px 18px rgba(200,80,140,0.25);
}

/* =============================================
   CARROSSEL DE TEXTO
   ============================================= */
.text-carousel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px 10px;
    margin-bottom: 18px;
    box-shadow: var(--shadow);
    position: relative;
    min-height: 52px;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    height: 28px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
    white-space: nowrap;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.carousel-icon {
    font-size: 16px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f9c8e4;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    opacity: 0.5;
}

.dot.active {
    background: #fff0f7;
    transform: scale(1.4);
    opacity: 1;
    box-shadow: 0 0 0 2px #f9c8e4;
}

/* =============================================
   PRODUTO CARD — REDESENHO
   ============================================= */
.product-card {
    background: var(--card-bg);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.09);
    border: 1px solid #efefef;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.2s;
}

.product-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.13);
}

.product-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    background: #f8f4f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
}

/* Ícone de favorito no card */
.product-img::after {
    content: '♡';
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 18px;
    color: #ccc;
    line-height: 1;
}

.product-info {
    padding: 10px 10px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-weight: 600;
    font-size: 13px;
    color: #222;
    margin-bottom: 3px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-desc {
    font-size: 11px;
    color: #aaa;
    margin-bottom: 6px;
    flex: 1;
    line-height: 1.3;
}

.product-price-block {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-bottom: 7px;
}

.price-original {
    font-size: 11px;
    color: #aaa;
    text-decoration: line-through;
    line-height: 1;
}

.price-installment {
    font-size: 11px;
    color: #777;
    line-height: 1.3;
    margin-top: 1px;
}

/* Bloco PIX — fundo rosa claro, ícone tag */
.pix-price-block {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #f2f2f2;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 6px 8px;
    margin-bottom: 10px;
}

.pix-icon {
    width: 28px;
    height: 28px;
    background: transparent;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pix-icon svg {
    width: 20px;
    height: 20px;
    fill: #9e6d9a;
}

.pix-badge {
    background: #9e6d9a;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.pix-values {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.pix-price {
    font-size: 13px;
    font-weight: 800;
    color: #444;
    line-height: 1.1;
}

.pix-label {
    font-size: 10px;
    color: #777;
}

/* Card btn wrap */
.card-btn-wrap {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Resize btn-add when alongside whatsapp btn */
.card-btn-wrap .btn-add {
    margin-top: 0;
}

/* =============================================
   BOTÃO DE AJUDA FIXO (FAB)
   ============================================= */
.help-fab {
    position: fixed;
    bottom: 82px;
    right: 16px;
    background: #f9c8e4;
    color: #fff0f7;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(200,80,140,0.35);
    z-index: 250;
    transition: background 0.2s, transform 0.15s;
    padding: 0;
}

.help-fab:hover {
    background: #f4a8d0;
    transform: scale(1.08);
}

.help-fab svg {
    width: 26px;
    height: 26px;
    fill: #fff0f7;
    flex-shrink: 0;
}

/* =============================================
   POPUP DE AJUDA
   ============================================= */
.help-popup {
    position: fixed;
    bottom: 136px;
    right: 16px;
    width: 290px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    z-index: 300;
    overflow: hidden;
    transform: scale(0.85) translateY(20px);
    opacity: 0;
    pointer-events: none;
    transform-origin: bottom right;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.help-popup.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.help-popup-header {
    background: #f9c8e4;
    color: #7a1f50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    font-size: 15px;
    font-weight: 700;
}

.help-popup-close {
    background: rgba(255,255,255,0.4);
    border: none;
    color: #9a2060;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.help-popup-close:hover {
    background: rgba(255,255,255,0.65);
}

.help-popup-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.help-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    margin-top: 1px;
}

.help-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 1px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.help-value {
    font-size: 14px;
    font-weight: 700;
    color: #222;
}

.help-link {
    color: #25d366;
    text-decoration: none;
}

.help-link:hover {
    text-decoration: underline;
}

/* =============================================
   CARD — INLINE QTY + COMPRAR
   ============================================= */
.card-action-row {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    height: 38px;
}

/* ── Controle [− 1 +] ── pílula branca, borda cinza claro */
.card-inline-qty {
    display: flex;
    align-items: center;
    border: 1.5px solid #d1d5db;
    border-radius: 999px;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
    height: 38px;
    /* proporção ~36% da linha */
    flex: 0 0 auto;
}

.card-inline-btn {
    width: 28px;
    height: 100%;
    border: none;
    background: transparent;
    color: #6b7280;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.12s, color 0.12s;
    flex-shrink: 0;
    line-height: 1;
    padding: 0;
    /* separadores internos sutis */
}

.card-inline-btn:first-child {
    border-right: 1px solid #e5e7eb;
}

.card-inline-btn:last-child {
    border-left: 1px solid #e5e7eb;
}

.card-inline-btn:hover {
    background: #f3f4f6;
    color: #111;
}

.card-inline-num {
    min-width: 26px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    padding: 0 2px;
    line-height: 1;
}

/* ── Botão Comprar ── rosa saturado, texto branco, pílula */
.card-inline-add {
    flex: 1;
    background: #e91e8c;
    color: #fff;
    border: none;
    border-radius: 999px;
    height: 38px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s;
    white-space: nowrap;
    padding: 0 10px;
    letter-spacing: 0.1px;
    box-shadow: 0 2px 8px rgba(233,30,140,0.25);
}

.card-inline-add:hover {
    background: #c91778;
    box-shadow: 0 4px 12px rgba(233,30,140,0.35);
}

/* ── Botão WhatsApp ── fundo branco, borda cinza, texto escuro, ícone verde à direita */
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    text-align: center;
    background: #fff;
    color: #374151;
    border: 1.5px solid #d1d5db;
    border-radius: 999px;
    padding: 0 12px;
    height: 36px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
    box-sizing: border-box;
    letter-spacing: 0.1px;
}

.btn-whatsapp:hover {
    background: #f9fafb;
    border-color: #25d366;
}

.btn-whatsapp .wpp-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    order: 2;   /* ícone fica à direita do texto */
}




/* ══════════════════════════════════════════════════════════════
   SIDEBAR — Tema escuro com acentos rosa
   ══════════════════════════════════════════════════════════════ */
.sidebar {
    background: linear-gradient(160deg, var(--bg) 0%, var(--bg) 100%) !important;
}
.sidebar-header h2 { color: var(--border) !important; }
.sidebar-close     { color: var(--text) !important; }
.sidebar-nav a     { color: var(--text) !important; }
.sidebar-nav a svg { fill:  var(--red-dark) !important; }
.sidebar-nav a:hover {
    color:      #ffffff !important;
    background: rgba(233,30,140,0.18) !important;
}
.sidebar-nav a:hover svg          { fill: #ffffff !important; }
.sidebar-nav a[style*="color:#e63329"] { color: var(--red-dark) !important; }
.sidebar-footer {
    color:            #f8bbd0 !important;
    border-top-color: rgba(248,187,208,0.2) !important;
}
.sidebar-footer a { color: #f8bbd0 !important; }


/* ══════════════════════════════════════════════════════════════
   PAGE TABS (index.php) — mantidos para navegação via JS
   ══════════════════════════════════════════════════════════════ */
.page-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 20px;
}
.page-tab {
    flex: 1;
    padding: 12px 0;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    background: none;
    color: var(--text-muted);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all .2s;
}
.page-tab.active {
    color: var(--red);
    border-bottom-color: var(--red);
}
.tab-section        { display: none; }
.tab-section.active { display: block; }


/* ══════════════════════════════════════════════════════════════
   CARRINHO — Indicador de etapas (step-indicator)
   ══════════════════════════════════════════════════════════════ */
.step-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
}
.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    background: var(--border);
    color: var(--text-muted);
}
.step-dot.active { background: var(--red); color: #fff; }
.step-dot.done   { background: #22c55e;    color: #fff; }
.step-line       { flex: 1; height: 2px; background: var(--border); }
.step-line.done  { background: #22c55e; }


/* ══════════════════════════════════════════════════════════════
   PEDIDOS — Estilos do painel de pedidos e admin
   ══════════════════════════════════════════════════════════════ */
.modal-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-info-row {
    margin-bottom: 8px;
    font-size: 14px;
}

.modal-divider {
    height: 1px;
    background: var(--border);
    margin: 15px 0;
}

.modal-total {
    font-size: 18px;
    font-weight: 700;
    color: var(--red);
    text-align: right;
    margin-top: 10px;
}

.modal-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}
.modal-item:last-child { border-bottom: none; }

.edit-section {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.edit-section-title {
    font-weight: 600;
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.edit-input {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    background: white;
}
.edit-input:focus {
    outline: none;
    border-color: var(--red);
}

.edit-item-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
}
.edit-item-name  { flex: 2; font-weight: 500; }
.edit-item-price { flex: 1; color: #666; }
.edit-item-ctrl  { display: flex; align-items: center; gap: 4px; }
.edit-item-total {
    flex: 1;
    font-weight: 600;
    color: var(--red);
    text-align: right;
}

.edit-item-del {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: none;
    background: #fee;
    color: #e33;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.edit-item-del:hover { background: #fdd; }

.edit-resumo-linha {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 4px 0;
}

.pdv-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    margin-top: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    list-style: none;
    padding: 0;
}

.pdv-suggestion-item {
    padding: 10px 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
}
.pdv-suggestion-item:hover { background: #f5f5f5; }
.pdv-sug-nome  { font-weight: 500; }
.pdv-sug-preco { color: var(--red); font-weight: 600; }

.pdv-add-btn {
    background: var(--red);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.status-btn {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.status-btn-active {
    background: var(--sc);
    color: white;
    border-color: var(--sc);
}

.btn-excluir-pedido {
    width: 100%;
    padding: 14px;
    background: #fee;
    border: none;
    border-top: 1.5px solid var(--border);
    color: #e33;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-excluir-pedido:hover { background: #fdd; }

.modal-admin-actions {
    border-top: 1.5px solid var(--border);
    background: #fafafa;
}

.admin-action-section { padding: 16px 20px; }

.admin-action-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
}

.admin-status-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.btn-cancel-excluir {
    background: #f0f0f0;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
}

.btn-confirm-excluir {
    background: var(--red);
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    color: white;
    cursor: pointer;
}

.coupon-btn {
    background: var(--red);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0 16px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}
