﻿:root {
 --brand-pink: #f42f8b;
 --brand-pink-dark: #d91d73;
 --brand-pink-soft: #fff0f7;
 --brand-teal: #20c5c7;
 --brand-teal-dark: #07999d;
 --brand-teal-soft: #e9fbfb;
 --brand-ink: #243149;
 --brand-muted: #697386;
 --brand-line: #eadfe7;
 --brand-white: #ffffff;
 --brand-shadow: 0 18px 45px rgba(84, 35, 69, .12);
 --brand-shadow-soft: 0 8px 24px rgba(84, 35, 69, .09);
}

html { scroll-behavior: smooth; }

body.storefront-body {
 margin: 0;
 padding: 0;
 min-height: 100vh;
 color: var(--brand-ink);
 font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
 background:
  radial-gradient(circle at 10% 5%, rgba(32, 197, 199, .11), transparent 24rem),
  radial-gradient(circle at 92% 18%, rgba(244, 47, 139, .10), transparent 28rem),
  #fffafd;
}

a { color: var(--brand-pink-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand-teal-dark); }

.brand-announcement {
 min-height: 34px;
 display: flex;
 align-items: center;
 color: #fff;
 font-size: .82rem;
 font-weight: 700;
 letter-spacing: .035em;
 background: linear-gradient(100deg, var(--brand-teal-dark), var(--brand-teal) 42%, var(--brand-pink) 100%);
}

.store-navbar {
 min-height: 104px;
 padding: .55rem 0;
 background: rgba(255, 255, 255, .96);
 border-bottom: 1px solid rgba(244, 47, 139, .12);
 box-shadow: 0 8px 28px rgba(44, 24, 40, .08);
 backdrop-filter: blur(12px);
 z-index: 1030;
}

.store-navbar .container { max-width: 1340px; }
.store-brand { min-width: 225px; margin-right: 2rem; text-decoration: none; }
.store-logo {
 width: auto;
 height: 82px;
 max-width: 235px;
 object-fit: contain;
 border-radius: 18px;
 filter: drop-shadow(0 7px 11px rgba(244, 47, 139, .13));
 transition: transform .25s ease;
}
.store-brand:hover .store-logo { transform: scale(1.025); }
.store-name-text { color: var(--brand-ink); font-size: 1.35rem; font-weight: 800; }
.store-nav-main { gap: .3rem; }
.store-user-nav { gap: .25rem; align-items: center; }
.store-nav-link {
 color: #3b4050 !important;
 font-size: .96rem;
 font-weight: 700;
 padding: .66rem .9rem !important;
 border-radius: 999px;
 text-decoration: none;
 transition: color .2s ease, background .2s ease, transform .2s ease;
}
.store-nav-link:hover,
.store-nav-link:focus {
 color: var(--brand-pink-dark) !important;
 background: var(--brand-pink-soft);
 transform: translateY(-1px);
}
.admin-link {
 color: var(--brand-teal-dark) !important;
 background: var(--brand-teal-soft);
}
.cart-link { display: inline-flex; align-items: center; gap: .4rem; }
.cart-icon { font-size: 1.05rem; }
.cart-count {
 min-width: 25px;
 height: 25px;
 padding: 0 .42rem;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 font-size: .75rem;
 line-height: 1;
 background: linear-gradient(135deg, var(--brand-pink), var(--brand-pink-dark));
 border-radius: 999px;
 box-shadow: 0 5px 12px rgba(244, 47, 139, .28);
}
.nav-register-btn { margin-left: .25rem; white-space: nowrap; }
.user-link { display: inline-flex; align-items: center; gap: .5rem; }
.user-dot { width: 9px; height: 9px; background: var(--brand-teal); border-radius: 50%; box-shadow: 0 0 0 4px var(--brand-teal-soft); }
.navbar-toggler { border-color: rgba(244, 47, 139, .28); border-radius: 12px; padding: .5rem .65rem; }
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(244, 47, 139, .15); }

.store-main { max-width: 1320px; min-height: 62vh; }

h1, h2, h3, h4, h5, h6 { color: var(--brand-ink); font-weight: 800; letter-spacing: -.025em; }
main h1:first-child { margin-bottom: 1.25rem; }
.text-muted { color: var(--brand-muted) !important; }

