.shop-breadcrumb {
    padding-top: 4.75rem;
    background: var(--cream);
}

.shop-breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0.75rem 0;
    margin: 0;
    border-bottom: 1px solid var(--cream-dark);
}

.shop-breadcrumb__item {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.shop-breadcrumb__item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.shop-breadcrumb__item a:hover {
    color: var(--burgundy);
}

.shop-breadcrumb__item--current {
    color: var(--charcoal);
    font-weight: 500;
}

.shop-breadcrumb__separator {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.shop-hero {
    padding: 1rem 0 1.25rem;
    background: var(--cream);
    text-align: center;
    border-bottom: 1px solid var(--cream-dark);
}

.shop-hero__label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.shop-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.shop-hero__divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 0.75rem;
}

.shop-hero__description {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.shop-main {
    padding: 1.5rem 0 4rem;
    background: var(--cream);
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.shop-toolbar__left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.shop-toolbar__right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shop-search {
    position: relative;
    display: flex;
    align-items: center;
}

.shop-search__icon {
    position: absolute;
    left: 0.9rem;
    color: var(--text-muted);
    pointer-events: none;
    flex-shrink: 0;
}

.shop-search__input {
    padding: 0.7rem 2.5rem 0.7rem 2.5rem;
    border: 1px solid var(--border-light);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--charcoal);
    outline: none;
    width: 260px;
    transition: border-color 0.3s ease;
}

.shop-search__input::placeholder {
    color: var(--text-muted);
}

.shop-search__input:focus {
    border-color: var(--burgundy);
}

.shop-search__clear {
    position: absolute;
    right: 0.9rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    padding: 0;
    transition: color 0.3s ease;
}

.shop-search__clear:hover {
    color: var(--burgundy);
}

.shop-results-count {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.shop-sort__label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
}

.shop-sort__select {
    padding: 0.7rem 2rem 0.7rem 1rem;
    border: 1px solid var(--border-light);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--charcoal);
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239B8B92' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    transition: border-color 0.3s ease;
}

.shop-sort__select:focus {
    border-color: var(--burgundy);
}

.shop-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--cream-dark);
}

.shop-category-pill {
    padding: 0.45rem 1.1rem;
    border: 1px solid var(--border-light);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.shop-category-pill:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.shop-category-pill--active {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--white);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    min-height: 300px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    transition: all 0.4s ease;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card:hover {
    box-shadow: 0 15px 40px rgba(74, 29, 63, 0.1);
    transform: translateY(-4px);
    border-color: var(--gold);
}

.product-card__image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 120%;
    overflow: hidden;
    background: var(--cream-dark);
}

.product-card__image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card__image-wrapper img {
    transform: scale(1.05);
}

.product-card__badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    z-index: 2;
}

.product-card__badge {
    display: inline-block;
    background: var(--burgundy);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    width: fit-content;
}

.product-card__badge--discount {
    background: var(--gold);
    color: var(--charcoal);
}

.product-card__badge--sold-out {
    background: var(--charcoal);
    color: var(--white);
}

.product-card--sold-out .product-card__image-wrapper img {
    opacity: 0.55;
}

.product-card__hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover .product-card__hover-image {
    opacity: 1;
}

.product-card__body {
    padding: 1.25rem;
}

.product-card__category {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.product-card__name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-card__price {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--burgundy);
}

.product-card__price-original {
    text-decoration: line-through;
    color: var(--gray);
    font-weight: 400;
    font-size: 0.82rem;
    margin-left: 0.5rem;
}

.product-card--skeleton .product-card__image-wrapper {
    background: linear-gradient(110deg, var(--cream-dark) 8%, var(--cream) 18%, var(--cream-dark) 33%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
}

.product-card--skeleton .skeleton-text {
    height: 1rem;
    background: linear-gradient(110deg, var(--cream-dark) 8%, var(--cream) 18%, var(--cream-dark) 33%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.product-card--skeleton .skeleton-text--short {
    width: 40%;
}

.product-card--skeleton .skeleton-text--medium {
    width: 70%;
}

@keyframes shimmer {
    to {
        background-position-x: -200%;
    }
}

.shop-empty {
    padding: 4rem 0;
    text-align: center;
    grid-column: 1 / -1;
}

.shop-empty__inner {
    max-width: 400px;
    margin: 0 auto;
}

.shop-empty__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.shop-empty__text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.shop-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.shop-pagination__btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    background: var(--white);
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-pagination__btn:hover:not(:disabled) {
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.shop-pagination__btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.shop-pagination__pages {
    display: flex;
    gap: 0.3rem;
}

.shop-pagination__page {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-pagination__page:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.shop-pagination__page--active {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--white);
}

@media (max-width: 768px) {
    .shop-hero {
        padding: 0.75rem 0 1rem;
    }

    .shop-breadcrumb {
        padding-top: 4rem;
    }

    .shop-hero__title {
        font-size: 1.5rem;
        margin-bottom: 0.35rem;
    }

    .shop-hero__label {
        font-size: 0.65rem;
        margin-bottom: 0.35rem;
    }

    .shop-hero__description {
        font-size: 0.78rem;
    }

    .shop-hero__divider {
        margin: 0 auto 0.5rem;
    }

    .shop-main {
        padding: 1rem 0 3rem;
    }

    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .shop-toolbar__left {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .shop-toolbar__right {
        justify-content: flex-start;
    }

    .shop-search__input {
        width: 100%;
    }

    .shop-search {
        width: 100%;
    }

    .shop-sort__select {
        flex: 1;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .product-card__body {
        padding: 0.85rem;
    }

    .product-card__name {
        font-size: 0.95rem;
    }

    .product-card__price {
        font-size: 0.85rem;
    }

    .shop-categories {
        gap: 0.35rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .shop-category-pill {
        font-size: 0.65rem;
        padding: 0.4rem 0.85rem;
    }
}

@media (max-width: 480px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }

    .shop-category-pill {
        font-size: 0.6rem;
        padding: 0.35rem 0.75rem;
    }
}