/* ============================================================
   EXTRAS.CSS — Los Señorones
   Estilos adicionales: botón flotante, merch, carrito
   Se carga después de styles.css
   ============================================================ */

/* ===== BOTÓN FLOTANTE DE CONTRATACIONES ===== */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.floating-btn-main {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4af37, #b8932a);
    color: #1a0a00;
    padding: 14px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    font-family: inherit;
    position: relative;
}

.floating-btn-main:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.7);
    background: linear-gradient(135deg, #e8c547, #d4af37);
}

.floating-btn-main i {
    font-size: 1.2rem;
}

.floating-btn-pulse {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.4);
    animation: pulse-ring 2s infinite;
    pointer-events: none;
}

@keyframes pulse-ring {
    0%   { transform: scale(1); opacity: 0.7; }
    70%  { transform: scale(1.12); opacity: 0; }
    100% { transform: scale(1.12); opacity: 0; }
}

/* ===== STREAMING ICONS HOVER ===== */
.streaming-icon:hover {
    transform: scale(1.2);
}

/* ===== SECCIÓN MERCHANDISING ===== */
#merch {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #0d0500 0%, #1a0a00 50%, #0d0500 100%);
    position: relative;
    overflow: hidden;
}

#merch::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 70%);
    pointer-events: none;
}

#merch h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.merch-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.merch-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.merch-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.6);
    box-shadow: 0 20px 50px rgba(212,175,55,0.15);
}

.merch-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #d4af37;
    color: #1a0a00;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

.merch-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #1a0a00 0%, #2a1500 50%, #1a0a00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.merch-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(212,175,55,0.5);
}

.merch-image-placeholder i {
    font-size: 4rem;
}

.merch-image-placeholder span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

.merch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.merch-card:hover .merch-image img {
    transform: scale(1.05);
}

.merch-info {
    padding: 1.4rem;
}

.merch-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
}

.merch-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.merch-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.merch-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #d4af37;
}

.merch-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    border: 1.5px solid #d4af37;
    color: #d4af37;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.merch-btn:hover {
    background: #d4af37;
    color: #1a0a00;
}

.merch-cta {
    text-align: center;
    padding: 2.5rem;
    background: rgba(212,175,55,0.06);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.merch-cta p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.merch-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

/* ===== CARRITO DE COMPRAS ===== */
.cart-fab {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    background: linear-gradient(135deg, #1a0a00, #2a1500);
    border: 2px solid #d4af37;
    color: #d4af37;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    font-size: 1.4rem;
}

.cart-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(212,175,55,0.4);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #d4af37;
    color: #1a0a00;
    font-size: 0.7rem;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.cart-count.visible {
    opacity: 1;
    transform: scale(1);
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 95vw;
    height: 100vh;
    background: #110600;
    border-left: 1px solid rgba(212,175,55,0.3);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 50px rgba(0,0,0,0.7);
}

.cart-drawer.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.cart-header h3 {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s;
    line-height: 1;
}

.cart-close:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(212,175,55,0.3) transparent;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 1rem;
    color: rgba(255,255,255,0.3);
}

.cart-empty i {
    font-size: 3.5rem;
    color: rgba(212,175,55,0.2);
}

.cart-empty p {
    font-size: 1rem;
    letter-spacing: 1px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

.cart-item-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #2a1500, #1a0a00);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.cart-item-price {
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 700;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    color: #d4af37;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1;
}

.qty-btn:hover {
    background: rgba(212,175,55,0.25);
}

.qty-num {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: rgba(255,100,100,0.5);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 4px;
    transition: color 0.2s;
    margin-left: 4px;
}

.cart-item-remove:hover {
    color: rgba(255,100,100,0.9);
}

.cart-footer {
    padding: 1.2rem 1.5rem;
    border-top: 1px solid rgba(212,175,55,0.2);
    background: rgba(212,175,55,0.04);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cart-total-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-total-price {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: 800;
}

.cart-checkout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4af37, #b8932a);
    color: #1a0a00;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cart-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

.cart-checkout-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .floating-btn {
        bottom: 20px;
        right: 16px;
    }
    .floating-btn-main {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    .floating-btn-main span.btn-text {
        display: none;
    }
    .floating-btn-main i {
        font-size: 1.4rem;
    }
    .cart-fab {
        bottom: 20px;
        left: 16px;
    }
}