};
            --theme-secondary: {{ $home->secondary_color }};
            --theme-accent: {{ $home->accent_color }};
        }

        .store-nav {
            display: flex;
            align-items: center;
            flex: 0 0 auto;
            flex-wrap: nowrap;
            gap: 8px;
            margin-left: auto;
        }

        .store-header {
            position: sticky;
            top: 0;
            z-index: 999;
            background: rgba(255, 255, 255, 0.96);
            border-bottom: 1px solid rgba(226, 232, 240, 0.92);
            backdrop-filter: blur(14px);
        }

        .store-header-inner {
            max-width: 1200px;
            margin: auto;
            padding: 10px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .store-nav-desktop {
            flex-shrink: 0;
        }

        .store-mobile-menu {
            display: none;
            margin-left: auto;
            position: relative;
        }

        .store-mobile-menu summary {
            list-style: none;
        }

        .store-mobile-menu summary::-webkit-details-marker {
            display: none;
        }

        .store-mobile-menu-trigger {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 42px;
            padding: 10px 16px;
            border: 1px solid #dbe4f0;
            border-radius: 999px;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            color: var(--theme-secondary);
            font-size: 14px;
            font-weight: 800;
            cursor: pointer;
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
        }

        .store-mobile-menu-trigger-icon,
        .store-mobile-menu-link-icon,
        .store-nav-link-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
        }

        .store-mobile-menu-trigger-icon {
            width: 18px;
            height: 18px;
        }

        .store-mobile-menu-trigger::after {
            content: '\25BE';
            font-size: 11px;
            transition: transform 0.18s ease;
        }

        .store-mobile-menu[open] .store-mobile-menu-trigger::after {
            transform: rotate(180deg);
        }

        .store-mobile-menu-panel {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            min-width: 230px;
            padding: 12px;
            border: 1px solid #dbe4f0;
            border-radius: 18px;
            background: #ffffff;
            box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
            display: grid;
            gap: 10px;
            z-index: 1001;
        }

        .store-mobile-menu-form {
            margin: 0;
        }

        .store-mobile-menu-link {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 10px;
            width: 100%;
            min-height: 46px;
            padding: 12px 14px;
            border: 1px solid #dbe4f0;
            border-radius: 14px;
            background: #f8fafc;
            color: #0f172a;
            text-decoration: none;
            font-size: 14px;
            font-weight: 800;
            box-sizing: border-box;
            transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
        }

        .store-mobile-menu-link:hover {
            transform: translateY(-1px);
            box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
        }

        .store-mobile-menu-link-icon {
            width: 18px;
            height: 18px;
        }

        .store-mobile-menu-link-primary {
            background: linear-gradient(135deg, var(--theme-primary) 0%, color-mix(in srgb, var(--theme-primary) 74%, white) 55%, var(--theme-secondary) 100%);
            border-color: color-mix(in srgb, var(--theme-primary) 55%, transparent);
            color: #ffffff;
        }

        .store-mobile-menu-link-secondary {
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            color: var(--theme-secondary);
        }

        .store-brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: inherit;
            flex-shrink: 0;
        }

        .store-logo {
            height: 52px;
            width: auto;
            display: block;
        }

        .store-brand-copy {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .store-brand-name {
            font-size: 17px;
            font-weight: 800;
            line-height: 1.1;
            color: var(--theme-secondary);
        }

        .store-brand-tagline {
            font-size: 11px;
            color: #6b7280;
            line-height: 1.2;
            margin-top: 3px;
        }

        .store-brand-fallback-title {
            display: none;
            font-size: 12px;
            font-weight: 800;
            line-height: 1.3;
            color: var(--theme-primary);
            margin-top: 4px;
        }

        .store-nav-form {
            margin: 0;
            display: flex;
            align-items: stretch;
            flex: 0 0 auto;
        }

        .store-nav-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 38px;
            padding: 8px 13px;
            border: 1px solid transparent;
            border-radius: 14px;
            text-decoration: none;
            line-height: 1.2;
            font-family: inherit;
            font-size: 13px;
            font-weight: 800;
            white-space: nowrap;
            transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
            box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
        }

        .store-nav-form .store-nav-link {
            width: 100%;
        }

        button.store-nav-link {
            margin: 0;
            appearance: none;
            -webkit-appearance: none;
            cursor: pointer;
        }

        .store-nav-link-icon {
            width: 17px;
            height: 17px;
            opacity: 0.92;
        }

        .store-nav-link-label {
            display: inline-flex;
            align-items: center;
        }

        .store-nav-link:hover {
            transform: translateY(-1px);
            box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
        }

        .store-nav-link-secondary {
            color: var(--theme-secondary) !important;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            border: 1px solid #dbe4f0;
        }

        .store-nav-link-primary {
            color: #ffffff !important;
            background: linear-gradient(135deg, var(--theme-primary) 0%, color-mix(in srgb, var(--theme-primary) 74%, white) 55%, var(--theme-secondary) 100%);
            border: 1px solid color-mix(in srgb, var(--theme-primary) 55%, transparent);
        }

        .store-nav-link-soft {
            color: var(--theme-secondary) !important;
            background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
            border: 1px solid #dbe4f0;
        }

        .store-cart-link {
            position: relative;
            padding-right: 18px;
        }

        .store-search {
            min-width: 0;
            flex: 0 1 280px;
            max-width: 280px;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: auto;
        }

        .store-search-input {
            width: 100%;
            min-width: 0;
            height: 38px;
            padding: 0 14px;
            border: 1px solid #dbe4f0;
            border-radius: 12px;
            background: #f8fafc;
            color: #0f172a;
            font-size: 13px;
            font-weight: 600;
            outline: none;
            transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
        }

        .store-search-input:focus {
            border-color: color-mix(in srgb, var(--theme-primary) 48%, #cbd5e1);
            box-shadow: 0 0 0 3px color-mix(in srgb, var(--theme-primary) 12%, white);
            background: #ffffff;
        }

        .store-search-button {
            height: 38px;
            padding: 0 14px;
            border: none;
            border-radius: 12px;
            background: #111827;
            color: #ffffff;
            font-size: 13px;
            font-weight: 800;
            cursor: pointer;
            white-space: nowrap;
            box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
        }

        .store-cart-count-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 22px;
            height: 22px;
            padding: 0 6px;
            margin-left: 4px;
            border-radius: 999px;
            background: #b91c1c;
            color: #fff;
            font-size: 12px;
            font-weight: 800;
            line-height: 1;
            box-shadow: 0 10px 22px rgba(185, 28, 28, 0.24);
        }

        .store-mobile-cart-count {
            margin-left: auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 22px;
            height: 22px;
            padding: 0 6px;
            border-radius: 999px;
            background: #b91c1c;
            color: #fff;
            font-size: 12px;
            font-weight: 800;
        }

        .store-slider-shell {
            padding: 14px 16px 12px;
        }

        .store-slider {
            position: relative;
            min-height: 0;
            aspect-ratio: 16 / 7;
            border-radius: 20px;
            overflow: hidden;
            background: #0f172a;
            box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
        }

        .store-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.45s ease;
        }

        .store-slide.is-active {
            opacity: 1;
            pointer-events: auto;
        }

        .store-slide-image{
    width:100%;
    height:100%;
    position:absolute;
    inset:0;
    object-fit:cover;
    object-position:center;
    aspect-ratio:16/9;
}

        .store-slide-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(15, 23, 42, 0.14) 0%, rgba(15, 23, 42, 0.08) 36%, rgba(15, 23, 42, 0.72) 100%),
                linear-gradient(90deg, rgba(17, 24, 39, 0.62) 0%, rgba(17, 24, 39, 0.28) 42%, rgba(17, 24, 39, 0.06) 100%);
        }

        .store-slide-content {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: flex-end;
            padding: 22px;
            z-index: 1;
        }

        .store-slide-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.4fr) minmax(220px, 300px);
            align-items: end;
            gap: 14px;
            width: 100%;
        }

        .store-slide-panel {
            max-width: 620px;
            color: #fff;
            align-self: end;
            padding: 18px;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.54), rgba(15, 23, 42, 0.3));
            border: 1px solid rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(8px);
        }

        .store-slide-badge {
            display: inline-flex;
            align-items: center;
            padding: 7px 12px;
            border-radius: 999px;
            background: color-mix(in srgb, var(--theme-accent) 86%, white);
            color: var(--theme-secondary);
            font-size: 11px;
            font-weight: 900;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .store-slide-title {
            margin: 0 0 10px;
            font-size: 36px;
            line-height: 1.08;
            font-weight: 900;
        }

        .store-slide-text {
            margin: 0;
            font-size: 15px;
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.88);
        }

        .store-slide-mobile-kicker {
            display: none;
        }

        .store-slide-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 14px;
            padding: 11px 16px;
            border-radius: 12px;
            background: var(--theme-primary);
            color: #fff;
            text-decoration: none;
            font-weight: 800;
            font-size: 14px;
        }

        .store-slide-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 16px;
        }

        .store-slide-button-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 11px 16px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            text-decoration: none;
            font-weight: 800;
            font-size: 14px;
            border: 1px solid rgba(255, 255, 255, 0.22);
        }

        .store-slide-aside {
            align-self: end;
            background: rgba(255, 255, 255, 0.96);
            color: #111827;
            border-radius: 18px;
            padding: 16px;
            box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
        }

        .store-slide-aside-label {
            font-size: 12px;
            color: #6b7280;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .store-slide-aside-title {
            font-size: 20px;
            line-height: 1.18;
            font-weight: 900;
            margin-bottom: 6px;
        }

        .store-slide-aside-text {
            font-size: 13px;
            color: #4b5563;
            line-height: 1.6;
        }

        .store-slider-controls {
            position: absolute;
            right: 14px;
            bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 2;
        }

        .store-slider-arrow {
            width: 38px;
            height: 38px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.24);
            background: rgba(17, 24, 39, 0.52);
            color: #fff;
            font-size: 16px;
            cursor: pointer;
        }

        .store-slider-dots {
            display: flex;
            gap: 6px;
        }

        .store-slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            border: none;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            padding: 0;
        }

        .store-slider-dot.is-active {
            background: var(--theme-accent);
        }

        .product-primary-form {
            margin-bottom: 0;
        }

        .product-qty-row {
            display: flex;
            gap: 8px;
            align-items: center;
            margin-bottom: 8px;
        }

        .product-actions {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 8px;
            overflow: visible;
        }

        .product-actions > * {
            min-width: 0;
        }

        .product-actions form,
        .product-actions a {
            display: block;
        }

        .product-action-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 11px 14px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 700;
            text-align: center;
            text-decoration: none;
            box-sizing: border-box;
            cursor: pointer;
        }

        .store-benefits-shell {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4px 16px 6px;
        }

        .store-benefits-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .store-benefit-card {
            flex: 1 1 220px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            min-height: 54px;
            padding: 12px 14px;
            border-radius: 16px;
            color: #ffffff;
            box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
        }

        .store-benefit-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.18);
            font-size: 16px;
            flex: 0 0 auto;
        }

        .store-benefit-copy {
            display: grid;
            gap: 2px;
            min-width: 0;
        }

        .store-benefit-title {
            font-size: 14px;
            font-weight: 800;
            line-height: 1.2;
        }

        .store-benefit-note {
            font-size: 11px;
            opacity: 0.92;
            line-height: 1.35;
        }

        .homepage-shell {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            background: #f3f4f6;
            color: #111827;
        }

        .store-mobile-menu-button {
            cursor: pointer;
        }

        .homepage-flash-wrap,
        .store-slider-inner,
        .store-products-section {
            max-width: 1200px;
            margin: 0 auto;
        }

        .homepage-flash-wrap {
            margin-top: 16px;
            padding: 0 16px;
        }

        .homepage-flash-message {
            background: #dcfce7;
            color: #166534;
            border: 1px solid #86efac;
            border-radius: 12px;
            padding: 14px 16px;
            font-weight: 600;
        }

        .store-benefit-card-primary {
            background: var(--theme-primary);
        }

        .store-benefit-card-secondary {
            background: var(--theme-secondary);
        }

        .store-benefit-card-accent {
            background: var(--theme-accent);
        }

        .store-products-section {
            padding: 24px 16px 32px;
        }

        .marketplace-section-shell-compact {
            padding: 20px;
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .section-eyebrow {
            margin-bottom: 8px;
            font-size: 12px;
            font-weight: 900;
            line-height: 1.3;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #16a34a;
        }

        .section-count {
            max-width: 340px;
            font-size: 14px;
            line-height: 1.7;
            text-align: right;
            color: #6b7280;
        }

        .product-intent-note {
            max-width: 360px;
            font-size: 12px;
            font-weight: 700;
            line-height: 1.7;
            color: #64748b;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 16px;
        }

        .product-card {
            position: relative;
            overflow: hidden;
            border: 1px solid #ececec;
            border-radius: 18px;
            background: #ffffff;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
            transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
        }

        .product-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12) !important;
            border-color: #dbe4f0 !important;
        }

        .product-card-shell {
            padding: 8px 8px 0;
            background: #ffffff;
        }

        .product-card-media {
            position: relative;
            overflow: hidden;
            border-radius: 18px;
            background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .product-card-media-link {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .product-card-promo-badge {
            position: absolute;
            top: 10px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 28px;
            padding: 6px 10px;
            border-radius: 999px;
            font-size: 10px;
            font-weight: 900;
            line-height: 1;
            backdrop-filter: blur(8px);
        }

        .product-card-promo-badge {
            left: 10px;
            background: rgba(190, 24, 93, 0.96);
            color: #fff;
            box-shadow: 0 10px 24px rgba(190, 24, 93, 0.25);
        }

        .product-card-promo-soon-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            min-height: 28px;
            max-width: calc(100% - 20px);
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(220, 38, 38, 0.97);
            color: #ffffff;
            font-size: 10px;
            font-weight: 900;
            line-height: 1.1;
            box-shadow: 0 10px 24px rgba(220, 38, 38, 0.28);
            animation: homepage-promo-danger-blink 1s ease-in-out infinite;
        }

        .product-card-promo-soon-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            flex: 0 0 auto;
            border-radius: 999px;
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
        }

        .product-card-promo-ending-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            min-height: 28px;
            max-width: calc(100% - 20px);
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(249, 115, 22, 0.97);
            color: #ffffff;
            font-size: 10px;
            font-weight: 900;
            line-height: 1.1;
            box-shadow: 0 10px 24px rgba(249, 115, 22, 0.28);
            animation: homepage-promo-warning-blink 1s ease-in-out infinite;
        }

        .product-card-promo-ending-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            flex: 0 0 auto;
            border-radius: 999px;
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
        }

        .product-card-promo-live-badge,
        .product-card-promo-expired-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            min-height: 28px;
            max-width: calc(100% - 20px);
            padding: 6px 10px;
            border-radius: 999px;
            color: #ffffff;
            font-size: 10px;
            font-weight: 900;
            line-height: 1.1;
        }

        .product-card-promo-live-badge {
            background: rgba(21, 128, 61, 0.97);
            box-shadow: 0 10px 24px rgba(21, 128, 61, 0.24);
        }

        .product-card-promo-expired-badge {
            background: rgba(71, 85, 105, 0.96);
            box-shadow: 0 10px 24px rgba(71, 85, 105, 0.22);
        }

        .product-card-promo-live-badge::before,
        .product-card-promo-expired-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            flex: 0 0 auto;
            border-radius: 999px;
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
        }

        @keyframes homepage-promo-danger-blink {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
                box-shadow: 0 10px 24px rgba(220, 38, 38, 0.28);
            }

            50% {
                opacity: 0.52;
                transform: scale(1.02);
                box-shadow: 0 14px 28px rgba(220, 38, 38, 0.4);
            }
        }

        @keyframes homepage-promo-warning-blink {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
                box-shadow: 0 10px 24px rgba(249, 115, 22, 0.28);
            }

            50% {
                opacity: 0.58;
                transform: scale(1.02);
                box-shadow: 0 14px 28px rgba(249, 115, 22, 0.4);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .product-card-promo-soon-badge,
            .product-card-promo-ending-badge,
            .product-card-promo-live-badge,
            .product-card-promo-expired-badge {
                animation: none;
            }
        }

        .product-card-link {
            display: block;
            margin: 0 0 8px;
            color: #111827;
            font-size: 12px;
            font-weight: 800;
            text-decoration: none;
        }

        .product-card-body {
            padding: 12px;
        }

        .product-name {
            margin: 0 0 8px;
            min-height: 48px;
            font-size: 18px;
            line-height: 1.35;
        }

        .product-name-link {
            color: inherit;
            text-decoration: none;
        }

        .product-card-rating-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 0 0 10px;
            font-size: 13px;
            line-height: 1.4;
            color: #475569;
            font-weight: 700;
        }

        .product-card-rating-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: inherit;
            text-decoration: none;
            flex-wrap: wrap;
        }

        .product-card-rating-link:hover {
            color: #0f172a;
        }

        .product-card-rating-star {
            color: #f59e0b;
            font-size: 15px;
            line-height: 1;
        }

        .product-card-rating-value {
            color: #111827;
            font-weight: 900;
        }

        .product-card-rating-empty {
            color: #94a3b8;
            font-weight: 700;
        }

        .product-price-stack {
            margin-bottom: 10px;
        }

        .product-price-before {
            display: block;
            margin-bottom: 4px;
            font-size: 12px;
            color: #94a3b8;
            text-decoration: line-through;
        }

        .product-price-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            flex-wrap: wrap;
        }

        .product-price {
            font-size: 21px;
            font-weight: 800;
            color: var(--theme-primary);
        }

        .product-price-sold {
            font-size: 12px;
            font-weight: 800;
            color: #64748b;
            white-space: nowrap;
        }

        .product-detail-link {
            border: 1px solid #dbe4f0;
            background: #fff;
            color: #0f172a;
        }

        .product-cart-inline {
            display: block;
        }

        .product-cart-inline .product-qty-row {
            display: none;
        }

        .product-order-button {
            border: none;
            background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
            color: #fff;
            box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
        }

        .product-order-button svg {
            width: 15px;
            height: 15px;
            flex: 0 0 auto;
            fill: currentColor;
        }

        .marketplace-section-shell {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 28px;
            padding: 24px;
            box-shadow: 0 18px 36px rgba(15, 23, 42, 0.05);
        }

        .product-intent-toolbar {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 18px;
        }

        .product-intent-tabs {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .product-intent-tab {
            min-height: 44px;
            padding: 10px 16px;
            border-radius: 999px;
            border: 1px solid #dbe4f0;
            background: #fff;
            color: #0f172a;
            font-size: 13px;
            font-weight: 800;
            line-height: 1;
            cursor: pointer;
            box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
            transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
        }

        .product-intent-tab:hover,
        .product-intent-tab.is-active {
            transform: translateY(-1px);
            box-shadow: 0 16px 28px rgba(15, 23, 42, 0.1);
        }

        .product-intent-tab.is-active {
            background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
            border-color: transparent;
            color: #fff;
        }

        .product-grid-empty {
            display: none;
            grid-column: 1 / -1;
            background: #fff;
            border-radius: 22px;
            padding: 30px 24px;
            border: 1px dashed #cbd5e1;
            text-align: center;
            color: #475569;
        }

        .product-grid-empty.is-visible {
            display: block;
        }

        .product-grid-empty-state {
            grid-column: 1 / -1;
            padding: 40px;
            border-radius: 20px;
            background: #ffffff;
            text-align: center;
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
        }

        .product-grid-empty-state-icon {
            margin-bottom: 10px;
            font-size: 42px;
            line-height: 1;
        }

        .product-grid-empty-state-title {
            margin-bottom: 8px;
            font-size: 22px;
            font-weight: 700;
            line-height: 1.35;
        }

        .product-grid-empty-state-copy {
            font-size: 14px;
            line-height: 1.7;
            color: #6b7280;
        }

        .mobile-only {
            display: none;
        }

        @media (max-width: 900px) {
            .store-header-inner {
                flex-wrap: wrap !important;
                gap: 10px !important;
                align-items: flex-start !important;
            }

            .store-logo {
                height: 56px !important;
            }

            .store-brand-name {
                font-size: 17px !important;
            }

            .store-search {
                order: 3;
                flex: 1 1 100% !important;
                margin-left: 0 !important;
            }

            .store-search-input,
            .store-search-button {
                font-size: 14px !important;
            }

            .store-nav {
                display: flex !important;
                align-items: center !important;
                justify-content: flex-end !important;
                gap: 10px !important;
                flex-wrap: nowrap !important;
                margin-left: auto !important;
                overflow-x: auto !important;
                padding-bottom: 2px !important;
                scrollbar-width: none;
            }

            .store-nav::-webkit-scrollbar {
                display: none;
            }

            .store-nav a,
            .store-nav button {
                font-size: 13px !important;
                white-space: nowrap !important;
            }

            .store-nav-link {
                min-height: 36px !important;
                padding: 8px 12px !important;
                flex: 0 0 auto !important;
            }

            .store-nav.store-nav-auth {
                gap: 8px !important;
            }

            .store-banner-image {
                height: 240px !important;
            }

            .store-slider {
                aspect-ratio: 16 / 8 !important;
            }

            .store-slide-content {
                padding: 22px !important;
                align-items: flex-end !important;
            }

            .store-slide-grid {
                grid-template-columns: 1fr !important;
                align-items: end !important;
                align-content: end !important;
            }

            .store-slide-title {
                font-size: 30px !important;
            }

            .store-slide-text {
                font-size: 14px !important;
            }

            .store-slide-panel,
            .store-slide-aside {
                padding: 18px !important;
            }

            .store-slide-panel {
                max-width: none !important;
            }

            .store-benefits-row {
                flex-wrap: nowrap !important;
                overflow-x: auto !important;
                padding-bottom: 6px !important;
                scrollbar-width: thin;
            }

            .store-benefit-card {
                min-width: 190px !important;
                flex: 0 0 190px !important;
                padding: 16px !important;
            }

            .store-slider-shell {
                padding: 12px 12px 10px !important;
            }

            .store-slider {
                aspect-ratio: 16 / 9 !important;
            }

            .store-slide-content {
                padding: 18px !important;
            }

            .store-slide-panel {
                padding: 16px !important;
            }

            .store-slide-grid {
                grid-template-columns: minmax(0, 1fr) minmax(200px, 240px) !important;
                gap: 12px !important;
            }

            .product-intent-tabs {
                width: 100%;
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 6px;
                scrollbar-width: thin;
            }

            .product-intent-tab {
                flex: 0 0 auto;
            }

            .store-hero-wrap {
                padding: 28px 16px !important;
            }

            .store-hero-panel {
                padding: 24px 20px !important;
            }

            .store-hero-grid {
                display: grid !important;
                grid-template-columns: minmax(0, 1fr) minmax(220px, 280px) !important;
                align-items: start !important;
            }

            .store-hero-title {
                font-size: 32px !important;
            }

            .section-header,
            .promo-header,
            .article-header {
                align-items: flex-start !important;
            }

            .promo-title,
            .product-title,
            .article-title {
                font-size: 28px !important;
            }

            .section-count {
                font-size: 13px !important;
            }

            .promo-grid,
            .article-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
                gap: 14px !important;
            }

            .article-topic-grid {
                grid-template-columns: 1fr !important;
            }

            .promo-card-image,
            .product-card-image,
            .article-card-image {
                height: 150px !important;
            }

            .article-card-body {
                padding: 14px !important;
            }
        }

        @media (max-width: 768px) {
            .product-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
                gap: 8px !important;
            }

            .store-header-inner {
                display: grid !important;
                grid-template-columns: minmax(0, 1fr) auto !important;
                align-items: start !important;
                gap: 8px !important;
                padding: 8px 10px !important;
                flex-wrap: nowrap !important;
            }

            .store-brand {
                display: grid !important;
                grid-template-columns: auto minmax(0, 1fr) !important;
                align-items: center !important;
                gap: 8px !important;
                min-width: 0 !important;
            }

            .store-search {
                order: 0 !important;
                flex: none !important;
                width: 100% !important;
                max-width: none !important;
                margin-left: 0 !important;
                gap: 6px !important;
                grid-column: 1 / -1 !important;
                grid-row: 2 !important;
            }

            .store-search-input {
                height: 34px !important;
                padding: 0 9px !important;
                font-size: 12px !important;
            }

            .store-search-button {
                height: 34px !important;
                padding: 0 8px !important;
                font-size: 12px !important;
            }

            .store-nav-desktop {
                display: none !important;
            }

            .store-mobile-menu {
                display: block !important;
                margin-left: 0 !important;
                justify-self: end !important;
                grid-column: 2 !important;
                grid-row: 1 !important;
            }

            .store-mobile-menu-trigger {
                min-height: 34px !important;
                padding: 0 11px !important;
                font-size: 12px !important;
                border-radius: 12px !important;
            }

            .store-mobile-menu-panel {
                width: min(260px, calc(100vw - 32px));
                min-width: 0;
            }

            .store-hero-grid {
                grid-template-columns: 1fr !important;
            }

            .store-hero-title {
                font-size: 28px !important;
            }

            .store-slider-shell {
                padding: 8px 8px 6px !important;
            }

            .store-slider {
                aspect-ratio: 4 / 3 !important;
                border-radius: 16px !important;
            }

            .store-slide-content {
                padding: 12px !important;
            }

            .store-slide-grid {
                grid-template-columns: minmax(0, 1fr) !important;
                gap: 0 !important;
                width: 100% !important;
            }

            .store-slide-panel {
                max-width: 100% !important;
                min-width: 0 !important;
                width: 100% !important;
                padding: 14px !important;
                border-radius: 14px !important;
                background: linear-gradient(135deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.44)) !important;
            }

            .store-slide-title {
                font-size: 18px !important;
                margin-bottom: 6px !important;
                line-height: 1.16 !important;
                max-width: 100% !important;
                white-space: normal !important;
                overflow: visible !important;
                text-overflow: clip !important;
                overflow-wrap: anywhere !important;
            }

            .store-slide-badge {
                display: none !important;
            }

            .store-slide-text {
                font-size: 11.5px !important;
                line-height: 1.45 !important;
                display: block !important;
                overflow: visible !important;
                max-width: 100% !important;
            }

            .store-slide-mobile-kicker {
                display: inline-block !important;
                max-width: 100% !important;
                padding: 4px 9px !important;
                margin-bottom: 7px !important;
                border-radius: 999px !important;
                background: rgba(255, 255, 255, 0.12) !important;
                color: #f8fafc !important;
                font-size: 10px !important;
                font-weight: 800 !important;
                letter-spacing: 0.04em !important;
                text-transform: uppercase !important;
                white-space: normal !important;
                line-height: 1.35 !important;
            }

            .store-slide-aside {
                display: none !important;
            }

            .store-slide-actions {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 8px !important;
                align-items: stretch !important;
                margin-top: 12px !important;
            }

            .store-slide-button {
                width: 100%;
                min-height: 38px !important;
                margin-top: 0 !important;
                padding: 9px 10px !important;
                font-size: 11.5px !important;
                border-radius: 11px !important;
            }

            .store-slide-button-secondary {
                width: 100%;
                min-height: 38px !important;
                padding: 9px 10px !important;
                font-size: 11.5px !important;
                border-radius: 11px !important;
            }

            .store-slider-controls {
                left: 10px;
                right: 10px;
                justify-content: center;
                bottom: 8px !important;
                gap: 6px !important;
            }

            .store-slider-arrow {
                display: none !important;
            }

            .store-slider-dot {
                width: 8px !important;
                height: 8px !important;
            }

            .store-hero-text {
                font-size: 15px !important;
            }

            .store-logo {
                height: 56px !important;
            }

            .store-brand {
                gap: 8px !important;
                max-width: none !important;
                min-width: 0 !important;
                grid-column: 1 !important;
                grid-row: 1 !important;
            }

            .store-brand-copy {
                display: block !important;
                min-width: 0 !important;
                overflow: hidden !important;
            }

            .store-brand-name {
                display: block !important;
                font-size: 14px !important;
                color: #0f172a !important;
                white-space: nowrap !important;
                overflow: hidden !important;
                text-overflow: ellipsis !important;
            }

            .store-brand-tagline {
                display: none !important;
            }

            .store-brand-fallback-title {
                display: none !important;
            }

            .store-benefits-shell {
                display: none !important;
            }

            .store-slider-shell {
                padding: 16px !important;
            }

            .store-nav-link {
                min-height: 38px !important;
                padding: 8px 13px !important;
                font-size: 12.5px !important;
            }

            .store-nav.store-nav-auth .store-nav-link {
                min-height: 37px !important;
                padding: 8px 11px !important;
                font-size: 12px !important;
            }

            .product-actions {
                grid-template-columns: 1fr 1fr !important;
                align-items: stretch !important;
            }

            .product-primary-form {
                margin-bottom: 0 !important;
            }

            .promo-card-image,
            .product-card-image,
            .article-card-image {
                height: 116px !important;
            }

            .product-card-shell {
                padding: 6px 6px 0 !important;
            }

            .product-card-promo-badge {
                top: 8px !important;
                min-height: 24px !important;
                padding: 5px 8px !important;
                font-size: 9px !important;
            }

            .product-card-promo-badge {
                left: 8px !important;
            }

            .product-name {
                font-size: 15px !important;
                margin-bottom: 8px !important;
                min-height: 40px !important;
            }

            .product-price {
                font-size: 18px !important;
            }

            .product-card-body {
                padding: 10px !important;
            }

            .product-price-before {
                font-size: 11px !important;
                margin-bottom: 3px !important;
            }

            .product-intent-toolbar {
                align-items: flex-start !important;
                margin-bottom: 14px !important;
            }

            .product-intent-tab {
                min-height: 38px !important;
                padding: 8px 12px !important;
                font-size: 11.5px !important;
            }

            .category-shortcut-inner {
                padding: 12px 10px 10px !important;
            }

            .category-shortcut-header {
                margin-bottom: 10px !important;
            }

            .category-shortcut-title {
                font-size: 16px !important;
            }

            .category-shortcut-note {
                font-size: 12px !important;
            }

            .category-row {
                gap: 6px !important;
            }

            .category-shortcut-card {
                min-width: 84px !important;
                gap: 3px !important;
            }

            .category-shortcut-icon {
                width: 54px !important;
                height: 54px !important;
                border-radius: 15px !important;
                font-size: 22px !important;
            }

            .category-shortcut-icon img {
                width: 32px !important;
                height: 32px !important;
            }

            .category-shortcut-label {
                font-size: 12px !important;
                max-width: 84px !important;
            }

            .product-description {
                min-height: 38px !important;
                margin-bottom: 8px !important;
                font-size: 12px !important;
                line-height: 1.45 !important;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 2;
                overflow: hidden;
            }

            .product-meta-row {
                gap: 6px !important;
                margin-bottom: 10px !important;
            }

            .product-meta-row span {
                font-size: 11px !important;
            }

            .product-signal-row span {
                font-size: 10px !important;
                padding: 5px 8px !important;
            }

            .product-conversion-box {
                margin-bottom: 10px !important;
                padding: 10px 10px !important;
            }

            .product-conversion-box div:last-child {
                font-size: 11.5px !important;
                line-height: 1.5 !important;
            }

            .product-primary-form {
                margin-bottom: 0 !important;
            }

            .product-qty-row {
                margin-bottom: 0 !important;
            }

            .product-actions {
                gap: 6px !important;
                grid-template-columns: 1fr 1fr !important;
            }

            .product-action-button {
                padding: 9px 8px !important;
                border-radius: 12px !important;
                font-size: 11.5px !important;
                line-height: 1.25 !important;
            }

            .desktop-only {
                display: none !important;
            }

            .mobile-only {
                display: inline !important;
            }

            .article-topic-item {
                grid-template-columns: 82px minmax(0, 1fr) !important;
                gap: 12px !important;
                padding: 12px 16px !important;
            }

            .article-topic-image {
                width: 82px !important;
                height: 66px !important;
            }
        }

        @media (max-width: 420px) {
            .store-header-inner {
                grid-template-columns: minmax(0, 1fr) auto !important;
                gap: 6px !important;
                padding: 8px !important;
            }

            .store-slider {
                aspect-ratio: 1 / 1 !important;
            }

            .store-slide-content {
                padding: 9px !important;
            }

            .store-logo {
                height: 60px !important;
            }

            .store-brand {
                max-width: none !important;
            }

            .store-brand-name {
                font-size: 13px !important;
            }

            .store-brand-fallback-title {
                font-size: 11px !important;
            }

            .store-benefit-card {
                min-width: 142px !important;
                flex-basis: 142px !important;
            }

            .store-nav {
                gap: 6px !important;
            }

            .store-mobile-menu-trigger {
                padding: 8px 12px !important;
                font-size: 12.5px !important;
            }

            .store-nav-link {
                min-height: 36px !important;
                padding: 7px 11px !important;
                font-size: 12px !important;
            }

            .store-nav.store-nav-auth .store-nav-link {
                padding: 7px 9px !important;
                font-size: 11.5px !important;
            }

            .promo-title,
            .product-title,
            .article-title {
                font-size: 24px !important;
            }

            .product-card-body,
            .article-card-body {
                padding: 12px !important;
            }

            .promo-grid,
            .article-grid {
                grid-template-columns: 1fr !important;
            }

            .product-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
                gap: 8px !important;
            }

            .product-card-image {
                height: 112px !important;
            }

            .product-card-body {
                padding: 8px !important;
            }

            .product-card-topline {
                gap: 4px !important;
            }

            .product-card-category,
            .product-card-buyer {
                font-size: 8.5px !important;
                padding: 3px 6px !important;
            }

            .product-name {
                font-size: 14px !important;
                min-height: 36px !important;
            }

            .product-price {
                font-size: 16px !important;
            }

            .product-price-before {
                font-size: 10px !important;
            }

            .product-stock-pill {
                min-height: 22px !important;
                padding: 4px 6px !important;
                font-size: 8.5px !important;
            }

            .product-quick-badges {
                gap: 4px !important;
                margin-bottom: 8px !important;
            }

            .product-quick-badges span {
                min-height: 24px !important;
                padding: 4px 6px !important;
                font-size: 9px !important;
            }

            .product-cart-inline {
                grid-template-columns: 42px minmax(0, 1fr) !important;
                gap: 5px !important;
            }

            .product-qty-row {
                margin-bottom: 0 !important;
            }

            .product-qty-row input {
                min-height: 34px !important;
                padding: 4px !important;
                font-size: 11px !important;
            }

            .product-action-button {
                font-size: 11px !important;
                padding: 7px 6px !important;
            }

            .product-wishlist-action {
                min-height: 34px !important;
                font-size: 10px !important;
            }

        }

        .category-shortcut-section {
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            border-bottom: 1px solid #e5e7eb;
        }

        .category-shortcut-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px;
        }

        .category-shortcut-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 14px;
        }

        .category-shortcut-title {
            margin: 0;
            font-size: 18px;
            color: #0f172a;
        }

        .category-shortcut-note {
            font-size: 13px;
            color: #64748b;
        }

        .category-row {
            display: flex;
            gap: 6px;
            overflow-x: auto;
            padding-bottom: 4px;
            scrollbar-width: thin;
        }

        .category-shortcut-link {
            text-decoration: none;
            color: inherit;
            flex: 0 0 auto;
        }

        .category-shortcut-card {
            min-width: 58px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3px;
            text-align: center;
            transition: transform 0.18s ease;
        }

        .category-shortcut-card:hover {
            transform: translateY(-2px);
        }

        .category-shortcut-icon {
            width: 60px;
            height: 60px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
            color: var(--theme-secondary);
            font-size: 24px;
            font-weight: 900;
            overflow: hidden;
            border: 1px solid #e5e7eb;
            box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
        }

        .category-shortcut-icon img {
            width: 36px;
            height: 36px;
            object-fit: contain;
            display: block;
        }

        .category-shortcut-card.is-primary .category-shortcut-icon {
            background: linear-gradient(135deg, var(--theme-primary) 0%, color-mix(in srgb, var(--theme-primary) 72%, white) 58%, var(--theme-secondary) 100%);
            border-color: color-mix(in srgb, var(--theme-primary) 52%, transparent);
            color: #ffffff;
        }

        .category-shortcut-card.is-promo .category-shortcut-icon {
            background: linear-gradient(180deg, #fff1f2 0%, #ffe4e6 100%);
            border-color: #fecdd3;
            color: #be123c;
        }

        .category-shortcut-label {
            display: block;
            font-size: 12px;
            font-weight: 800;
            line-height: 1.3;
            max-width: 88px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .homepage-live-proof-stack {
            position: fixed;
            left: 18px;
            bottom: 18px;
            z-index: 1200;
            display: grid;
            gap: 12px;
            pointer-events: none;
        }

        .homepage-live-toast {
            width: min(340px, calc(100vw - 32px));
            padding: 16px 18px;
            border-radius: 20px;
            background: rgba(15, 23, 42, 0.94);
            color: #fff;
            box-shadow: 0 18px 44px rgba(15, 23, 42, 0.28);
            border: 1px solid rgba(255, 255, 255, 0.08);
            opacity: 0;
            transform: translateY(18px) scale(0.96);
            filter: blur(8px);
            transition: opacity 0.32s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), filter 0.32s ease;
            overflow: hidden;
        }

        .homepage-live-toast.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        .homepage-live-toast-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 900;
            color: #cbd5e1;
            margin-bottom: 10px;
        }

        .homepage-live-toast-message {
            font-size: 15px;
            line-height: 1.65;
            font-weight: 700;
            color: #f8fafc;
        }

        .homepage-live-toast-accent {
            color: #facc15;
        }

        .homepage-live-toast-note {
            margin-top: 8px;
            font-size: 12px;
            color: #94a3b8;
        }

        .homepage-live-toast-progress {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 3px;
            background: rgba(255, 255, 255, 0.08);
            overflow: hidden;
        }

        .homepage-live-toast-progress::after {
            content: '';
            display: block;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--theme-accent), #ffffff);
            transform: translateX(-100%);
        }

        .homepage-live-toast.is-visible .homepage-live-toast-progress::after {
            animation: homepage-toast-progress 3s linear forwards;
        }

        @keyframes homepage-toast-progress {
            from {
                transform: translateX(-100%);
            }

            to {
                transform: translateX(0);
            }
        }

        @media (max-width: 768px) {
            .homepage-live-proof-stack {
                display: none !important;
            }
        }
    