.hero {
 position: relative;
 overflow: hidden;
 min-height: 420px;
 display: flex;
 align-items: center;
 padding: clamp(2rem, 6vw, 5rem) !important;
 color: var(--brand-ink);
 border: 1px solid rgba(244, 47, 139, .14);
 border-radius: 34px !important;
 background:
  linear-gradient(125deg, rgba(255,255,255,.97) 0%, rgba(255,239,247,.96) 50%, rgba(232,252,252,.94) 100%);
 box-shadow: var(--brand-shadow);
 isolation: isolate;
}
.hero::before,
.hero::after {
 content: "";
 position: absolute;
 border-radius: 50%;
 z-index: -1;
}
.hero::before {
 width: 330px;
 height: 330px;
 right: -80px;
 top: -110px;
 background: radial-gradient(circle, rgba(244,47,139,.26), rgba(244,47,139,0) 67%);
}
.hero::after {
 width: 380px;
 height: 380px;
 right: 10%;
 bottom: -260px;
 background: radial-gradient(circle, rgba(32,197,199,.27), rgba(32,197,199,0) 68%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-eyebrow {
 display: inline-flex;
 align-items: center;
 gap: .5rem;
 padding: .48rem .8rem;
 margin-bottom: 1rem;
 color: var(--brand-pink-dark);
 font-size: .78rem;
 font-weight: 800;
 letter-spacing: .11em;
 text-transform: uppercase;
 background: #fff;
 border: 1px solid rgba(244,47,139,.17);
 border-radius: 999px;
 box-shadow: var(--brand-shadow-soft);
}
.hero h1 { max-width: 740px; font-size: clamp(2.35rem, 6vw, 4.7rem); line-height: .98; }
.hero .lead { max-width: 690px; font-size: clamp(1rem, 2vw, 1.22rem); color: #586176; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }
.hero-highlights { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }
.hero-chip {
 display: inline-flex;
 align-items: center;
 gap: .45rem;
 padding: .55rem .75rem;
 color: #4b5160;
 font-size: .87rem;
 font-weight: 700;
 background: rgba(255,255,255,.82);
 border: 1px solid rgba(32,197,199,.18);
 border-radius: 999px;
}
.hero-chip::before { content: ""; width: 8px; height: 8px; background: var(--brand-teal); border-radius: 50%; }

.section-heading { margin-bottom: 1.35rem; }
.section-kicker { color: var(--brand-pink-dark); font-weight: 800; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.feature-strip { margin-top: -1.8rem; position: relative; z-index: 3; }
.feature-tile {
 height: 100%;
 padding: 1.3rem;
 background: rgba(255,255,255,.95);
 border: 1px solid rgba(244,47,139,.11);
 border-radius: 22px;
 box-shadow: var(--brand-shadow-soft);
}
.feature-icon {
 width: 45px;
 height: 45px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 margin-bottom: .8rem;
 font-size: 1.25rem;
 background: linear-gradient(145deg, var(--brand-teal-soft), var(--brand-pink-soft));
 border-radius: 14px;
}

.card {
 border: 1px solid rgba(74, 48, 67, .09);
 border-radius: 22px;
 background: rgba(255,255,255,.97);
 box-shadow: var(--brand-shadow-soft);
}
.card-body { padding: 1.45rem; }
.product-card {
 height: 100%;
 overflow: hidden;
 border: 1px solid rgba(244, 47, 139, .09);
 transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover {
 transform: translateY(-7px);
 border-color: rgba(244, 47, 139, .22);
 box-shadow: 0 22px 44px rgba(82, 31, 64, .16);
}
.product-card .card-body { padding: 1.15rem 1.2rem 1.3rem; }
.product-card h2,
.product-card h3 { font-size: 1rem !important; min-height: 2.35rem; }
.product-thumb {
 width: 100%;
 height: 250px;
 object-fit: cover;
 background: linear-gradient(145deg, #fff, var(--brand-pink-soft));
 transition: transform .35s ease;
}
.product-card:hover .product-thumb { transform: scale(1.025); }
.price { font-size: 1.45rem; font-weight: 850; color: var(--brand-ink); }

.btn {
 min-height: 44px;
 padding: .62rem 1.05rem;
 font-weight: 750;
 border-radius: 13px;
 transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
 color: #fff;
 border-color: var(--brand-pink);
 background: linear-gradient(135deg, var(--brand-pink), var(--brand-pink-dark));
 box-shadow: 0 10px 20px rgba(244,47,139,.2);
}
.btn-primary:hover,
.btn-primary:focus {
 color: #fff;
 border-color: var(--brand-pink-dark);
 background: linear-gradient(135deg, #ff4b9e, var(--brand-pink-dark));
 box-shadow: 0 12px 26px rgba(244,47,139,.28);
}
.btn-outline-primary,
.btn-brand-outline {
 color: var(--brand-pink-dark);
 border-color: rgba(244,47,139,.48);
 background: #fff;
}
.btn-outline-primary:hover,
.btn-brand-outline:hover {
 color: #fff;
 border-color: var(--brand-pink);
 background: var(--brand-pink);
}
.btn-success { background: linear-gradient(135deg, var(--brand-teal), var(--brand-teal-dark)); border-color: var(--brand-teal-dark); }
.btn-lg { min-height: 52px; border-radius: 15px; }

.form-label { color: #353d50; font-weight: 700; }
.form-control,
.form-select {
 min-height: 46px;
 color: var(--brand-ink);
 border-color: #e1d9df;
 border-radius: 13px;
 background-color: #fff;
}
.form-control:focus,
.form-select:focus {
 border-color: rgba(244,47,139,.62);
 box-shadow: 0 0 0 .22rem rgba(244,47,139,.12);
}
textarea.form-control { min-height: 110px; }

.alert { border: 0; border-radius: 17px; box-shadow: var(--brand-shadow-soft); }
.alert-info { color: #16696b; background: var(--brand-teal-soft); }
.alert-danger { color: #92234f; background: var(--brand-pink-soft); }
.alert-warning { color: #7c5a1b; background: #fff8df; }

.table-responsive {
 max-width: 100%;
 overflow-x: auto;
 overflow-y: hidden;
 -webkit-overflow-scrolling: touch;
 background: #fff;
 border: 1px solid rgba(244,47,139,.09);
 border-radius: 20px;
 box-shadow: var(--brand-shadow-soft);
}
.table { margin-bottom: 0; }
.table thead th {
 padding: 1rem;
 color: #fff;
 font-size: .82rem;
 letter-spacing: .035em;
 text-transform: uppercase;
 background: linear-gradient(110deg, var(--brand-teal-dark), var(--brand-teal));
 border: 0;
}
.table tbody td { padding: .95rem 1rem; vertical-align: middle; border-color: #f1e9ee; }
.table tbody tr:hover { background: #fff9fc; }

.product-main-image {
 width: 100%;
 height: 560px;
 object-fit: contain;
 padding: 1rem;
 background: #fff;
 border: 1px solid rgba(244,47,139,.12) !important;
 border-radius: 26px !important;
 box-shadow: var(--brand-shadow);
}
.gallery-thumb { width: 90px; height: 90px; object-fit: cover; border-radius: 14px; }
.thumbnail-button { overflow: hidden; border-radius: 15px !important; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.thumbnail-button:hover { transform: translateY(-3px); box-shadow: var(--brand-shadow-soft); }
.product-description { white-space: normal; color: #545d70; line-height: 1.75; }
/* Cantidad de producto: validación clara y amigable */
.quantity-purchase-panel {
 padding: 1rem;
 background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,244,250,.95));
 border: 1px solid rgba(244,47,139,.13);
 border-radius: 20px;
 box-shadow: var(--brand-shadow-soft);
}
.quantity-input {
 width: 100%;
 min-height: 50px;
 font-size: 1.05rem;
 font-weight: 750;
 text-align: center;
 border: 2px solid #ead7e3;
 border-radius: 15px;
 transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.quantity-input:focus {
 border-color: var(--brand-pink);
 box-shadow: 0 0 0 .22rem rgba(244,47,139,.15);
}
.quantity-input.quantity-invalid {
 color: #8a2458;
 background: #fff8fc;
 border-color: var(--brand-pink);
 box-shadow: 0 0 0 .22rem rgba(244,47,139,.12);
}
.quantity-input:disabled {
 color: #818899;
 background: #f6f3f5;
 cursor: not-allowed;
}
.stock-help {
 min-height: 1.35rem;
 margin-top: .55rem;
 color: #596174;
 font-weight: 650;
}
.quantity-feedback {
 display: block;
 margin-top: .85rem;
 padding: .85rem 1rem;
 color: #85224f;
 font-size: .94rem;
 font-weight: 700;
 line-height: 1.45;
 background: linear-gradient(135deg, #fff0f7, #f1ffff);
 border: 1px solid #f2a5ca;
 border-left: 5px solid var(--brand-pink);
 border-radius: 14px;
 box-shadow: 0 8px 22px rgba(107, 34, 75, .08);
}
.quantity-feedback::before {
 content: "⚠";
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 1.55rem;
 height: 1.55rem;
 margin-right: .5rem;
 color: #fff;
 background: linear-gradient(135deg, var(--brand-pink), var(--brand-pink-dark));
 border-radius: 50%;
}
.admin-product-image { width: 130px; height: 130px; object-fit: cover; border-radius: 16px; }

.nav-pills {
 padding: .65rem;
 background: #fff;
 border: 1px solid rgba(244,47,139,.09);
 border-radius: 18px;
 box-shadow: var(--brand-shadow-soft);
}
.nav-pills .nav-link {
 color: #4d5363;
 font-weight: 750;
 border-radius: 12px;
}
.nav-pills .nav-link:hover { color: var(--brand-pink-dark); background: var(--brand-pink-soft); }

.auth-card { overflow: hidden; }
.auth-card::before {
 content: "";
 display: block;
 height: 7px;
 background: linear-gradient(90deg, var(--brand-teal), var(--brand-pink));
}

.store-footer {
 color: rgba(255,255,255,.88);
 background:
  radial-gradient(circle at 15% 0, rgba(32,197,199,.24), transparent 20rem),
  linear-gradient(125deg, #20263a, #34233b 60%, #42243d);
 border-top: 5px solid transparent;
 border-image: linear-gradient(90deg, var(--brand-teal), var(--brand-pink)) 1;
}
.footer-brand { color: #fff; font-size: 1.45rem; font-weight: 850; }
.footer-copy { color: rgba(255,255,255,.7); }
.footer-version { margin-top: .3rem; color: rgba(255,255,255,.52); font-size: .85rem; }

@media (max-width: 991.98px) {
 .store-navbar { min-height: 88px; }
 .store-logo { height: 68px; max-width: 195px; }
 .store-brand { min-width: 0; }
 .navbar-collapse {
  margin-top: .75rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid rgba(244,47,139,.1);
  border-radius: 18px;
  box-shadow: var(--brand-shadow-soft);
 }
 .store-user-nav { align-items: stretch; }
 .nav-register-btn { display: block; margin: .4rem 0 0; text-align: center; }
 .hero { min-height: 370px; }
 .feature-strip { margin-top: 0; }
}

@media (max-width: 575.98px) {
 .brand-announcement { min-height: 30px; font-size: .72rem; }
 .store-logo { height: 60px; max-width: 175px; }
 .store-main { padding-left: 1rem; padding-right: 1rem; }
 .hero { min-height: 340px; padding: 2rem 1.35rem !important; border-radius: 24px !important; }
 .hero h1 { font-size: 2.45rem; }
 .product-thumb { height: 210px; }
 .product-main-image { height: 390px; }
 .gallery-thumb { width: 72px; height: 72px; }
 .card-body { padding: 1.15rem; }
 .table-responsive { border-radius: 15px; }
}


/* ==========================================================
   v1.4.2 - Corrección de validación y adaptación móvil global
   ========================================================== */

*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
img, svg, video, canvas { max-width: 100%; }
.row > * { min-width: 0; }

/* Compra del producto: el aviso ocupa una fila propia y nunca se superpone. */
.quantity-purchase-grid {
 display: grid;
 grid-template-columns: minmax(145px, 185px) minmax(220px, 1fr);
 gap: 1rem;
 align-items: end;
}
.quantity-field,
.quantity-action { min-width: 0; }
.quantity-action .btn { width: 100%; min-height: 52px; }
.quantity-feedback-region {
 display: block;
 width: 100%;
 min-width: 0;
 margin-top: .85rem;
 clear: both;
}
span.quantity-feedback {
 position: static !important;
 inset: auto !important;
 z-index: auto !important;
 float: none !important;
 clear: both !important;
 width: 100% !important;
 max-width: 100% !important;
 min-height: 0;
 margin: 0 !important;
 padding: .9rem 1rem !important;
 display: grid !important;
 grid-template-columns: 1.65rem minmax(0, 1fr);
 column-gap: .65rem;
 align-items: start;
 white-space: normal !important;
 overflow: visible !important;
 overflow-wrap: anywhere;
 word-break: normal;
 line-height: 1.45;
}
span.quantity-feedback:empty { display: none !important; }
span.quantity-feedback::before {
 margin: 0 !important;
 flex: none;
}
.product-info-column { min-width: 0; }
.product-price { overflow-wrap: anywhere; }

/* Las tablas conservan todas sus columnas y se desplazan horizontalmente. */
.table-responsive {
 position: relative;
 width: 100%;
 max-width: 100%;
 overflow-x: auto !important;
 overflow-y: hidden !important;
 scrollbar-width: thin;
}
.table-responsive > .table,
.table-responsive > table { min-width: 680px; }
.table-responsive::after {
 content: "Deslice horizontalmente para ver más";
 display: none;
 padding: .55rem .8rem;
 color: var(--brand-muted);
 font-size: .75rem;
 font-weight: 650;
 text-align: center;
 background: #fffafd;
 border-top: 1px solid #f1e9ee;
}

.version-status { overflow-wrap: anywhere; }
.mobile-action-row .btn { flex: 0 1 auto; }


/* Administración de pagos: tabla compacta y responsive */
.admin-payments-panel {
 width: 100%;
 overflow: hidden;
 background: #fff;
 border: 1px solid rgba(244,47,139,.1);
 border-radius: 22px;
 box-shadow: var(--brand-shadow-soft);
}
.admin-payments-table {
 width: 100% !important;
 min-width: 0 !important;
 margin: 0;
 table-layout: fixed;
}
.admin-payments-table thead th {
 padding: .9rem .8rem;
 color: var(--brand-ink);
 font-size: .82rem;
 font-weight: 850;
 line-height: 1.2;
 background: #f8f7f8;
 border-bottom: 1px solid #e8e2e6;
 vertical-align: middle;
}
.admin-payments-table tbody td {
 padding: 1rem .8rem;
 line-height: 1.4;
 overflow-wrap: anywhere;
 word-break: normal;
 vertical-align: top;
 border-bottom: 1px solid #eee8ec;
}
.admin-payments-table tbody tr:last-child td { border-bottom: 0; }
.admin-payments-table tbody tr:nth-child(even) td { background: #fbfafb; }
.admin-payments-table .payment-col-order { width: 18%; }
.admin-payments-table .payment-col-data { width: 22%; }
.admin-payments-table .payment-col-amounts { width: 15%; }
.admin-payments-table .payment-col-status { width: 18%; }
.admin-payments-table .payment-col-review { width: 27%; }
.payment-order-cell,
.payment-data-cell,
.payment-amounts-cell,
.payment-status-cell {
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 gap: .34rem;
 min-width: 0;
}
.payment-order-number {
 color: var(--brand-ink);
 font-weight: 900;
 text-decoration: none;
}
.payment-order-number:hover { color: var(--brand-pink-dark); }
.payment-customer-name {
 color: #4f5668;
 font-size: .86rem;
 font-weight: 700;
}
.payment-data-cell { font-size: .86rem; }
.payment-data-cell > span { color: #5f6677; }
.payment-amount-main {
 color: var(--brand-ink);
 font-size: 1.04rem;
 font-weight: 900;
}
.payment-balance-label {
 margin-top: .18rem;
 color: #737b8c;
 font-size: .73rem;
 font-weight: 800;
 text-transform: uppercase;
 letter-spacing: .03em;
}
.payment-balance-value {
 color: #c91e4f;
 font-size: .93rem;
 font-weight: 850;
}
.payment-status-cell { gap: .65rem; }
.payment-receipt-link {
 width: 100%;
 max-width: 150px;
 white-space: normal;
}
.admin-payment-review {
 width: 100%;
 min-width: 0;
}
.admin-payment-review-notes {
 width: 100%;
 min-width: 0;
 min-height: 62px;
 margin-bottom: .55rem;
 resize: vertical;
}
.admin-payment-review-actions {
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: .5rem;
 width: 100%;
}
.admin-payment-action-btn {
 width: 100%;
 min-width: 0;
 padding-left: .55rem;
 padding-right: .55rem;
 text-align: center;
 white-space: nowrap;
}

/* Ajustes tablet */
@media (max-width: 991.98px) {
 .store-navbar .container { max-width: 100%; }
 .store-brand { margin-right: .75rem; }
 .store-main { max-width: 100%; }
 .product-detail-row { --bs-gutter-x: 1.5rem; }
 .product-main-image { height: min(62vw, 520px); }
 .table-responsive::after { display: block; }
 .admin-product-image { max-width: 100%; height: auto; aspect-ratio: 1 / 1; }
}

/* Ajustes celular */
@media (max-width: 767.98px) {
 body.storefront-body { font-size: .96rem; }
 .store-main { padding-top: 1.35rem !important; padding-bottom: 2rem !important; }
 h1, .h1 { font-size: clamp(1.7rem, 8vw, 2.15rem); line-height: 1.12; }
 h2, .h2 { font-size: clamp(1.4rem, 6.5vw, 1.8rem); }
 .display-6 { font-size: clamp(1.85rem, 9vw, 2.5rem); }
 .card-body { padding: 1rem; }
 .auth-card .card-body { padding: 1.15rem !important; }

 .quantity-purchase-panel { padding: .9rem; border-radius: 18px; }
 .quantity-purchase-grid { grid-template-columns: 1fr; gap: .75rem; }
 .quantity-action .btn { min-height: 50px; }
 span.quantity-feedback { padding: .82rem .85rem !important; font-size: .9rem; }

 .product-main-image { height: min(92vw, 430px); padding: .65rem; border-radius: 20px !important; }
 .product-gallery { flex-wrap: nowrap !important; overflow-x: auto; padding-bottom: .4rem; }
 .thumbnail-button { flex: 0 0 auto; }
 .gallery-thumb { width: 68px; height: 68px; }
 .product-description { font-size: .96rem; }

 .hero { min-height: 0; margin-bottom: 2rem !important; }
 .hero-actions .btn { width: 100%; }
 .hero-highlights { gap: .45rem; }
 .hero-chip { width: 100%; justify-content: flex-start; }
 .feature-strip { margin-bottom: 2rem !important; }

 .store-footer .row > div,
 .store-footer .text-md-end { text-align: center !important; }
 .footer-brand { font-size: 1.25rem; }

 .mobile-action-row { flex-direction: column; }
 .mobile-action-row .btn,
 .mobile-action-row a { width: 100%; }
 .order-total-summary { width: 100%; text-align: left !important; }
 .version-separator { display: none; }
 .version-status strong:not(:first-child) { display: inline-block; margin-left: .45rem; }

 .nav-pills { flex-wrap: nowrap !important; overflow-x: auto; padding: .5rem; }
 .nav-pills .nav-link { flex: 0 0 auto; white-space: nowrap; }
 .admin-nav-scroll { overflow-x: auto; }

 .table thead th,
 .table tbody td { padding: .78rem .8rem; }
 .table-responsive > .table,
 .table-responsive > table { min-width: 620px; }

 .admin-payments-panel {
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
 }
 .admin-payments-table,
 .admin-payments-table tbody,
 .admin-payments-table tr,
 .admin-payments-table td {
  display: block;
  width: 100% !important;
 }
 .admin-payments-table { background: transparent; }
 .admin-payments-table thead { display: none; }
 .admin-payments-table tbody tr {
  margin-bottom: 1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(244,47,139,.11);
  border-radius: 18px;
  box-shadow: var(--brand-shadow-soft);
 }
 .admin-payments-table tbody td,
 .admin-payments-table tbody tr:nth-child(even) td {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: .75rem;
  padding: .8rem .9rem;
  background: #fff;
  border-bottom: 1px solid #eee8ec;
 }
 .admin-payments-table tbody td::before {
  color: #6b7280;
  font-size: .74rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .03em;
 }
 .admin-payments-table tbody td:nth-child(1)::before { content: "Pedido"; }
 .admin-payments-table tbody td:nth-child(2)::before { content: "Pago"; }
 .admin-payments-table tbody td:nth-child(3)::before { content: "Montos"; }
 .admin-payments-table tbody td:nth-child(4)::before { content: "Estado"; }
 .admin-payments-table tbody td:nth-child(5)::before { content: "Revisión"; }
 .admin-payments-table tbody td:last-child { border-bottom: 0; }
 .admin-payment-review-actions { grid-template-columns: 1fr 1fr; }
 .payment-receipt-link { max-width: none; }

 input, select, textarea, .form-control, .form-select { font-size: 16px !important; }
 .btn { max-width: 100%; white-space: normal; }
 .d-grid > .btn { width: 100%; }
}

@media (max-width: 575.98px) {
 .brand-announcement .container { padding-left: .75rem; padding-right: .75rem; }
 .store-navbar { min-height: 78px; }
 .store-logo { height: 52px; max-width: 150px; border-radius: 12px; }
 .navbar-toggler { padding: .42rem .55rem; }
 .navbar-collapse { max-height: calc(100vh - 125px); overflow-y: auto; }
 .store-nav-link { display: flex !important; width: 100%; justify-content: flex-start; }
 .cart-link { justify-content: flex-start; }
 .nav-register-btn { width: 100%; }
 .admin-payments-table tbody td {
  grid-template-columns: 92px minmax(0, 1fr);
  gap: .6rem;
 }
 .admin-payments-table tbody td:nth-child(5) {
  display: block;
 }
 .admin-payments-table tbody td:nth-child(5)::before {
  display: block;
  margin-bottom: .55rem;
 }
 .admin-payment-review-actions { grid-template-columns: 1fr; }

 .product-card h2,
 .product-card h3 { min-height: 0; }
 .product-thumb { height: min(88vw, 340px); }
 .product-card .card-body { padding: 1rem; }

 .feature-tile { padding: 1rem; }
 .section-heading { align-items: stretch !important; }
 .section-heading > a { width: 100%; }
 .table-responsive { border-radius: 14px; }
 .table-responsive > .table,
 .table-responsive > table { min-width: 580px; }
}

@media (max-width: 380px) {
 .store-main { padding-left: .75rem; padding-right: .75rem; }
 .quantity-purchase-panel { padding: .75rem; }
 span.quantity-feedback { grid-template-columns: 1.45rem minmax(0, 1fr); column-gap: .5rem; padding: .75rem !important; }
 .store-logo { max-width: 132px; height: 48px; }
}


/* ==========================================================
   v1.4.3 - Confirmación de correo amigable
   ========================================================== */

.email-confirmation-page {
 min-height: 58vh;
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 1rem 0 2rem;
}

.email-confirmation-card {
 width: min(100%, 980px);
 display: grid;
 grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
 overflow: hidden;
 background: rgba(255, 255, 255, .98);
 border: 1px solid rgba(244, 47, 139, .13);
 border-radius: 30px;
 box-shadow: var(--brand-shadow);
}

.email-confirmation-illustration {
 position: relative;
 min-height: 520px;
 display: flex;
 align-items: center;
 justify-content: center;
 background:
  radial-gradient(circle at 20% 18%, rgba(255,255,255,.9), transparent 11rem),
  radial-gradient(circle at 80% 78%, rgba(244,47,139,.22), transparent 14rem),
  linear-gradient(145deg, var(--brand-teal-soft), #dffafa 48%, var(--brand-pink-soft));
 isolation: isolate;
}

.email-confirmation-illustration::before,
.email-confirmation-illustration::after {
 content: "";
 position: absolute;
 border-radius: 50%;
 z-index: -1;
}

.email-confirmation-illustration::before {
 width: 190px;
 height: 190px;
 top: 42px;
 left: -70px;
 background: rgba(32,197,199,.18);
}

.email-confirmation-illustration::after {
 width: 230px;
 height: 230px;
 right: -90px;
 bottom: -70px;
 background: rgba(244,47,139,.15);
}

.email-envelope {
 width: 190px;
 height: 150px;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 font-size: 4.5rem;
 background: linear-gradient(145deg, var(--brand-teal), var(--brand-teal-dark));
 border: 8px solid rgba(255,255,255,.84);
 border-radius: 32px;
 box-shadow: 0 24px 50px rgba(7,153,157,.25);
 transform: rotate(-3deg);
}

.email-check {
 position: absolute;
 width: 66px;
 height: 66px;
 right: calc(50% - 118px);
 bottom: calc(50% - 104px);
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 font-size: 2rem;
 font-weight: 900;
 background: linear-gradient(145deg, var(--brand-pink), var(--brand-pink-dark));
 border: 6px solid #fff;
 border-radius: 50%;
 box-shadow: 0 14px 26px rgba(244,47,139,.28);
}

.email-confirmation-content {
 min-width: 0;
 padding: clamp(2rem, 5vw, 4.25rem);
}

.email-confirmation-kicker {
 display: inline-flex;
 margin-bottom: .8rem;
 color: var(--brand-pink-dark);
 font-size: .78rem;
 font-weight: 850;
 letter-spacing: .12em;
 text-transform: uppercase;
}

.email-confirmation-content h1 {
 margin-bottom: .85rem;
 font-size: clamp(2rem, 5vw, 3.25rem);
 line-height: 1;
}

.email-confirmation-lead,
.email-confirmation-copy {
 color: var(--brand-muted);
 line-height: 1.7;
}

.email-address-chip {
 max-width: 100%;
 display: inline-flex;
 align-items: center;
 gap: .6rem;
 margin: .55rem 0 1.15rem;
 padding: .72rem 1rem;
 color: var(--brand-ink);
 font-weight: 800;
 background: linear-gradient(135deg, var(--brand-teal-soft), var(--brand-pink-soft));
 border: 1px solid rgba(32,197,199,.2);
 border-radius: 999px;
 overflow-wrap: anywhere;
}

.email-confirmation-actions {
 display: flex;
 flex-wrap: wrap;
 gap: .75rem;
 margin: 1.45rem 0;
}

.email-confirmation-actions .btn {
 flex: 1 1 210px;
}

.email-confirmation-help {
 margin-top: 1.4rem;
 padding: 1.15rem 1.2rem;
 background: #fffafd;
 border: 1px solid var(--brand-line);
 border-radius: 18px;
}

.email-confirmation-help h2 {
 margin-bottom: .7rem;
 font-size: 1rem;
}

.email-confirmation-help ul {
 margin: 0;
 padding-left: 1.2rem;
 color: var(--brand-muted);
 line-height: 1.65;
}

.email-confirmation-footer {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: .55rem;
 margin-top: 1.25rem;
 color: var(--brand-muted);
 font-size: .92rem;
}

.email-confirmed-result {
 max-width: 760px;
 margin: 2rem auto;
 padding: 1.4rem 1.5rem;
 text-align: center;
 font-size: 1.05rem;
 line-height: 1.65;
}

@media (max-width: 767.98px) {
 .email-confirmation-page {
  min-height: auto;
  padding-top: .25rem;
 }

 .email-confirmation-card {
  grid-template-columns: 1fr;
  border-radius: 22px;
 }

 .email-confirmation-illustration {
  min-height: 210px;
 }

 .email-envelope {
  width: 135px;
  height: 105px;
  font-size: 3rem;
  border-width: 6px;
  border-radius: 24px;
 }

 .email-check {
  width: 54px;
  height: 54px;
  right: calc(50% - 88px);
  bottom: calc(50% - 75px);
  font-size: 1.5rem;
 }

 .email-confirmation-content {
  padding: 1.4rem 1rem 1.65rem;
 }

 .email-confirmation-content h1 {
  font-size: 2rem;
 }

 .email-address-chip {
  width: 100%;
  border-radius: 14px;
 }

 .email-confirmation-actions {
  flex-direction: column;
 }

 .email-confirmation-actions .btn {
  width: 100%;
  flex: 0 0 auto;
 }

 .email-confirmation-footer {
  justify-content: center;
  text-align: center;
 }
}

/* =========================================================
   RESULTADO DE CONFIRMACIÓN DE CORREO - v1.4.6
   ========================================================= */
.confirmation-page {
 min-height: 58vh;
 display: flex;
 align-items: center;
 padding: clamp(1.5rem, 5vw, 4rem) 0;
}

.confirmation-page-inner {
 width: min(760px, 100%);
 margin: 0 auto;
}

.confirmation-result {
 position: relative;
 margin: 0;
 padding: clamp(1.6rem, 4vw, 2.8rem);
 overflow: hidden;
 text-align: center;
 background: rgba(255,255,255,.96);
 border: 1px solid var(--brand-line);
 border-radius: 28px;
 box-shadow: 0 20px 50px rgba(62,42,58,.1);
}

.confirmation-result::before {
 content: "";
 position: absolute;
 inset: 0 0 auto 0;
 height: 7px;
 background: linear-gradient(90deg,var(--brand-teal),var(--brand-pink));
}

.confirmation-result-icon {
 width: 76px;
 height: 76px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 1.1rem;
 color: #fff;
 font-size: 2.2rem;
 font-weight: 900;
 border-radius: 50%;
 box-shadow: 0 13px 28px rgba(32,197,199,.2);
}

.confirmation-result-success .confirmation-result-icon,
.confirmation-result-info .confirmation-result-icon {
 background: linear-gradient(145deg,var(--brand-teal),#159ca5);
}

.confirmation-result-warning .confirmation-result-icon {
 background: linear-gradient(145deg,#f4b740,#e78b27);
}

.confirmation-result-error .confirmation-result-icon {
 background: linear-gradient(145deg,var(--brand-pink),var(--brand-pink-dark));
}

.confirmation-result h1 {
 margin: 0 0 .75rem;
 color: var(--brand-ink);
 font-size: clamp(1.7rem,4vw,2.45rem);
 line-height: 1.15;
}

.confirmation-result p {
 max-width: 590px;
 margin: 0 auto .8rem;
 color: var(--brand-muted);
 font-size: 1.04rem;
 line-height: 1.65;
}

.confirmation-result-note {
 padding: .8rem 1rem;
 color: #37636a !important;
 background: var(--brand-teal-soft);
 border: 1px solid rgba(32,197,199,.22);
 border-radius: 15px;
}

.confirmation-result-actions {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: .75rem;
 margin-top: 1.5rem;
}

.confirmation-result-actions .btn {
 min-width: 190px;
}

@media (max-width: 575.98px) {
 .confirmation-page {
  min-height: auto;
  padding: 1rem 0 2rem;
 }

 .confirmation-result {
  padding: 1.5rem 1rem;
  border-radius: 21px;
 }

 .confirmation-result-icon {
  width: 64px;
  height: 64px;
  font-size: 1.8rem;
 }

 .confirmation-result-actions {
  flex-direction: column;
 }

 .confirmation-result-actions .btn {
  width: 100%;
  min-width: 0;
 }
}

/* ============================================================
   Detalle del pedido - miniaturas de productos
   ============================================================ */
.order-product-cell {
 display: flex;
 align-items: center;
 gap: .75rem;
 min-width: 210px;
}
.order-product-thumb {
 flex: 0 0 auto;
 width: 58px;
 height: 58px;
 object-fit: cover;
 background: #fff;
 border: 1px solid rgba(30, 41, 59, .12);
 border-radius: 12px;
 box-shadow: 0 5px 14px rgba(30, 41, 59, .08);
}
.order-product-name {
 color: var(--brand-ink);
 font-weight: 750;
 line-height: 1.3;
}

@media (max-width: 575.98px) {
 .order-product-cell {
  min-width: 175px;
  gap: .55rem;
 }
 .order-product-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
 }
}

/* ============================================================
   Descuentos de productos
   ============================================================ */
.offers-link {
 display: inline-flex;
 align-items: center;
 gap: .42rem;
 padding: .55rem 1rem !important;
 color: #fff !important;
 font-weight: 850;
 background: linear-gradient(135deg, #ff335f, #c9184a);
 border-radius: 999px;
 box-shadow: 0 10px 22px rgba(201, 24, 74, .22);
 animation: offersPulse 1.4s ease-in-out infinite;
}
.offers-link:hover,
.offers-link:focus {
 color: #fff !important;
 background: linear-gradient(135deg, #ff1f53, #a80f3e);
 box-shadow: 0 12px 26px rgba(201, 24, 74, .28);
}
.offers-link::before {
 content: "%";
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 24px;
 height: 24px;
 color: #c9184a;
 font-size: .78rem;
 font-weight: 900;
 background: #fff;
 border-radius: 50%;
 box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
@keyframes offersPulse {
 0%, 100% { transform: translateY(0); box-shadow: 0 10px 22px rgba(201, 24, 74, .22); }
 50% { transform: translateY(-1px) scale(1.04); box-shadow: 0 14px 28px rgba(201, 24, 74, .34); }
}
.product-image-wrap {
 position: relative;
 overflow: hidden;
 background: linear-gradient(145deg, #fff, var(--brand-pink-soft));
}
.product-image-wrap-discount::before {
 content: "OFERTA";
 position: absolute;
 top: 14px;
 left: -34px;
 width: 130px;
 padding: .38rem 0;
 color: #fff;
 font-size: .72rem;
 font-weight: 900;
 letter-spacing: .08em;
 text-align: center;
 background: linear-gradient(135deg, #ff8a00, #ff477e);
 box-shadow: 0 10px 20px rgba(201, 24, 74, .28);
 transform: rotate(-35deg);
 z-index: 2;
}
.product-card-discount {
 position: relative;
 border-color: rgba(214, 31, 91, .28);
 box-shadow: 0 14px 34px rgba(201, 24, 74, .14);
 background: linear-gradient(180deg, #fff 0, #fff8fb 100%);
}
.product-card-discount .card-body {
 background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,246,250,.98));
}
.discount-badge {
 position: absolute;
 top: 12px;
 right: 12px;
 min-width: 78px;
 min-height: 78px;
 padding: .35rem .5rem;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 font-size: 1rem;
 font-weight: 950;
 text-align: center;
 line-height: 1.05;
 background: radial-gradient(circle at 30% 30%, #ff6ea1, #d31357 70%);
 border: 4px solid rgba(255, 255, 255, .96);
 border-radius: 50%;
 box-shadow: 0 12px 24px rgba(201, 24, 74, .34);
 z-index: 3;
}
.product-discount-box {
 margin-top: .25rem;
 margin-bottom: .35rem;
 padding: .8rem .85rem;
 background: linear-gradient(135deg, #fff0f6, #ffffff 55%, #fff6df);
 border: 1px solid rgba(201, 24, 74, .18);
 border-radius: 18px;
 box-shadow: 0 10px 20px rgba(201, 24, 74, .08);
}
.product-offer-chip {
 display: inline-flex;
 align-items: center;
 gap: .35rem;
 margin-bottom: .45rem;
 padding: .3rem .65rem;
 color: #a1144b;
 font-size: .74rem;
 font-weight: 900;
 text-transform: uppercase;
 letter-spacing: .04em;
 background: #fff;
 border: 1px solid rgba(201, 24, 74, .12);
 border-radius: 999px;
}
.product-price-old {
 color: #7f8795;
 font-size: .9rem;
 font-weight: 700;
 text-decoration: line-through;
}
.product-price-now-label {
 display: inline-block;
 margin-top: .35rem;
 margin-bottom: .1rem;
 color: #9b2753;
 font-size: .74rem;
 font-weight: 900;
 text-transform: uppercase;
 letter-spacing: .06em;
}
.product-price-sale-wrap {
 display: flex;
 flex-direction: column;
 gap: .05rem;
}
.product-price-sale {
 color: #c9184a;
 font-size: 2rem;
 line-height: 1;
 text-shadow: 0 2px 0 rgba(255,255,255,.8);
}
.product-savings {
 display: inline-flex;
 align-items: center;
 gap: .3rem;
 margin-top: .45rem;
 margin-bottom: 0;
 padding: .38rem .72rem;
 color: #0f8068;
 font-size: .82rem;
 font-weight: 900;
 background: #e8fff7;
 border-radius: 999px;
}
.product-savings::before {
 content: "💸";
 font-size: .9rem;
}
.home-discount-link {
 display: flex;
 align-items: center;
 gap: 1rem;
 padding: 1.25rem 1.4rem;
 color: #fff;
 text-decoration: none;
 background: linear-gradient(110deg, #c9184a, #f42f8b 56%, #20b9bd);
 border-radius: 24px;
 box-shadow: 0 16px 34px rgba(201, 24, 74, .2);
 transition: transform .22s ease, box-shadow .22s ease;
}
.home-discount-link:hover {
 color: #fff;
 transform: translateY(-3px);
 box-shadow: 0 22px 42px rgba(201, 24, 74, .27);
}
.home-discount-icon,
.discount-catalog-icon {
 flex: 0 0 auto;
 width: 54px;
 height: 54px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 color: #c9184a;
 font-size: 1.45rem;
 font-weight: 950;
 background: #fff;
 border-radius: 18px;
 box-shadow: 0 8px 18px rgba(86, 15, 44, .2);
}
.home-discount-copy {
 display: flex;
 flex: 1 1 auto;
 flex-direction: column;
 gap: .15rem;
}
.home-discount-copy strong { font-size: 1.15rem; }
.home-discount-copy span { color: rgba(255,255,255,.88); }
.home-discount-action { font-weight: 850; white-space: nowrap; }
.discount-catalog-banner {
 display: flex;
 align-items: center;
 gap: 1rem;
 padding: 1.2rem 1.35rem;
 color: #6f1538;
 background: linear-gradient(115deg, #fff0f5, #fff 60%, #e9fbfb);
 border: 1px solid rgba(201, 24, 74, .18);
 border-radius: 22px;
 box-shadow: var(--brand-shadow-soft);
}
.discount-catalog-banner .discount-catalog-icon {
 color: #fff;
 background: linear-gradient(135deg, #ff477e, #c9184a);
 box-shadow: none;
}
.admin-discount-card {
 border-color: rgba(201, 24, 74, .2);
 background: linear-gradient(145deg, #fff, #fff8fb);
}
.discount-toggle {
 display: inline-flex;
 align-items: center;
 gap: .75rem;
 margin: 0;
 padding: .55rem .9rem;
 background: #fff;
 border: 1px solid rgba(201, 24, 74, .12);
 border-radius: 16px;
 box-shadow: 0 8px 18px rgba(201, 24, 74, .08);
}
.discount-toggle .form-check-input {
 float: none;
 margin: 0;
 width: 2.9rem;
 height: 1.55rem;
 cursor: pointer;
}
.discount-toggle .discount-toggle-label {
 margin: 0;
 color: #4d5363;
 font-size: .98rem;
 font-weight: 800;
 cursor: pointer;
}
.discount-fields-disabled {
 opacity: .55;
 filter: grayscale(.15);
}
.product-discount-summary {
 padding: 1.1rem 1.15rem;
 margin-bottom: 1rem;
 color: #76163a;
 background: linear-gradient(120deg, #fff0f5, #ffffff 62%, #fff7e7);
 border: 1px solid rgba(201, 24, 74, .22);
 border-radius: 20px;
 box-shadow: 0 14px 28px rgba(201, 24, 74, .1);
}
.product-detail-offer-label {
 display: inline-flex;
 align-items: center;
 margin-bottom: .45rem;
 padding: .35rem .68rem;
 color: #a1144b;
 font-size: .74rem;
 font-weight: 900;
 text-transform: uppercase;
 letter-spacing: .04em;
 background: #fff;
 border: 1px solid rgba(201, 24, 74, .14);
 border-radius: 999px;
}
.product-detail-price-old {
 color: #7f8795;
 font-size: 1rem;
 font-weight: 700;
 text-decoration: line-through;
}
.product-detail-price-sale-wrap {
 display: flex;
 flex-direction: column;
 gap: .1rem;
 margin-top: .35rem;
}
.product-detail-price-sale {
 color: #c9184a;
 font-size: clamp(2.2rem, 4vw, 3.2rem);
 font-weight: 900;
 line-height: 1.02;
 text-shadow: 0 2px 0 rgba(255,255,255,.85);
}
.product-detail-savings {
 display: inline-flex;
 align-items: center;
 gap: .35rem;
 margin-top: .55rem;
 padding: .42rem .75rem;
 color: #138a70;
 font-size: .95rem;
 font-weight: 900;
 background: #e8fff7;
 border-radius: 999px;
}
.product-detail-savings::before {
 content: "💸";
}
.product-detail-discount-badge {
 display: inline-flex;
 align-items: center;
 padding: .48rem .85rem;
 margin-bottom: .55rem;
 color: #fff;
 font-size: .9rem;
 font-weight: 900;
 background: linear-gradient(135deg, #ff477e, #c9184a);
 border-radius: 999px;
 box-shadow: 0 10px 18px rgba(201, 24, 74, .22);
}

@media (max-width: 767.98px) {
 .home-discount-link { align-items: flex-start; flex-wrap: wrap; }
 .home-discount-action { width: 100%; padding-left: 70px; }
 .offers-link { justify-content: center; }
 .discount-toggle {
  width: 100%;
  justify-content: flex-start;
 }
}

/* ============================================================
   v1.8.5 - Imágenes en el detalle administrativo del pedido
   ============================================================ */
.admin-order-items-table-wrap > .table,
.admin-order-items-table-wrap > table {
 min-width: 920px;
}
.admin-order-items-table th:first-child,
.admin-order-items-table td:first-child {
 width: 92px;
 text-align: center;
}
.admin-order-product-image-link {
 display: inline-flex;
 flex-direction: column;
 align-items: center;
 gap: .28rem;
 color: var(--brand-pink-dark);
 font-size: .72rem;
 font-weight: 800;
 text-decoration: none;
}
.admin-order-product-image-link:hover,
.admin-order-product-image-link:focus {
 color: var(--brand-pink-dark);
}
.admin-order-product-thumb {
 width: 60px;
 height: 60px;
 display: block;
 object-fit: cover;
 background: #fff;
 border: 1px solid rgba(36, 41, 58, .12);
 border-radius: 12px;
 box-shadow: 0 7px 16px rgba(36, 41, 58, .1);
 transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.admin-order-product-image-link:hover .admin-order-product-thumb,
.admin-order-product-image-link:focus .admin-order-product-thumb {
 transform: scale(1.08);
 border-color: rgba(244, 47, 139, .45);
 box-shadow: 0 10px 22px rgba(201, 24, 74, .18);
}
.admin-order-product-image-caption {
 line-height: 1;
}
.admin-order-product-image-modal-content {
 overflow: hidden;
 border: 0;
 border-radius: 22px;
 box-shadow: 0 28px 70px rgba(30, 24, 35, .28);
}
.admin-order-product-large-image {
 max-width: 100%;
 max-height: 72vh;
 object-fit: contain;
 background: #fff;
 border-radius: 14px;
}

@media (max-width: 767.98px) {
 .admin-order-items-table-wrap > .table,
 .admin-order-items-table-wrap > table { min-width: 820px; }
 .admin-order-product-thumb { width: 52px; height: 52px; }
}


/* ============================================================
   Doble factor de autenticación administrativo
   ============================================================ */
.two-factor-card { border-color: rgba(201, 24, 74, .14); }
.two-factor-qr {
 max-width: 220px;
 width: 100%;
 height: auto;
 padding: .75rem;
 background: #fff;
 border: 1px solid rgba(201, 24, 74, .14);
 border-radius: 18px;
 box-shadow: 0 12px 26px rgba(201, 24, 74, .1);
}
.two-factor-manual-key {
 display: inline-block;
 padding: .35rem .5rem;
 color: #76163a;
 font-size: .98rem;
 background: #fff7fb;
 border-radius: 10px;
 word-break: break-all;
}
.two-factor-recovery-list {
 columns: 2;
 -webkit-columns: 2;
 padding: 1rem 1.25rem;
 background: #fff8fb;
 border: 1px solid rgba(201, 24, 74, .12);
 border-radius: 16px;
}
.two-factor-recovery-list li {
 margin-bottom: .45rem;
 font-family: Consolas, 'Courier New', monospace;
 font-weight: 800;
 letter-spacing: .04em;
}
@media (max-width: 575.98px) {
 .two-factor-recovery-list { columns: 1; -webkit-columns: 1; }
}

/* ============================================================
   v1.9.0 - Menú administrativo y permisos
   ============================================================ */
.admin-menu-card {
 padding: 1.05rem;
 background: rgba(255,255,255,.94);
 border: 1px solid rgba(244, 47, 139, .1);
 border-radius: 24px;
 box-shadow: var(--brand-shadow-soft);
}
.admin-menu-title {
 display: flex;
 align-items: center;
 gap: .55rem;
 margin-bottom: .9rem;
 color: var(--brand-ink);
 font-weight: 900;
}
.admin-menu-title-icon {
 width: 34px;
 height: 34px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 background: linear-gradient(135deg, #fff0f5, #e9ffff);
 border-radius: 12px;
}
.admin-menu-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
 gap: .75rem;
}
.admin-menu-item {
 display: flex;
 align-items: center;
 gap: .75rem;
 min-height: 74px;
 padding: .85rem .9rem;
 color: var(--brand-ink);
 text-decoration: none;
 background: #fff;
 border: 1px solid rgba(19, 27, 51, .08);
 border-radius: 18px;
 transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.admin-menu-item:hover,
.admin-menu-item:focus {
 color: var(--brand-ink);
 border-color: rgba(244, 47, 139, .3);
 box-shadow: 0 12px 24px rgba(74, 18, 47, .09);
 transform: translateY(-2px);
}
.admin-menu-item.active {
 color: #fff;
 background: linear-gradient(135deg, var(--brand-pink), var(--brand-pink-dark));
 border-color: transparent;
 box-shadow: 0 14px 26px rgba(244, 47, 139, .22);
}
.admin-menu-icon {
 flex: 0 0 auto;
 width: 42px;
 height: 42px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 color: var(--brand-pink-dark);
 font-weight: 900;
 background: linear-gradient(135deg, #fff0f5, #f1ffff);
 border-radius: 15px;
}
.admin-menu-item.active .admin-menu-icon {
 color: var(--brand-pink-dark);
 background: #fff;
}
.admin-menu-text {
 min-width: 0;
 display: flex;
 flex-direction: column;
 gap: .1rem;
}
.admin-menu-text strong { font-size: .95rem; }
.admin-menu-text small {
 color: var(--brand-muted);
 font-size: .76rem;
 line-height: 1.2;
}
.admin-menu-item.active .admin-menu-text small { color: rgba(255,255,255,.82); }
.admin-user-editor { border-color: rgba(244, 47, 139, .13); }
.admin-2fa-choice { background: #fff8fc; border: 1px solid rgba(244, 47, 139, .13); }
.admin-permission-list {
 max-height: 360px;
 overflow: auto;
 padding: .85rem;
 background: #fff;
 border: 1px solid rgba(19, 27, 51, .08);
 border-radius: 18px;
}
.admin-permission-checks { list-style: none; margin: 0; padding: 0; }
.admin-permission-checks li {
 display: block;
 padding: .42rem .2rem;
 border-bottom: 1px solid #f1e9ee;
}
.admin-permission-checks li:last-child { border-bottom: none; }
.admin-users-table-wrap > .table,
.admin-users-table-wrap > table { min-width: 860px; }
@media (max-width: 767.98px) {
 .admin-menu-grid { grid-template-columns: 1fr; }
 .admin-menu-item { min-height: 66px; }
 .admin-menu-text small { display: none; }
 .admin-users-table-wrap > .table,
 .admin-users-table-wrap > table { min-width: 760px; }
}

/* ============================================================
   v1.10.0 - Contado / apartados
   ============================================================ */
.purchase-type-list label {
 display: inline-block;
 margin-left: .45rem;
 font-weight: 800;
 color: #263044;
}
.purchase-type-list input[type="radio"] {
 transform: scale(1.15);
 margin-right: .2rem;
}
.checkout-summary-card {
 top: 1rem;
}

/* ============================================================
   v1.10.3 - Indicadores visuales de apartados y pedidos listos
   ============================================================ */
.admin-order-row-layaway > td {
 background-color: #fff3cd !important;
}
.admin-order-row-ready > td {
 background-color: #d1e7dd !important;
}
.admin-order-kind-badge {
 font-weight: 900;
 letter-spacing: .04em;
}
.admin-order-kind-layaway {
 color: #d10000 !important;
 background: #fff !important;
 border: 1px solid rgba(209, 0, 0, .28);
}
.admin-orders-table .btn {
 white-space: nowrap;
}
.admin-order-detail-layaway-alert {
 padding: 1rem 1.1rem;
 color: #5f3b00;
 background: linear-gradient(135deg, #fff3cd, #fffaf0);
 border: 1px solid rgba(255, 193, 7, .45);
 border-left: 7px solid #ffc107;
 border-radius: 18px;
 box-shadow: 0 12px 24px rgba(126, 82, 0, .08);
}
.admin-order-detail-layaway-title {
 display: inline-flex;
 align-items: center;
 padding: .38rem .75rem;
 margin-bottom: .45rem;
 color: #d10000;
 font-size: .92rem;
 font-weight: 950;
 letter-spacing: .05em;
 background: #fff;
 border: 1px solid rgba(209, 0, 0, .22);
 border-radius: 999px;
}
.admin-order-detail-layaway-copy {
 color: #5f3b00;
 font-weight: 700;
}
.admin-order-detail-layaway-due-soon {
 padding: .8rem .95rem;
 color: #fff;
 background: linear-gradient(135deg, #d10000, #a00000);
 border-radius: 14px;
 box-shadow: 0 10px 18px rgba(209, 0, 0, .22);
}
.admin-order-detail-layaway-paid {
 padding: .8rem .95rem;
 color: #0f5132;
 background: #d1e7dd;
 border: 1px solid rgba(15, 81, 50, .18);
 border-radius: 14px;
}

/* ============================================================
   v1.10.4 - Ajustes visuales para apartados del cliente
   ============================================================ */
.my-orders-table-wrap > .table,
.my-orders-table-wrap > table {
 min-width: 780px;
}
.my-order-layaway-badge {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: fit-content;
 padding: .28rem .7rem;
 color: #fff;
 font-size: .78rem;
 font-weight: 900;
 letter-spacing: .05em;
 background: #d10000;
 border-radius: 999px;
}
.my-order-layaway-due {
 color: #8b1d1d;
 font-size: .82rem;
 font-weight: 700;
}
.my-order-row-layaway > td {
 border-top-color: rgba(209,0,0,.08);
 border-bottom-color: rgba(209,0,0,.08);
}
.my-order-row-pending > td {
 background: #ffd9d9 !important;
}
.customer-layaway-alert {
 padding: 1rem 1.1rem;
 color: #651616;
 background: linear-gradient(135deg, #fff1f1, #ffe1e1);
 border: 1px solid rgba(209,0,0,.2);
 border-left: 8px solid #d10000;
 border-radius: 18px;
 box-shadow: 0 12px 24px rgba(209, 0, 0, .08);
}
.customer-layaway-badge {
 display: inline-flex;
 align-items: center;
 padding: .4rem .8rem;
 margin-bottom: .55rem;
 color: #fff;
 font-size: .86rem;
 font-weight: 900;
 letter-spacing: .08em;
 background: #d10000;
 border-radius: 999px;
}
.customer-layaway-copy {
 font-size: 1rem;
 font-weight: 700;
 line-height: 1.7;
}
.customer-layaway-due-soon {
 padding: .85rem .95rem;
 color: #fff;
 background: linear-gradient(135deg, #d10000, #8f0000);
 border-radius: 14px;
}

/* ============================================================
   v1.10.7 - Habilitación controlada de Finalizar compra
   ============================================================ */
.checkout-requirements-message {
 margin: 0 0 .85rem 0;
 padding: .78rem .9rem;
 color: #7a3b00;
 font-size: .9rem;
 line-height: 1.45;
 background: #fff4de;
 border: 1px solid rgba(255, 193, 7, .4);
 border-radius: 14px;
}
.checkout-requirements-ready {
 color: #0f5132;
 background: #d1e7dd;
 border-color: rgba(15, 81, 50, .22);
}
.checkout-submit-disabled,
.checkout-submit-disabled:disabled {
 opacity: .55;
 cursor: not-allowed;
 filter: grayscale(.18);
 box-shadow: none !important;
}

/* ============================================================
   v1.10.8 - Pantalla de reportes administrativos
   ============================================================ */
.admin-report-filter-card {
 border-color: rgba(236, 45, 136, .12);
 box-shadow: 0 14px 30px rgba(236, 45, 136, .08);
}
.admin-report-summary-card {
 border-color: rgba(21, 159, 168, .14);
 background: linear-gradient(135deg, #ffffff, #f7ffff);
}
.admin-report-table-wrap {
 border-radius: 18px;
 box-shadow: 0 12px 28px rgba(22, 45, 82, .08);
}
.admin-report-table {
 min-width: 980px;
 margin-bottom: 0;
}
.admin-report-table th {
 white-space: nowrap;
 color: #162d52;
 font-weight: 900;
 background: #f8f9fb;
}
.admin-report-table td {
 vertical-align: middle;
}
@media (max-width: 767.98px) {
 .admin-report-table { min-width: 900px; }
}


/* ============================================================
   v1.10.14 - Administración en páginas separadas y móvil
   ============================================================ */
.admin-dashboard-heading {
 margin-bottom: 1rem;
}
.admin-dashboard-stats .card {
 border-color: rgba(244, 47, 139, .1);
 box-shadow: 0 12px 24px rgba(74, 18, 47, .06);
}
.admin-subpage-toolbar {
 display: flex;
 align-items: center;
 justify-content: flex-start;
 margin: .25rem 0 1.1rem;
}
.admin-back-link {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: .45rem;
 min-height: 44px;
 padding: .68rem 1rem;
 color: var(--brand-pink-dark);
 font-weight: 900;
 text-decoration: none;
 background: #fff;
 border: 1px solid rgba(244, 47, 139, .28);
 border-radius: 999px;
 box-shadow: 0 10px 22px rgba(74, 18, 47, .07);
 transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.admin-back-link:hover,
.admin-back-link:focus {
 color: #fff;
 background: linear-gradient(135deg, var(--brand-pink), var(--brand-pink-dark));
 border-color: transparent;
 box-shadow: 0 14px 28px rgba(244, 47, 139, .22);
 transform: translateY(-1px);
}
@media (max-width: 767.98px) {
 .admin-dashboard-heading h1,
 .store-main h1 {
  word-break: normal;
  overflow-wrap: anywhere;
 }
 .admin-menu-card {
  padding: .85rem;
  border-radius: 20px;
 }
 .admin-menu-grid {
  grid-template-columns: 1fr;
  gap: .62rem;
 }
 .admin-menu-item {
  min-height: 64px;
  padding: .78rem .82rem;
  border-radius: 16px;
 }
 .admin-menu-icon {
  width: 38px;
  height: 38px;
  border-radius: 13px;
 }
 .admin-menu-text strong {
  font-size: .92rem;
 }
 .admin-subpage-toolbar {
  margin-top: .35rem;
 }
 .admin-back-link {
  width: 100%;
  min-height: 48px;
  padding: .8rem .9rem;
 }
 .admin-dashboard-stats .display-6 {
  font-size: clamp(1.6rem, 9vw, 2.1rem);
 }
}


/* ============================================================
   v1.10.15 - Colores de pedidos y validación de reporte de pago
   ============================================================ */
.admin-orders-table tbody tr > td {
 background-color: #fff !important;
}
.admin-order-row-pending-payment > td {
 background-color: #ffd84d !important;
 color: #241900;
}
.admin-order-row-ready > td {
 background-color: #78e08f !important;
 color: #053016;
}
.admin-order-row-canceled > td {
 background-color: #ef4444 !important;
 color: #ffffff;
}
.admin-order-row-layaway > td {
 background-color: #fff !important;
}
.admin-order-legend {
 line-height: 1.7;
}
.admin-order-legend-chip {
 display: inline-flex;
 align-items: center;
 min-height: 24px;
 padding: .2rem .55rem;
 margin: 0 .2rem;
 color: #172033;
 font-weight: 900;
 border-radius: 999px;
 border: 1px solid rgba(0, 0, 0, .08);
 white-space: nowrap;
}
.admin-order-legend-canceled {
 background: #ef4444;
 color: #ffffff;
}
.admin-order-legend-pending {
 background: #ffd84d;
}
.admin-order-legend-ready {
 background: #78e08f;
}
.report-payment-requirements-message {
 margin-top: .25rem;
 margin-bottom: .35rem;
}
.report-payment-submit-disabled,
.report-payment-submit-disabled:disabled {
 opacity: .55;
 cursor: not-allowed;
 filter: grayscale(.18);
 box-shadow: none !important;
}
@media (max-width: 767.98px) {
 .admin-orders-table-wrap {
  border-radius: 18px;
 }
 .admin-order-legend-chip {
  margin-top: .2rem;
 }
 .report-payment-requirements-message {
  font-size: .86rem;
 }
}


/* ============================================================
   v1.10.16 - Prioridad correcta de colores en pedidos
   ============================================================ */
.admin-orders-table tbody tr > td {
 background-color: #fff !important;
}
.admin-orders-table tbody tr.admin-order-row-layaway > td {
 background-color: #fff !important;
}
.admin-orders-table tbody tr.admin-order-row-pending-payment > td,
.admin-orders-table tbody tr.admin-order-row-pending-payment.admin-order-row-layaway > td,
.admin-orders-table tbody tr.admin-order-row-layaway.admin-order-row-pending-payment > td {
 background-color: #ffd400 !important;
 color: #241900 !important;
}
.admin-orders-table tbody tr.admin-order-row-ready > td,
.admin-orders-table tbody tr.admin-order-row-ready.admin-order-row-layaway > td {
 background-color: #4ade80 !important;
 color: #053016 !important;
}
.admin-orders-table tbody tr.admin-order-row-pending-payment .btn,
.admin-orders-table tbody tr.admin-order-row-ready .btn {
 background-color: #fff !important;
}


/* ============================================================
   v1.10.17 - Avance animado del pedido y saldo pendiente
   ============================================================ */
.order-progress-card {
 position: relative;
 margin: 0 0 1.25rem;
 padding: 1.2rem;
 overflow: hidden;
 color: #18243d;
 background:
  radial-gradient(circle at 8% 10%, rgba(20, 184, 166, .16), transparent 30%),
  radial-gradient(circle at 95% 12%, rgba(236, 45, 136, .18), transparent 34%),
  linear-gradient(135deg, #ffffff, #fff5fb 52%, #f4ffff);
 border: 1px solid rgba(236, 45, 136, .16);
 border-radius: 24px;
 box-shadow: 0 18px 38px rgba(37, 32, 74, .09);
}
.order-progress-card::before {
 content: "";
 position: absolute;
 inset: 0;
 pointer-events: none;
 background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.62) 45%, transparent 70%);
 transform: translateX(-100%);
 animation: order-progress-shine 4.8s ease-in-out infinite;
}
.order-progress-top {
 position: relative;
 z-index: 1;
 display: flex;
 justify-content: space-between;
 gap: 1rem;
 align-items: flex-start;
 margin-bottom: 1.1rem;
}
.order-progress-eyebrow {
 display: inline-flex;
 margin-bottom: .35rem;
 padding: .28rem .72rem;
 color: #c20f6a;
 font-size: .74rem;
 font-weight: 900;
 letter-spacing: .13em;
 text-transform: uppercase;
 background: #fff;
 border: 1px solid rgba(236, 45, 136, .18);
 border-radius: 999px;
 box-shadow: 0 8px 18px rgba(236, 45, 136, .08);
}
.order-progress-top h2 {
 margin: 0;
 color: #18243d;
 font-size: clamp(1.25rem, 3vw, 1.75rem);
 font-weight: 900;
}
.order-progress-summary {
 min-width: 210px;
 padding: .8rem .95rem;
 text-align: right;
 background: rgba(255,255,255,.78);
 border: 1px solid rgba(20, 184, 166, .18);
 border-radius: 18px;
 box-shadow: 0 10px 24px rgba(20, 184, 166, .08);
}
.order-progress-summary span {
 color: #596175;
 font-size: .88rem;
}
.order-progress-rail {
 position: relative;
 z-index: 1;
 display: grid;
 grid-template-columns: repeat(5, 1fr);
 gap: .55rem;
 padding: 1.25rem .15rem .45rem;
}
.order-progress-line,
.order-progress-fill {
 position: absolute;
 left: 8%;
 right: 8%;
 top: 2.05rem;
 height: 8px;
 border-radius: 999px;
}
.order-progress-line {
 background: #d9dce5;
}
.order-progress-fill {
 right: auto;
 width: var(--progress-width, 0%);
 max-width: 84%;
 background: linear-gradient(90deg, #14b8a6, #2367ff, #ec2d88);
 box-shadow: 0 0 18px rgba(236, 45, 136, .22);
 animation: order-progress-grow .9s ease both;
}
.order-progress-step {
 position: relative;
 z-index: 2;
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 gap: .25rem;
 color: #6b7280;
}
.order-progress-dot {
 display: grid;
 place-items: center;
 width: 44px;
 height: 44px;
 margin-bottom: .28rem;
 color: #7a7f8e;
 font-size: 1.1rem;
 background: #fff;
 border: 3px solid #c9ced8;
 border-radius: 50%;
 box-shadow: 0 8px 18px rgba(18, 28, 55, .08);
 transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.order-progress-step.is-done .order-progress-dot,
.order-progress-step.is-current .order-progress-dot {
 color: #fff;
 border-color: transparent;
 background: linear-gradient(135deg, #14b8a6, #2367ff 48%, #ec2d88);
 box-shadow: 0 10px 22px rgba(35, 103, 255, .22);
}
.order-progress-step.is-current .order-progress-dot {
 transform: scale(1.1);
 animation: order-progress-pulse 1.8s ease-in-out infinite;
}
.order-progress-step strong {
 color: inherit;
 font-size: .86rem;
 font-weight: 900;
 line-height: 1.2;
}
.order-progress-step.is-done strong,
.order-progress-step.is-current strong {
 color: #18243d;
}
.order-progress-step small {
 max-width: 130px;
 line-height: 1.25;
}
.order-payment-timeline {
 position: relative;
 z-index: 1;
 margin-top: 1rem;
 padding: 1rem;
 background: rgba(255,255,255,.75);
 border: 1px dashed rgba(236, 45, 136, .22);
 border-radius: 20px;
}
.order-payment-timeline-title {
 margin-bottom: .75rem;
 color: #18243d;
 font-weight: 900;
}
.order-payment-markers {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
 gap: .7rem;
}
.order-payment-marker {
 display: flex;
 gap: .7rem;
 align-items: flex-start;
 padding: .8rem;
 background: #fff;
 border: 1px solid rgba(18, 28, 55, .08);
 border-radius: 18px;
 box-shadow: 0 10px 20px rgba(18, 28, 55, .06);
 animation: order-payment-pop .45s ease both;
}
.order-payment-marker-number {
 display: grid;
 place-items: center;
 flex: 0 0 auto;
 width: 34px;
 height: 34px;
 color: #fff;
 font-weight: 900;
 background: #2367ff;
 border-radius: 999px;
 box-shadow: 0 8px 18px rgba(35, 103, 255, .2);
}
.order-payment-marker.is-approved .order-payment-marker-number { background: #0f9f5f; }
.order-payment-marker.is-review .order-payment-marker-number { background: #f59f00; }
.order-payment-marker.is-rejected .order-payment-marker-number { background: #dc3545; }
.order-payment-marker-body {
 min-width: 0;
 display: flex;
 flex-direction: column;
 gap: .12rem;
}
.order-payment-marker-body strong {
 color: #18243d;
 font-size: .95rem;
}
.order-payment-marker-body span,
.order-payment-marker-body small {
 color: #5e6678;
 font-size: .82rem;
 line-height: 1.3;
}
.order-payment-marker-body em {
 display: inline-flex;
 align-self: flex-start;
 margin-top: .18rem;
 padding: .16rem .48rem;
 color: #172033;
 font-size: .72rem;
 font-style: normal;
 font-weight: 900;
 background: #eef2ff;
 border-radius: 999px;
}
.order-payment-marker.is-approved em { color: #0f5132; background: #d1e7dd; }
.order-payment-marker.is-review em { color: #7a3b00; background: #fff3cd; }
.order-payment-marker.is-rejected em { color: #842029; background: #f8d7da; }
.order-payment-empty {
 padding: .9rem;
 color: #596175;
 background: #fff;
 border-radius: 16px;
}
@keyframes order-progress-grow {
 from { width: 0; }
 to { width: var(--progress-width, 0%); }
}
@keyframes order-progress-pulse {
 0%, 100% { box-shadow: 0 10px 22px rgba(35, 103, 255, .22), 0 0 0 0 rgba(236, 45, 136, .26); }
 50% { box-shadow: 0 12px 26px rgba(35, 103, 255, .26), 0 0 0 10px rgba(236, 45, 136, 0); }
}
@keyframes order-progress-shine {
 0%, 55% { transform: translateX(-100%); }
 100% { transform: translateX(100%); }
}
@keyframes order-payment-pop {
 from { opacity: 0; transform: translateY(8px) scale(.98); }
 to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 767.98px) {
 .order-progress-card { padding: .95rem; border-radius: 20px; }
 .order-progress-top { flex-direction: column; }
 .order-progress-summary { width: 100%; text-align: left; }
 .order-progress-rail {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  padding: .25rem 0 .25rem .2rem;
 }
 .order-progress-line,
 .order-progress-fill { display: none; }
 .order-progress-step {
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: .7rem;
  padding: .65rem;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(18, 28, 55, .06);
  border-radius: 16px;
 }
 .order-progress-dot {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
 }
 .order-progress-step small { max-width: none; }
 .order-payment-timeline { padding: .85rem; }
 .order-payment-markers { grid-template-columns: 1fr; }
}


/* ============================================================
   v1.10.18 - Refuerzo definitivo de colores en lista de pedidos
   ============================================================ */
.admin-orders-table tr.admin-order-row-normal > td,
.admin-orders-table .admin-order-row-normal > td {
 background-color: #ffffff !important;
 color: #111111 !important;
}
.admin-orders-table tr.admin-order-row-pending-payment > td,
.admin-orders-table .admin-order-row-pending-payment > td,
.admin-orders-table tr.admin-order-row-pending-payment.admin-order-row-layaway > td,
.admin-orders-table tr.admin-order-row-layaway.admin-order-row-pending-payment > td {
 background-color: #ffd400 !important;
 color: #241900 !important;
}
.admin-orders-table tr.admin-order-row-ready > td,
.admin-orders-table .admin-order-row-ready > td,
.admin-orders-table tr.admin-order-row-ready.admin-order-row-layaway > td {
 background-color: #4ade80 !important;
 color: #053016 !important;
}
.admin-orders-table tr.admin-order-row-pending-payment a,
.admin-orders-table tr.admin-order-row-ready a {
 color: #e91e7f !important;
 font-weight: 900;
}
.admin-orders-table tr.admin-order-row-pending-payment .btn,
.admin-orders-table tr.admin-order-row-ready .btn {
 background-color: #ffffff !important;
 color: #e91e7f !important;
 border-color: #ff5aa5 !important;
}

/* Estadísticas administrativas */
.admin-analytics-filter-card {
 border-color: rgba(236, 72, 153, .18);
}
.admin-analytics-cards .card {
 border-radius: 18px;
 box-shadow: 0 14px 35px rgba(15, 23, 42, .06);
}
.admin-analytics-cards strong {
 color: #1f2a44;
}

.recaptcha-box {
 margin-top: .75rem;
}
.recaptcha-box .g-recaptcha {
 max-width: 100%;
 overflow-x: auto;
}
