.shop-search {
            max-width: 500px;
            margin: 0 auto var(--space-xl);
            position: relative;
        }
        .hero--shop .hero__background img {
            object-position: center center;
        }
        @media (max-width: 768px) {
            .hero--shop .hero__background img {
                object-position: 68% center;
            }
            .hero--shop .hero__overlay {
                background: linear-gradient(135deg, rgba(242, 240, 233, .94) 0%, rgba(242, 240, 233, .76) 58%, rgba(242, 240, 233, .45) 100%);
            }
        }
        .shop-search__input {
            width: 100%;
            padding: var(--space-md) var(--space-2xl) var(--space-md) var(--space-2xl);
            border: 2px solid var(--color-warm-sand);
            border-radius: var(--border-radius);
            font-family: var(--font-sans);
            font-size: var(--text-base);
            background: var(--color-white);
            transition: border-color var(--transition-fast);
            box-sizing: border-box;
        }
        .shop-search__input:focus {
            outline: none;
            border-color: var(--color-accent);
        }
        .shop-search__icon {
            position: absolute;
            left: var(--space-md);
            top: 50%;
            transform: translateY(-50%);
            color: var(--color-text-secondary);
            pointer-events: none;
        }
        .shop-search__clear {
            position: absolute;
            right: var(--space-md);
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            color: var(--color-text-secondary);
            display: none;
            padding: 4px 8px;
            line-height: 1;
        }
        .shop-search__clear:hover {
            color: var(--color-text-primary);
        }
        .shop-no-results {
            text-align: center;
            padding: var(--space-3xl) var(--space-xl);
            display: none;
        }
        .shop-no-results h3 {
            font-family: var(--font-serif);
            font-size: var(--text-2xl);
            margin-bottom: var(--space-md);
        }
        .shop-no-results p {
            color: var(--color-text-secondary);
        }
        .shop-filters {
            display: flex;
            gap: var(--space-md);
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: var(--space-2xl);
        }
        .filter-btn {
            padding: var(--space-sm) var(--space-lg);
            border: 2px solid var(--color-accent);
            background: transparent;
            color: var(--color-accent);
            border-radius: var(--border-radius);
            cursor: pointer;
            font-family: var(--font-sans);
            font-size: var(--text-sm);
            font-weight: 500;
            transition: all var(--transition-fast);
        }
        .filter-btn:hover, .filter-btn.active {
            background: var(--color-accent);
            color: white;
        }
        .product-card {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .product-card__image {
            position: relative;
        }
        .product-card__badge--free-shipping {
            z-index: 2;
            background: #176b3a;
            color: #fff;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
            letter-spacing: 0.04em;
            white-space: nowrap;
        }
        .product-card__badge--bundle {
            z-index: 2;
            background: #7a5b1a;
            color: #fff;
            box-shadow: 0 3px 12px rgba(0, 0, 0, .3);
            letter-spacing: .06em;
        }
        .bundle-product-image {
            width: 100%;
            height: 100%;
            padding: .75rem;
            box-sizing: border-box;
            object-fit: contain;
            background: linear-gradient(145deg, #f8f5ed, #e9e3d4);
            filter: drop-shadow(0 8px 8px rgba(0, 0, 0, .14));
        }
        .bundle-saving {
            display: block;
            margin: calc(-1 * var(--space-sm)) 0 var(--space-md);
            color: #176b3a;
            font-size: var(--text-sm);
            font-weight: 700;
        }
        .product-card__content {
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .product-card__description {
            flex: 1;
        }
        .product-card__price {
            font-family: var(--font-serif);
            font-size: var(--text-xl);
            font-weight: 600;
            color: var(--color-accent);
            margin-bottom: var(--space-md);
        }
        .product-card__price .old-price {
            text-decoration: line-through;
            color: var(--color-text-secondary);
            font-size: var(--text-sm);
            margin-right: var(--space-sm);
        }
        .product-card__stock {
            font-size: var(--text-xs);
            padding: var(--space-xs) var(--space-sm);
            border-radius: var(--border-radius);
            display: inline-block;
            margin-bottom: var(--space-sm);
        }
        .product-card__stock--available {
            background: #d4edda;
            color: #155724;
        }
        .product-card__stock--limited {
            background: #fff3cd;
            color: #856404;
        }
        .product-card__stock--out {
            background: #f8d7da;
            color: #721c24;
        }
        .cart-btn {
            width: 100%;
            background: var(--color-accent);
            color: white;
            border: none;
            padding: var(--space-md);
            border-radius: var(--border-radius);
            font-family: var(--font-sans);
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition-fast);
        }
        .cart-btn:hover {
            background: var(--color-accent-hover);
            transform: translateY(-2px);
        }
        .cart-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
        }
        .product-card__details {
            font-size: var(--text-xs);
            color: var(--color-text-secondary);
            margin-top: var(--space-sm);
        }
        .section-divider {
            text-align: center;
            margin: var(--space-3xl) 0 var(--space-2xl);
            position: relative;
        }
        .section-divider::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            height: 1px;
            background: var(--color-warm-sand);
        }
        .section-divider span {
            background: var(--color-background);
            padding: 0 var(--space-xl);
            position: relative;
            font-family: var(--font-serif);
            font-size: var(--text-2xl);
            color: var(--color-text-primary);
        }
        .section--alt .section-divider::before {
            background: #c9b99a;
        }
        /* Set 6 Modal */
        .set6-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }
        .set6-overlay.active {
            display: flex;
        }
        .set6-overlay[hidden] {
            display: none;
        }
        .set6-modal {
            background: white;
            border-radius: 16px;
            padding: 32px;
            max-width: 420px;
            width: 90%;
            position: relative;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        .set6-modal h3 {
            margin: 0 0 4px;
            font-size: 1.3rem;
            color: var(--color-primary);
        }
        .set6-modal .set6-subtitle {
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            margin-bottom: 20px;
        }
        .set6-close {
            position: absolute;
            top: 12px;
            right: 16px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--color-text-secondary);
            line-height: 1;
        }
        .set6-modal :focus-visible {
            outline: 3px solid var(--color-accent);
            outline-offset: 3px;
        }
        .set6-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(0,0,0,0.08);
        }
        .set6-row:last-of-type {
            border-bottom: none;
        }
        .set6-row .set6-label {
            font-weight: 500;
            font-size: 1rem;
        }
        .set6-row .set6-cultivar {
            font-size: 0.8rem;
            color: var(--color-text-secondary);
        }
        .set6-qty {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .set6-qty button {
            width: 34px;
            height: 34px;
            border: 2px solid var(--color-accent);
            background: white;
            color: var(--color-accent);
            border-radius: 50%;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }
        .set6-qty button:hover {
            background: var(--color-accent);
            color: white;
        }
        .set6-qty .set6-count {
            font-weight: 700;
            font-size: 1.1rem;
            min-width: 24px;
            text-align: center;
        }
        .set6-footer {
            margin-top: 20px;
            text-align: center;
        }
        .set6-total {
            font-size: 0.95rem;
            color: var(--color-text-secondary);
            margin-bottom: 14px;
        }
        .set6-total strong {
            color: var(--color-accent);
            font-size: 1.1rem;
        }
        .set6-confirm {
            width: 100%;
            padding: 14px;
            border: none;
            border-radius: var(--border-radius);
            background: var(--color-accent);
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        .set6-confirm:hover:not(:disabled) {
            opacity: 0.9;
        }
        .set6-confirm:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }
