@import url('variables.css');
@import url('navigation.css');

/* Merch Page */
.merch-section {
    min-height: 100vh;
    background-color: var(--dark-coffee-900);
    padding: 4rem 1.5rem;
}

.merch-container {
    max-width: 80rem;
    margin: 0 auto;
}

.merch-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--rosy-copper-500);
    margin-bottom: 4rem;
}

.merch-item {
    margin-bottom: 5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.merch-description {
    flex: 0 0 60%;
}

.merch-description h3 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--apricot-cream-500);
    margin-bottom: 1.5rem;
}

.merch-description p {
    color: var(--dark-coffee-200);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.merch-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--rosy-copper-500);
}

.btn-buy {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background-color: var(--rosy-copper-500);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-buy:hover {
    background-color: var(--rosy-copper-600);
    transform: translateY(-2px);
}

.merch-image {
    flex: 0 0 40%;
    aspect-ratio: 1;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.merch-image.coffee {
    background: linear-gradient(to bottom right, var(--dark-coffee-700), var(--dark-coffee-900));
}

.merch-image.apricot {
    background: linear-gradient(to bottom right, var(--apricot-cream-700), var(--apricot-cream-900));
}

.merch-image.carrot {
    background: linear-gradient(to bottom right, var(--carrot-orange-700), var(--carrot-orange-900));
}

.merch-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.merch-divider {
    height: 4px;
    background-color: var(--dark-coffee-700);
    margin-bottom: 5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .merch-item {
        flex-direction: column;
    }

    .merch-description,
    .merch-image {
        flex: 0 0 100%;
    }

    .merch-title {
        font-size: 2rem;
    }

    .merch-description h3 {
        font-size: 1.5rem;
    }
}
