/* ============================================================
   Flowvik Shopping — Frontend CSS
   Diseño alineado con flowvik.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --fvs-primary:     #0F3B2C;
    --fvs-primary-l:   #1D6B4F;
    --fvs-accent:      #2E9E74;
    --fvs-danger:      #C0392B;
    --fvs-gold:        #B8860B;
    --fvs-white:       #FFFFFF;
    --fvs-gray-50:     #F9FAFB;
    --fvs-gray-100:    #F3F4F6;
    --fvs-gray-200:    #E5E7EB;
    --fvs-gray-400:    #9CA3AF;
    --fvs-gray-500:    #6B7280;
    --fvs-gray-700:    #374151;
    --fvs-gray-900:    #111827;
    --fvs-radius:      4px;
    --fvs-radius-lg:   8px;
    --fvs-font:        'Inter', -apple-system, sans-serif;
    --fvs-shadow:      0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --fvs-shadow-lg:   0 10px 40px rgba(0,0,0,0.12);
}

* { box-sizing: border-box; }

/* ============================================================
   TIENDA — Grid de productos
   ============================================================ */
.fvs-shop {
    font-family: var(--fvs-font);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.fvs-shop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--fvs-gray-200);
}

.fvs-shop-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--fvs-gray-400);
}

.fvs-products-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}
.fvs-cols-2 { grid-template-columns: repeat(2, 1fr) !important; }
.fvs-cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
.fvs-cols-4 { grid-template-columns: repeat(4, 1fr) !important; }

@media (max-width: 900px) {
    .fvs-cols-3, .fvs-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .fvs-products-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   TARJETA DE PRODUCTO
   ============================================================ */
.fvs-product-card {
    background: var(--fvs-white);
    border: 1px solid var(--fvs-gray-200);
    border-radius: var(--fvs-radius-lg);
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    cursor: pointer;
    position: relative;
}
.fvs-product-card:hover {
    box-shadow: var(--fvs-shadow-lg);
    transform: translateY(-3px);
}
.fvs-product-card.fvs-featured {
    border-color: var(--fvs-primary);
}

/* Imagen */
.fvs-product-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--fvs-gray-50);
}
.fvs-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.fvs-product-card:hover .fvs-product-thumb img {
    transform: scale(1.04);
}
.fvs-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 52px;
    color: var(--fvs-gray-400);
}

/* Badges */
.fvs-badge {
    position: absolute;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.fvs-badge-featured {
    top: 12px;
    left: 12px;
    background: var(--fvs-primary);
    color: var(--fvs-white);
    border-radius: 2px;
}
.fvs-badge-discount {
    top: 12px;
    right: 12px;
    background: var(--fvs-danger);
    color: var(--fvs-white);
    border-radius: 2px;
}

/* Info */
.fvs-product-info {
    padding: 16px;
}
.fvs-product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--fvs-gray-900);
    margin: 0 0 6px;
    line-height: 1.4;
    font-family: var(--fvs-font) !important;
}
.fvs-product-desc {
    font-size: 12px;
    color: var(--fvs-gray-500);
    margin: 0 0 12px;
    line-height: 1.6;
}
.fvs-product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
}
.fvs-price {
    font-size: 17px;
    font-weight: 700;
    color: var(--fvs-primary);
}
.fvs-price-sale {
    font-size: 17px;
    font-weight: 700;
    color: var(--fvs-danger);
}
.fvs-price-regular {
    font-size: 13px;
    color: var(--fvs-gray-400);
    text-decoration: line-through;
}

/* Botón añadir */
.fvs-btn-cart {
    width: 100%;
    padding: 11px 16px;
    background: var(--fvs-primary);
    color: var(--fvs-white);
    border: none;
    border-radius: var(--fvs-radius);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--fvs-font);
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.1s;
}
.fvs-btn-cart:hover {
    background: var(--fvs-primary-l);
}
.fvs-btn-cart:active {
    transform: scale(0.98);
}
.fvs-btn-cart.fvs-btn-disabled {
    background: var(--fvs-gray-200);
    color: var(--fvs-gray-400);
    cursor: not-allowed;
}
.fvs-btn-cart.fvs-added {
    background: var(--fvs-accent);
}

/* ============================================================
   DRAWER CARRITO LATERAL
   ============================================================ */
.fvs-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.fvs-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.fvs-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 100vw;
    background: var(--fvs-white);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    font-family: var(--fvs-font);
    box-shadow: -8px 0 32px rgba(0,0,0,0.12);
}
.fvs-drawer.open {
    transform: translateX(0);
}

