.store-breadcrumbs {
    padding: 16px 20px 0;
    max-width: 1280px;
    margin: 0 auto;
}

.store-breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.55);
}

.store-breadcrumbs__item:not(:last-child)::after {
    content: '/';
    margin-left: 6px;
    opacity: 0.45;
}

.store-breadcrumbs__item a {
    color: inherit;
    text-decoration: none;
}

.store-breadcrumbs__item a:hover {
    text-decoration: underline;
}

.store-catalog-header {
    padding: 12px 20px 8px;
    max-width: 1280px;
    margin: 0 auto;
}

.store-catalog-header__title {
    margin: 0 0 6px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
    color: var(--theme-color, #111);
}

.store-catalog-header__subtitle {
    margin: 0;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
}

.store-catalog-page {
    padding-bottom: 32px;
}

.store-catalog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.store-catalog-card__image {
    display: block;
    aspect-ratio: 1;
    background: #fafafa;
}

.store-catalog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.store-catalog-card__body {
    padding: 12px 14px 16px;
}

.store-catalog-card__name {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.35;
}

.store-catalog-card__name a {
    color: inherit;
    text-decoration: none;
}

.store-catalog-card__price {
    font-weight: 600;
}

.store-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.homepage-featured {
    padding: 24px 20px 8px;
    max-width: 1280px;
    margin: 0 auto;
}

.homepage-featured__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.homepage-featured__eyebrow {
    margin: 0 0 4px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.65;
}

.homepage-featured__title {
    margin: 0;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--theme-color, #111);
}

.homepage-featured__cta {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--theme-color, #111);
    border-bottom: 1px solid currentColor;
}

.fashion-shell .homepage-featured__title,
.fashion-shell .store-catalog-header__title {
    color: #111 !important;
}

.fashion-shell .store-breadcrumbs__list {
    color: rgba(0, 0, 0, 0.55);
}

.category-pill[href] {
    text-decoration: none;
}

@media (max-width: 768px) {
    .homepage-featured__header {
        flex-direction: column;
        align-items: flex-start;
    }
}
