.merch-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.merch-item {
    background: #404040;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.merch-item:hover {
    transform: translateY(-5px);
}

.merch-content {
    display: flex;
    height: 100%;
}

.merch-info {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.merch-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.merch-info p {
    color: #ccc;
    margin-bottom: 1rem;
}

.merch-content img {
    width: 45%;
    object-fit: cover;
    border-left: 3px solid #FFA500;
}

.price {
    color: #FFA500;
    font-size: 1.75rem;
    font-weight: bold;
    margin: 1rem 0;
}

.buy-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FFA500;
    color: #333;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.buy-button:hover {
    background: #ff9900;
    transform: scale(1.05);
}

.merch-badge {
    position: absolute;
    top: 15px;
    left: -15px;
    padding: 0.5rem 1.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 25px;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
    z-index: 2;
}

.merch-badge::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(0,0,0,0.2);
}

.merch-badge.bestseller {
    background: #ff4757;
    transform: rotate(-5deg);
}

.merch-badge.new {
    background: #2ed573;
    transform: rotate(5deg);
    left: auto;
    right: -15px;
}

.merch-badge .fas {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .merch-content {
        flex-direction: column;
    }
    
    .merch-content img {
        width: 100%;
        height: 200px;
        border-left: none;
        border-top: 3px solid #FFA500;
    }
    
    .merch-badge {
        left: 10px;
        transform: rotate(0);
    }
    
    .merch-badge.new {
        right: 10px;
        left: auto;
    }
}