.fvs-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--fvs-gray-200);
}
.fvs-drawer-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--fvs-gray-900);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.fvs-drawer-count {
    font-size: 12px;
    color: var(--fvs-gray-400);
    font-weight: 400;
}
.fvs-drawer-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--fvs-gray-100);
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    color: var(--fvs-gray-500);
    transition: background 0.2s;
}
.fvs-drawer-close:hover {
    background: var(--fvs-gray-200);
}

.fvs-drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.fvs-drawer-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--fvs-gray-100);
}
.fvs-drawer-item:last-child {
    border-bottom: none;
}
.fvs-drawer-item-img {
    width: 72px;
    height: 72px;
    border-radius: var(--fvs-radius);
    object-fit: cover;
    background: var(--fvs-gray-100);
    flex-shrink: 0;
}
.fvs-drawer-item-placeholder {
    width: 72px;
    height: 72px;
    border-radius: var(--fvs-radius);
    background: var(--fvs-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}
.fvs-drawer-item-info {
    flex: 1;
}
.fvs-drawer-item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--fvs-gray-900);
    margin: 0 0 4px;
    line-height: 1.4;
}
.fvs-drawer-item-price {
    font-size: 13px;
    color: var(--fvs-primary);
    font-weight: 700;
    margin-bottom: 10px;
}
.fvs-drawer-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--fvs-gray-200);
    border-radius: var(--fvs-radius);
    width: fit-content;
}
.fvs-drawer-item-qty button {
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--fvs-gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.fvs-drawer-item-qty button:hover {
    background: var(--fvs-gray-100);
}
.fvs-drawer-item-qty span {
    min-width: 28px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--fvs-gray-900);
    border-left: 1px solid var(--fvs-gray-200);
    border-right: 1px solid var(--fvs-gray-200);
    padding: 0 6px;
    height: 30px;
    line-height: 30px;
}
.fvs-drawer-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fvs-gray-400);
    font-size: 13px;
    padding: 4px;
    transition: color 0.2s;
    flex-shrink: 0;
    margin-top: 2px;
}
.fvs-drawer-remove:hover {
    color: var(--fvs-danger);
}

/* Carrito vacío */
.fvs-drawer-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 12px;
    color: var(--fvs-gray-400);
    padding: 40px 20px;
    text-align: center;
}
.fvs-drawer-empty-icon {
    font-size: 48px;
    opacity: 0.4;
}
.fvs-drawer-empty p {
    font-size: 14px;
    margin: 0;
}

/* Footer drawer */
.fvs-drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--fvs-gray-200);
    background: var(--fvs-white);
}

.fvs-drawer-shipping-bar {
    margin-bottom: 16px;
}
.fvs-drawer-shipping-text {
    font-size: 12px;
    color: var(--fvs-gray-500);
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
}
.fvs-drawer-shipping-text span:last-child {
    font-weight: 600;
    color: var(--fvs-primary);
}
.fvs-shipping-progress {
    height: 3px;
    background: var(--fvs-gray-200);
    border-radius: 10px;
    overflow: hidden;
}
.fvs-shipping-progress-bar {
    height: 100%;
    background: var(--fvs-primary);
    border-radius: 10px;
    transition: width 0.4s ease;
}

.fvs-drawer-totals {
    margin-bottom: 16px;
}
.fvs-drawer-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--fvs-gray-500);
    margin-bottom: 6px;
}
.fvs-drawer-total-main {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    color: var(--fvs-gray-900);
    padding-top: 10px;
    margin-top: 6px;
    border-top: 1px solid var(--fvs-gray-200);
}

.fvs-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fvs-btn-checkout-drawer {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--fvs-primary);
    color: var(--fvs-white);
    border: none;
    border-radius: var(--fvs-radius);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--fvs-font);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: background 0.2s;
}
.fvs-btn-checkout-drawer:hover {
    background: var(--fvs-primary-l);
    color: var(--fvs-white);
}
.fvs-btn-continue {
    display: block;
    width: 100%;
    padding: 11px;
    background: none;
    color: var(--fvs-gray-500);
    border: 1px solid var(--fvs-gray-200);
    border-radius: var(--fvs-radius);
    font-size: 13px;
    font-weight: 500;
    font-family: var(--fvs-font);
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}
.fvs-btn-continue:hover {
    border-color: var(--fvs-primary);
    color: var(--fvs-primary);
}

/* ============================================================
   PÁGINA CARRITO
   ============================================================ */
