/* ===========================
   Shop Page Specific Styles
   =========================== */
.shop-hero {
    margin-top: 70px;
    height: 250px;
    background: linear-gradient(to right, #e0d8c0, #d4c5a0);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.shop-hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    width: 100%;
}

.shop-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shop-hero-bg-icon {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
}

.shop-list-section {
    padding: var(--spacing-xl) 0;
    background-color: #fff;
}

.shop-product-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.shop-product-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

@media (max-width: 768px) {
    .shop-product-row {
        grid-template-columns: 1fr;
    }
}

.shop-product-image-col {
    width: 100%;
}

.shop-product-bg {
    background-color: #dccaa5;
    /* Beige-ish color from mockup */
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.shop-product-bg img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.shop-product-info-col {
    padding: var(--spacing-md);
}

.shop-product-label {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.shop-product-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.shop-product-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    max-width: 90%;
}

.btn-shop-view {
    background-color: var(--color-primary-dark);
    color: #fff;
    border-radius: 50px;
    padding: 12px 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}

.btn-shop-view:hover {
    background-color: var(--color-primary);
    transform: translateX(5px);
}

.arrow-icon {
    font-size: 1.2rem;
}