.breadcrumb {
    padding-top: var(--space-6);
    padding-bottom: var(--space-4);
}

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.breadcrumb__list a {
    color: var(--color-text-light);
}

.breadcrumb__list a:hover {
    color: var(--color-primary);
}

.breadcrumb__item:not(:last-child)::after {
    content: "/";
    margin-left: var(--space-2);
    color: var(--color-border-strong);
}

.shop-hero {
    padding: var(--space-12) 0;
    background: linear-gradient(to bottom, var(--color-surface), var(--color-background));
}

.shop-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
}

@media (min-width: 768px) {
    .shop-hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
    }
}

.shop-hero__title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-6);
    color: var(--color-text);
}

.shop-hero__text {
    font-size: var(--text-lg);
    color: var(--color-text-light);
    margin-bottom: var(--space-8);
}

.shop-hero__image img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.collections-section {
    padding: var(--space-20) 0;
}

.section-header {
    text-align: center;
    max-width: 60ch;
    margin: 0 auto var(--space-12);
}

.section-header h2 {
    margin-bottom: var(--space-4);
}

.collections-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .collections-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.collection-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.collection-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.collection-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.collection-card:hover .collection-card__image img {
    transform: scale(1.05);
}

.collection-card__content {
    padding: var(--space-6);
}

.collection-card__content h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
}

.collection-card__content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-4);
}

.collection-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 500;
    color: var(--color-primary);
    font-size: var(--text-sm);
}

.collection-card__link::after {
    content: "→";
    transition: transform var(--transition-fast);
}

.collection-card__link:hover::after {
    transform: translateX(4px);
}

.collection-card--text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-sage);
    color: white;
}

.collection-card--text h3 {
    color: white;
}

.collection-card--text p {
    color: rgba(255, 255, 255, 0.9);
}

.collection-card--text .collection-card__link {
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.bestsellers-section {
    padding: var(--space-20) 0;
    background-color: var(--color-surface);
}

.bestsellers__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
}

@media (min-width: 768px) {
    .bestsellers__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
    }
}

.bestsellers__image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
}

.bestsellers__content h2 {
    margin-bottom: var(--space-4);
}

.bestsellers__content p {
    margin-bottom: var(--space-6);
    font-size: var(--text-lg);
}

.textiles-section {
    padding: var(--space-20) 0;
}

.textiles__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
}

@media (min-width: 768px) {
    .textiles__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
}

.textiles__content h2 {
    margin-bottom: var(--space-4);
}

.textiles__content p {
    margin-bottom: var(--space-6);
}

.feature-list {
    list-style: none;
    margin-bottom: var(--space-6);
}

.feature-list li {
    padding-left: var(--space-6);
    position: relative;
    margin-bottom: var(--space-3);
    color: var(--color-text-light);
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background-color: var(--color-sage);
    border-radius: 50%;
}

.textiles__image {
    order: -1;
}

@media (min-width: 768px) {
    .textiles__image {
        order: 2;
    }
}

.textiles__image img {
    border-radius: var(--radius-full);
    aspect-ratio: 1;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.gifts-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-amber) 100%);
}

.gifts__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
}

@media (min-width: 768px) {
    .gifts__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
    }
}

.gifts__image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: auto;
}

.gifts__content h2 {
    margin-bottom: var(--space-4);
}

.gifts__content p {
    margin-bottom: var(--space-6);
    font-size: var(--text-lg);
}

.transparency-section {
    padding: var(--space-20) 0;
    background-color: var(--color-surface);
}

.transparency__header {
    text-align: center;
    max-width: 70ch;
    margin: 0 auto var(--space-12);
}

.craftsmanship__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
    margin-top: var(--space-12);
}

@media (min-width: 768px) {
    .craftsmanship__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
    }
}

.craftsmanship__image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
}

.craftsmanship__content h3 {
    margin-bottom: var(--space-4);
    font-size: var(--text-3xl);
}

.craftsmanship__content p {
    margin-bottom: var(--space-4);
}

.info-grid-section {
    padding: var(--space-20) 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
}

.info-card {
    background-color: var(--color-surface);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
}

.info-card h3 {
    margin-bottom: var(--space-4);
    color: var(--color-primary);
}

.info-card p {
    margin-bottom: var(--space-4);
}

.info-card--sage {
    background-color: var(--color-sage);
    border-color: var(--color-sage);
}

.info-card--sage h3 {
    color: white;
}

.info-card--sage p {
    color: rgba(255, 255, 255, 0.9);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 500;
    color: var(--color-primary);
    font-size: var(--text-sm);
}

.link-arrow::after {
    content: "→";
    transition: transform var(--transition-fast);
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

.info-card--sage .link-arrow {
    color: white;
}

.age-filter-section {
    padding: var(--space-20) 0;
    background-color: var(--color-cream);
}

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

.section-intro {
    max-width: 60ch;
    margin: 0 auto var(--space-10);
}

.age-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .age-categories {
        grid-template-columns: repeat(4, 1fr);
    }
}

.age-card {
    background-color: var(--color-surface);
    padding: var(--space-6) var(--space-4);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.age-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.age-card__range {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    font-weight: 500;
}

.age-card__label {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-text);
    font-weight: 500;
}

.promise-section {
    padding: var(--space-24) 0;
    background-color: var(--color-sage);
    color: white;
    text-align: center;
}

.promise__content {
    max-width: 70ch;
    margin: 0 auto;
}

.promise__content h2 {
    color: white;
    margin-bottom: var(--space-4);
}

.promise__content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    font-size: var(--text-lg);
}

.promise__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    justify-content: center;
    margin-bottom: var(--space-8);
}

@media (min-width: 640px) {
    .promise__features {
        flex-direction: row;
        gap: var(--space-8);
    }
}

.promise__feature {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.promise__feature strong {
    font-weight: 600;
    color: white;
}

.promise__feature span {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}

.promise-section .btn {
    background-color: white;
    color: var(--color-sage-dark);
}

.promise-section .btn:hover {
    background-color: var(--color-cream);
    color: var(--color-text);
}