.produtos-section {
    min-height: 70vh;
    padding: 80px 0;
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
}

.page-title span {
    color: var(--primary);
}

.produtos-comprados {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.produto-comprado-card {
    background: var(--card);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
}

.produto-comprado-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    transform: translateY(-5px);
}

.produto-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    background: #0a0a0a;
}

.produto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.produto-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.produto-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.produto-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin: 0;
}

.badge-ativo {
    background: #00ff00;
    color: black;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

.produto-info {
    margin-bottom: 20px;
}

.produto-info p {
    margin: 10px 0;
    color: #ccc;
}

.produto-info strong {
    color: white;
}

.btn-download {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
}

.btn-download:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.cart-icon-large {
    margin-bottom: 30px;
    opacity: 0.3;
}

.empty-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 10px;
}

.text-red {
    color: var(--primary);
    font-weight: bold;
}

.empty-state h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.empty-state p {
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-back {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    padding: 10px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.btn-main {
    display: inline-block;
    background: #2a2a2a;
    color: white;
    padding: 15px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5),
                0 0 40px rgba(255, 0, 0, 0.3),
                inset 0 0 20px rgba(255, 0, 0, 0.1);
}

.btn-main:hover {
    background: #333;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8),
                0 0 60px rgba(255, 0, 0, 0.5),
                inset 0 0 30px rgba(255, 0, 0, 0.2);
    transform: scale(1.05);
}

.cart-total {
    background: #1a1a1a;
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 20px 30px;
    margin-top: 30px;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cart-total h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cart-total span {
    color: var(--primary);
}

.btn-finalizar {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-finalizar:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
}

.btn-remove {
    width: 100%;
    background: #333;
    color: white;
    border: 1px solid #555;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    background: #555;
    border-color: var(--primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
