/* Shop Page Specific Styles */
.shop-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1920x400/3A4F70/FFFFFF?text=Dershal+Shop+Background') no-repeat center center/cover;
    text-align: center;
    padding: 80px 20px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-hero h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3em;
    margin-bottom: 15px;
}

.shop-hero p {
    font-size: 1.1em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #a0a0a0;
}

.merch-grid-section {
    padding: 80px 0;
    background-color: #1a1a2e;
}

.merch-grid-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8em;
    margin-bottom: 50px;
    color: #e0e0e0;
    text-align: center;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.merch-item {
    background-color: #0f3460; /* Darker blue */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 20px; /* Space for button */
}

.merch-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.merch-item img {
    width: 100%;
    height: 250px; /* Uniform image height */
    object-fit: cover;
    display: block;
    border-bottom: 3px solid #e94560; /* Accent border */
    margin-bottom: 15px;
}

.merch-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6em;
    color: #e94560;
    margin: 0 0 10px;
    padding: 0 15px;
}

.merch-item .price {
    font-size: 1.3em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    padding: 0 15px;
}

.merch-item .btn {
    width: calc(100% - 30px); /* Full width minus padding */
    margin: 0 15px;
}

/* Responsive adjustments for shop page */
@media (max-width: 768px) {
    .shop-hero h2 {
        font-size: 2.5em;
    }
    .shop-hero p {
        font-size: 1em;
    }
    .merch-grid-section h3 {
        font-size: 2em;
    }
    .merch-item h4 {
        font-size: 1.4em;
    }
    .merch-item .price {
        font-size: 1.1em;
    }
}