:root {
    --text-dark: #111;
}

/* Modern Header */
.page-header {
    padding-top: 180px;
    padding-bottom: 60px;
    text-align: center;
    background: #fff;
}

body.dark-mode .page-header {
    background: var(--bg-dark);
}

.page-header h1 {
    font-family: "Argesta Display", serif;
    font-size: 4.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.page-header p {
     font-family: 'Montserrat', sans-serif;
     font-size: 0.9rem;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: #666;
}

/* Editorial Grid */
.new-store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    column-gap: 2rem;
    row-gap: 5rem;
    padding: 0 4rem 10rem;
    max-width: 1600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .new-store-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        padding: 0 1.5rem 6rem;
        row-gap: 3rem;
    }
    .page-header h1 {
        font-size: 3rem;
    }
}

.store-card {
    display: flex;
    flex-direction: column;
    /* group: 'store'; // removing invalid prop */
    text-decoration: none;
    color: inherit;
}

.store-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 133.33%; /* 3:4 Aspect Ratio Force */
    height: 0;
    overflow: hidden;
    background-color: #eee;
    margin-bottom: 1.5rem;
}

.store-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    filter: saturate(0.8);
}

.store-card:hover .store-img {
    transform: scale(1.05);
    filter: saturate(1);
}

.store-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #fff;
    color: #000;
    padding: 0.4rem 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.store-badge.coming-soon {
     background: #000;
     color: #fff;
}

.store-info {
    text-align: center;
}

.store-title {
    font-family: "Argesta Display", serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: var(--text-dark);
    transition: color 0.3s;
}

.store-card:hover .store-title {
    color: #d4af37;
}

.store-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
