:root{
    --red-color : #930912;
    --red2-color: rgba(203, 10, 10, 0.5);
    --dark-bg: #0a0a0a;
    --card-bg: #2e2e2e;
    --text-color: #e0e0e0;
}

body {
    color: var(--text-color);
    
    margin: 0;
    background-color: var(--dark-bg);
}

/* merch-container */
.merch-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
    margin-bottom: 200px;

}

.merch-item {
    width: 100%;
    padding: 5rem 0;
    border-bottom: 1px solid #333;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    background-color: var(--card-bg);
    border-radius: 10px;
    margin: 3rem 0;
    padding: 1rem;
}

.left-content {
    width: 350px;
    position: relative;
}

.left-content h5 {
    font-size: 1.8rem;
    font-weight: normal;
    color: var(--text-color);
    margin: 0 0 0 0;
    border-bottom: 2px solid #333;
}

.left-content img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 1rem;
    border: 2px solid #333;
}

.right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 300px;
}

.right-content p {
    color: #ccc;
    line-height: 1.5;
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
}


.price-section {
    background: var(--red-color);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price {
    color: white;
    font-size: 1.8rem;
    font-weight: normal;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price::before {
    content: 'Price: ';
    font-size: 0.6rem;
    color: rgba(255,255,255,0.8);
    font-weight: normal;
}

.btn {
    background: #ffffff;
    color: var(--red-color);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: normal;
    border: 2px solid var(--red-color);
}

.btn:hover {
    background: var(--red2-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .merch-item {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .left-content {
        width: 100%;
    }
    
    .left-content img {
        height: 300px;
    }
    
    .right-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .price-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .price {
        font-size: 1.6rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

.alert {
    padding: 2rem;
    background: #ffe8e9;
    color: var(--red-color);
    border: 2px solid var(--red-color);
    border-radius: 8px;
    text-align: center;
    font-size: 1.2rem;
    margin: 3rem 0;
}