.fvs-cart-page {
    font-family: var(--fvs-font);
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 20px 80px;
}
.fvs-cart-page h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--fvs-gray-900);
    margin: 0 0 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--fvs-gray-200);
}
.fvs-cart-empty {
    text-align: center;
    padding: 80px 20px;
}
.fvs-cart-empty span {
    font-size: 56px;
    display: block;
    margin-bottom: 16px;
    opacity: 0.3;
}
.fvs-cart-empty h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--fvs-gray-700);
    margin: 0 0 20px;
}
.fvs-cart-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}
@media (max-width: 820px) {
    .fvs-cart-layout { grid-template-columns: 1fr; }
}

.fvs-cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--fvs-gray-100);
}
.fvs-cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--fvs-radius);
    background: var(--fvs-gray-100);
}
.fvs-cart-item-placeholder {
    width: 80px;
    height: 80px;
    border-radius: var(--fvs-radius);
    background: var(--fvs-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}
.fvs-cart-item-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--fvs-gray-900);
    margin: 0 0 4px;
}
.fvs-cart-item-price {
    font-size: 13px;
    color: var(--fvs-gray-500);
}
.fvs-cart-item-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--fvs-gray-200);
    border-radius: var(--fvs-radius);
}
.fvs-cart-item-qty button {
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--fvs-gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
}
.fvs-cart-item-qty button:hover { background: var(--fvs-gray-50); }
.fvs-cart-item-qty span {
    min-width: 32px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    border-left: 1px solid var(--fvs-gray-200);
    border-right: 1px solid var(--fvs-gray-200);
    height: 32px;
    line-height: 32px;
}
.fvs-cart-item-subtotal {
    font-size: 15px;
    font-weight: 700;
    color: var(--fvs-gray-900);
    min-width: 70px;
    text-align: right;
}
.fvs-cart-remove {
    background: none;
    border: none;
    color: var(--fvs-gray-400);
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
    transition: color 0.2s;
    line-height: 1;
}
.fvs-cart-remove:hover { color: var(--fvs-danger); }

/* Cupón */
.fvs-coupon-wrap {
    display: flex;
    gap: 8px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--fvs-gray-100);
}
.fvs-coupon-wrap input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--fvs-gray-200);
    border-radius: var(--fvs-radius);
    font-size: 13px;
    font-family: var(--fvs-font);
    color: var(--fvs-gray-900);
    text-transform: uppercase;
}
.fvs-coupon-wrap input:focus {
    outline: none;
    border-color: var(--fvs-primary);
}
.fvs-coupon-wrap button {
    padding: 10px 20px;
    background: var(--fvs-gray-900);
    color: var(--fvs-white);
    border: none;
    border-radius: var(--fvs-radius);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--fvs-font);
    cursor: pointer;
    white-space: nowrap;
}
#fvsCouponMsg {
    font-size: 12px;
    align-self: center;
    color: var(--fvs-accent);
}

/* Resumen carrito */
.fvs-cart-summary {
    background: var(--fvs-gray-50);
    border: 1px solid var(--fvs-gray-200);
    border-radius: var(--fvs-radius-lg);
    padding: 24px;
    position: sticky;
    top: 24px;
}
.fvs-cart-summary h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--fvs-gray-400);
    margin: 0 0 20px;
}
.fvs-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--fvs-gray-700);
    margin-bottom: 10px;
}
.fvs-discount-row { color: var(--fvs-accent); font-weight: 500; }
.fvs-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    color: var(--fvs-gray-900);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--fvs-gray-200);
}
.fvs-free-shipping-hint {
    font-size: 12px;
    color: var(--fvs-accent);
    margin: 12px 0 0;
    text-align: center;
    font-weight: 500;
}
.fvs-btn-checkout {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--fvs-primary);
    color: var(--fvs-white);
    border: none;
    border-radius: var(--fvs-radius);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--fvs-font);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    margin-top: 16px;
    letter-spacing: 0.3px;
    transition: background 0.2s;
}
.fvs-btn-checkout:hover {
    background: var(--fvs-primary-l);
    color: var(--fvs-white);
}
.fvs-btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: var(--fvs-primary);
    color: var(--fvs-white);
    border-radius: var(--fvs-radius);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    font-family: var(--fvs-font);
    transition: background 0.2s;
}
.fvs-btn-primary:hover { background: var(--fvs-primary-l); color: var(--fvs-white); }

/* ============================================================
   CHECKOUT
   ============================================================ */
