/**
 * DIGITAL WAVE - COLECCIONES DARK MODE
 * 🖤 Black Friday Edition 🖤
 */

/* ============================================
   VARIABLES - DARK MODE
   ============================================ */
:root {
    /* Colores brillantes para dark mode */
    --primary: #818cf8;           /* Azul brillante */
    --primary-dark: #6366f1;      /* Azul medio */
    --secondary: #a78bfa;         /* Púrpura brillante */
    --success: #34d399;           /* Verde brillante */
    --danger: #f87171;            /* Rojo brillante */
    
    /* Fondos oscuros */
    --dark: #0f0f0f;              /* Negro profundo */
    --dark-medium: #1a1a1a;       /* Gris muy oscuro */
    --dark-light: #2d2d2d;        /* Gris oscuro */
    --dark-lighter: #404040;      /* Gris medio-oscuro */
    
    /* Textos claros */
    --text-primary: #ffffff;      /* Blanco */
    --text-secondary: #d1d5db;    /* Gris claro */
    --text-muted: #9ca3af;        /* Gris medio */
    
    /* Efectos */
    --glow-primary: rgba(129, 140, 248, 0.3);
    --glow-success: rgba(52, 211, 153, 0.3);
}

/* ============================================
   HEADER - DARK MODE
   ============================================ */
.dw-header {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(129, 140, 248, 0.2);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--secondary);
    text-shadow: 0 0 20px var(--glow-primary);
}

.logo-icon {
    font-size: 2rem;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(129, 140, 248, 0.1);
}

.nav-link.active {
    color: var(--text-primary);
    background: var(--primary);
    box-shadow: 0 0 20px var(--glow-primary);
}

.lang-toggle {
    padding: 0.5rem 1rem;
    background: var(--dark-light);
    border: 1px solid rgba(129, 140, 248, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 0 15px var(--glow-primary);
}

/* ============================================
   HERO SECTION - DARK MODE
   ============================================ */
.hero-section {
    padding: 3rem 0;
    text-align: center;
    background: rgba(26, 26, 26, 0.5);
    border-bottom: 1px solid rgba(129, 140, 248, 0.1);
}

.hero-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px var(--glow-primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* ============================================
   TABS - DARK MODE
   ============================================ */
.tabs-section {
    padding: 2rem 0;
}

.tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background: var(--dark-medium);
    border: 2px solid rgba(129, 140, 248, 0.2);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 20px var(--glow-primary);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--glow-primary);
}

/* ============================================
   TAB CONTENT
   ============================================ */
.tab-content {
    display: none;
    padding: 2rem 0;
}

.tab-content.active {
    display: block;
}

/* ============================================
   COLLECTION PROGRESS - DARK MODE
   ============================================ */
.collection-progress {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(129, 140, 248, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.progress-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
}

.progress-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 10px var(--glow-primary);
}

.progress-bar {
    height: 30px;
    background: var(--dark-light);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid rgba(129, 140, 248, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transition: width 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-weight: 700;
    box-shadow: 0 0 20px var(--glow-primary);
}

.progress-info {
    text-align: center;
    margin-bottom: 1rem;
}

.progress-info p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.progress-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-view-cart {
    padding: 1rem 2rem;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--glow-primary);
}

.btn-clear {
    padding: 1rem 2rem;
    background: rgba(248, 113, 113, 0.1);
    border: 2px solid var(--danger);
    border-radius: 12px;
    color: var(--danger);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear:hover {
    background: var(--danger);
    color: var(--dark);
    transform: translateY(-2px);
}

/* ============================================
   SEARCH - DARK MODE
   ============================================ */
.search-section {
    margin-bottom: 2rem;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
}

.search-box input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--dark-medium);
    border: 2px solid rgba(129, 140, 248, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--glow-primary);
}

/* ============================================
   SONGS GRID - DARK MODE
   ============================================ */
.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.song-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(129, 140, 248, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.song-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--glow-primary);
}

.song-card.in-cart {
    border-color: var(--success);
    box-shadow: 0 0 20px var(--glow-success);
}

/* Portada con preview */
.song-cover-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--dark-light);
}

.song-cover-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.song-card:hover .song-cover-preview img {
    transform: scale(1.1);
}

.play-overlay-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.song-card:hover .play-overlay-preview {
    opacity: 1;
}

.play-overlay-preview .btn-preview {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: var(--dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-overlay-preview .btn-preview:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px var(--glow-primary);
}

/* Info de canción */
.song-info-collection {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    text-align: center;
}

.song-title {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.song-genre {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.song-actions {
    margin-top: auto;
    display: flex;
    gap: 0.5rem;
}

.btn-add-song {
    flex: 1;
    padding: 0.75rem;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    color: var(--dark);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-song:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--glow-primary);
}

.btn-add-song:disabled {
    background: var(--dark-light);
    color: var(--text-muted);
    cursor: not-allowed;
    transform: none;
}

.btn-add-song.added {
    background: var(--success);
    color: var(--dark);
}

/* ============================================
   COLLECTIONS GRID - DARK MODE
   ============================================ */
.collections-intro {
    background: rgba(26, 26, 26, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    text-align: center;
    margin-bottom: 3rem;
}

.collections-intro h3 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--glow-primary);
}

.collections-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.collection-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(129, 140, 248, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--glow-primary);
    border-color: var(--primary);
}

