/* shop.css */

/* --- Hero Section --- */
.shop-hero {
    position: relative;
    height: 419px;
    margin-top: 0;
    background: #FBFAF9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    isolation: isolate;
    overflow: hidden;
    border-bottom: 5px solid #ceb4a1 !important;
}

.hero-bg-rect {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, #F0E4D5 10%, #CEB4A1 90%);
    z-index: 0;
}

.hero-bg-ellipse {
    position: absolute;
    width: 870px;
    height: 904px;
    right: -200px;
    top: -200px;
    background: linear-gradient(196.22deg, #CEB4A1 8%, #F0E4D5 92%);
    z-index: 1;
    border-radius: 99999px;
    opacity: 0.8;
}

.hero-container-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 1237px;
    text-align: center;
}

.hero-title-shop {
    width: 100%;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 60px;
    line-height: 1;
    letter-spacing: -1.5px;
    color: #2B2B2B;
    margin-bottom: 8px;
}

.hero-subtitle-shop {
    width: 100%;
    max-width: 716px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #666666;
    margin-top: 8px;
}