.fvs-checkout {
    font-family: var(--fvs-font);
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 20px 80px;
}
.fvs-checkout h2 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--fvs-gray-400);
    margin: 0 0 20px;
}
.fvs-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}
@media (max-width: 820px) {
    .fvs-checkout-layout { grid-template-columns: 1fr; }
    .fvs-checkout-summary { order: -1; }
}

.fvs-field { margin-bottom: 16px; }
.fvs-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--fvs-gray-500);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.fvs-field input,
.fvs-field select,
.fvs-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--fvs-gray-200);
    border-radius: var(--fvs-radius);
    font-size: 14px;
    font-family: var(--fvs-font);
    color: var(--fvs-gray-900);
    background: var(--fvs-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.fvs-field input:focus,
.fvs-field select:focus,
.fvs-field textarea:focus {
    outline: none;
    border-color: var(--fvs-primary);
    box-shadow: 0 0 0 3px rgba(15, 59, 44, 0.08);
}
.fvs-field textarea { min-height: 80px; resize: vertical; }
.fvs-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 480px) { .fvs-field-row { grid-template-columns: 1fr; } }

.fvs-payment-methods {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.fvs-payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--fvs-gray-200);
    border-radius: var(--fvs-radius);
    cursor: pointer;
    font-size: 14px;
    color: var(--fvs-gray-700);
    transition: border-color 0.2s, background 0.2s;
    font-family: var(--fvs-font);
}
.fvs-payment-option input { width: auto; margin: 0; }
.fvs-payment-option:has(input:checked) {
    border-color: var(--fvs-primary);
    background: rgba(15, 59, 44, 0.04);
    color: var(--fvs-primary);
    font-weight: 600;
}

/* Resumen checkout */
.fvs-checkout-summary {
    background: var(--fvs-gray-50);
    border: 1px solid var(--fvs-gray-200);
    border-radius: var(--fvs-radius-lg);
    padding: 24px;
    position: sticky;
    top: 24px;
}
.fvs-checkout-summary h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--fvs-gray-400);
    margin: 0 0 16px;
}
.fvs-checkout-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--fvs-gray-100);
    font-size: 13px;
    color: var(--fvs-gray-700);
}
.fvs-checkout-item img {
    width: 52px;
    height: 52px;
    border-radius: var(--fvs-radius);
    object-fit: cover;
    background: var(--fvs-gray-200);
    flex-shrink: 0;
}
.fvs-checkout-item div:last-child {
    margin-left: auto;
    font-weight: 600;
    color: var(--fvs-gray-900);
}
.fvs-checkout-summary hr {
    border: none;
    border-top: 1px solid var(--fvs-gray-200);
    margin: 14px 0;
}

/* Botón confirmar */
.fvs-btn-place-order {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--fvs-primary);
    color: var(--fvs-white);
    border: none;
    border-radius: var(--fvs-radius);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--fvs-font);
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.3px;
    margin-top: 20px;
    transition: background 0.2s;
}
.fvs-btn-place-order:hover { background: var(--fvs-primary-l); }
.fvs-btn-place-order:disabled {
    background: var(--fvs-gray-400);
    cursor: not-allowed;
}

/* Mensajes */
#fvsCheckoutMsg {
    font-size: 13px;
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: var(--fvs-radius);
    background: #FEF3C7;
    color: #92400E;
    display: none;
}
#fvsCheckoutMsg.error {
    background: #FEE2E2;
    color: #991B1B;
    display: block;
}
#fvsCheckoutMsg.info {
    background: #DBEAFE;
    color: #1E40AF;
    display: block;
}

/* ============================================================
   ICONO CARRITO EN MENÚ
   ============================================================ */
.fvs-cart-menu-item a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--fvs-gray-700);
    text-decoration: none;
}
.fvs-cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--fvs-primary);
    color: var(--fvs-white);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    font-family: var(--fvs-font);
}

/* ============================================================
   STRIPE ELEMENT
   ============================================================ */
#fvsStripeElement {
    padding: 12px 14px;
    border: 1px solid var(--fvs-gray-200);
    border-radius: var(--fvs-radius);
    background: var(--fvs-white);
    transition: border-color 0.2s;
}
#fvsStripeElement.StripeElement--focus {
    border-color: var(--fvs-primary);
    box-shadow: 0 0 0 3px rgba(15, 59, 44, 0.08);
}
#fvsStripeError {
    color: var(--fvs-danger);
    font-size: 12px;
    margin-top: 6px;
    font-family: var(--fvs-font);
}