        .home-unified-section {
            padding: 16px 0;
        }

        .shop-title {
            font-size: 32px;
            font-weight: 900;
            line-height: 1.2;
        }

        .shop-gradient-text {
            background: linear-gradient(90deg, var(--primary), var(--secondary-base));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .shop-view-all-link {
            letter-spacing: .05em;
            font-weight: 600;
        }

        .shop-grid-seven {
            display: flex;
            flex-wrap: wrap;
            margin-left: -8px;
            margin-right: -8px;
        }

        .shop-grid-seven .product-col {
            padding: 0 8px 16px;
            display: flex;
            min-width: 0;
            box-sizing: border-box;
        }

        @media (min-width: 1200px) {
            .shop-grid-seven .product-col {
                flex: 0 0 14.2857% !important;
                max-width: 14.2857% !important;
            }

            .shop-grid-seven .product-col:nth-child(n+15) {
                display: none;
            }
        }

        @media (min-width: 768px) and (max-width: 1199.98px) {
            .shop-grid-seven .product-col {
                flex: 0 0 25% !important;
                max-width: 25% !important;
            }

            .shop-grid-seven .product-col:nth-child(n+9) {
                display: none;
            }
        }

        @media (max-width: 767.98px) {
            .shop-grid-seven .product-col {
                flex: 0 0 50% !important;
                max-width: 50% !important;
            }

            .shop-grid-seven .product-col:nth-child(n+5) {
                display: none;
            }
        }

        .shop-prod-card {
            border-radius: 16px;
            background: #ffffff;
            border: 1px solid #f0f0f0;
            padding: 10px 8px 12px;
            transition: box-shadow .15s ease, transform .15s ease;
            width: 100%;
        }

        .shop-prod-card:hover {
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
            transform: translateY(-2px);
        }

        .shop-prod-img-wrapper {
            width: 100%;
            padding-top: 100%;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            background: #fafafa;
        }

        .shop-prod-img-wrapper img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .shop-prod-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 6px;
            margin-top: 10px;
        }

        .shop-prod-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            border-radius: 999px;
            padding: 5px 11px;
            font-size: 10px;
            font-weight: 900;
            letter-spacing: .08em;
            text-transform: uppercase;
            border: 1px solid rgba(255, 255, 255, 0.75);
            box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
            line-height: 1;
        }

        .shop-prod-badge::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 999px;
            background: currentColor;
            opacity: 0.7;
        }

        .shop-prod-badge--accent {
            background: linear-gradient(135deg, rgba(255, 247, 237, 0.98), rgba(254, 215, 170, 0.96));
            color: #c2410c;
        }

        .shop-prod-badge--hot {
            background: linear-gradient(135deg, rgba(255, 241, 242, 0.98), rgba(254, 205, 211, 0.96));
            color: #be123c;
        }

        .shop-prod-badge--preorder {
            background: linear-gradient(135deg, rgba(255, 251, 235, 0.98), rgba(253, 230, 138, 0.96));
            color: #b45309;
        }

        .shop-prod-badge--cool {
            background: linear-gradient(135deg, rgba(239, 246, 255, 0.98), rgba(191, 219, 254, 0.96));
            color: #1d4ed8;
        }

        .shop-prod-title {
            font-size: 13px;
            font-weight: 500;
            height: 36px;
            overflow: hidden;
            line-height: 1.35;
        }

        .shop-prod-price {
            font-size: 13px;
        }

        .shop-prod-meta {
            font-size: 12px;
            color: #6b7280;
            min-height: 18px;
        }

        .shop-prod-cta {
            margin-top: 10px;
            font-size: 12px;
            font-weight: 700;
            color: #111827;
        }

        #view-more-container .btn {
            border-radius: 999px;
            border: 1px solid var(--blue);
            background: #ffffff;
            color: var(--blue);
            box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
            font-weight: 700;
            min-width: 180px;
        }

        #view-more-container .btn:hover,
        #view-more-container .btn:focus,
        #view-more-container .btn:active {
            border-color: var(--blue);
            background: var(--blue);
            color: #ffffff;
            box-shadow: 0 12px 24px rgba(52, 144, 243, 0.22);
        }

        @media (max-width: 767.98px) {
            .home-unified-section {
                padding: 12px 0;
            }

            .shop-title {
                font-size: 26px;
            }

            .shop-prod-badge {
                padding: 4px 10px;
                font-size: 9px;
                letter-spacing: .07em;
            }
        }