.collection-cover {
    font-size: 5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--glow-primary));
}

.collection-title {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.collection-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.collection-count {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.collection-price {
    color: var(--success);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px var(--glow-success);
}

/* Botón Ver Canciones */
.btn-view-songs {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.btn-view-songs:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-primary);
}

/* Botón Comprar Colección */
.btn-buy-collection {
    width: 100%;
    padding: 1rem;
    background: var(--success);
    border: none;
    border-radius: 12px;
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy-collection:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px var(--glow-success);
}

/* ============================================
   MODAL - DARK MODE
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--dark-medium);
    border: 1px solid rgba(129, 140, 248, 0.3);
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px var(--glow-primary);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(129, 140, 248, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: var(--primary);
    font-size: 1.5rem;
    text-shadow: 0 0 10px var(--glow-primary);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(248, 113, 113, 0.2);
    color: var(--danger);
    transform: rotate(90deg);
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.cart-items {
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(64, 64, 64, 0.3);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(129, 140, 248, 0.1);
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    color: var(--text-primary);
    font-weight: 600;
}

.cart-item-genre {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.btn-remove {
    background: rgba(248, 113, 113, 0.2);
    border: 1px solid var(--danger);
    color: var(--danger);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    background: var(--danger);
    color: var(--dark);
}

.cart-summary {
    background: rgba(64, 64, 64, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(129, 140, 248, 0.2);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.summary-row.total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    padding-top: 1rem;
    border-top: 1px solid rgba(129, 140, 248, 0.2);
    text-shadow: 0 0 10px var(--glow-primary);
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(129, 140, 248, 0.2);
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    background: var(--success);
    border: none;
    border-radius: 12px;
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-checkout:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-success);
}

.btn-checkout:disabled {
    background: var(--dark-light);
    color: var(--text-muted);
    cursor: not-allowed;
}

/* ============================================
   MODAL DE CANCIONES (COLECCIONES) - DARK MODE
   ============================================ */
.modal-songs {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.modal-songs.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content-songs {
    position: relative;
    background: var(--dark-medium);
    border: 1px solid rgba(129, 140, 248, 0.3);
    border-radius: 15px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px var(--glow-primary);
    z-index: 2001;
}

/* Lista de canciones */
.songs-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.song-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(64, 64, 64, 0.3);
    border: 1px solid rgba(129, 140, 248, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.song-item:hover {
    background: rgba(64, 64, 64, 0.5);
    border-color: var(--primary);
}

.song-number {
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(129, 140, 248, 0.2);
    border-radius: 50%;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.song-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(129, 140, 248, 0.2);
}

.song-details {
    flex: 1;
    min-width: 0;
}

.song-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-artist {
    color: var(--text-muted);
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-play-preview {
    background: var(--primary);
    border: none;
    color: var(--dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-play-preview:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--glow-primary);
}

.btn-play-preview:active {
    transform: scale(0.95);
}

/* Footer del modal con info y botón de compra */
.modal-footer-info {
    padding: 1.5rem;
    border-top: 1px solid rgba(129, 140, 248, 0.2);
    background: rgba(26, 26, 26, 0.5);
}

.modal-footer-info p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.modal-footer-info .price-info {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--glow-success);
}

.btn-buy-collection-modal {
    width: 100%;
    padding: 1rem;
    background: var(--success);
    border: none;
    border-radius: 12px;
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy-collection-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-success);
}

   ============================================ */
.dw-footer {
    background: rgba(15, 15, 15, 0.9);
    border-top: 1px solid rgba(129, 140, 248, 0.2);
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

.dw-footer p {
    color: var(--text-muted);
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.loading-text {
    text-align: center;
    color: var(--text-secondary);
    padding: 3rem;
    font-size: 1.2rem;
}

/* ============================================
   MINI PLAYER - DARK MODE
   ============================================ */
.mini-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(129, 140, 248, 0.3);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mini-player-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.mini-player-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.mini-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-artist {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-player-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.mini-btn {
    background: var(--primary);
    border: none;
    color: var(--dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mini-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--glow-primary);
}

.mini-btn:active {
    transform: scale(1);
}

.mini-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--dark-light);
}

.mini-progress-fill {
    height: 100%;
    background: var(--primary);
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--glow-primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .songs-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .progress-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .progress-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-view-cart,
    .btn-clear {
        width: 100%;
    }
}