
    /* Large Product Card */
    .wbl-large-card-wrapper {
        position: relative;
        max-width: 900px;
        margin: 2rem auto;
        border-radius: var(--wbl-border-radius, 28px);
        padding: 1px;
        background: rgba(var(--wbl-accent-rgb, 255,153,0), 0.4);
        box-shadow: 0 0 20px rgba(var(--wbl-accent-rgb, 255,153,0), var(--wbl-glow-card-1, 0.2)), 0 0 40px rgba(var(--wbl-accent-rgb, 255,153,0), var(--wbl-glow-card-2, 0.12));
        overflow: hidden;
        font-family: var(--wbl-font-body, 'DM Sans', sans-serif);
        font-size: 16px;
        line-height: 1.5;
    }

    .wbl-large-card-wrapper::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        top: -50%;
        left: -50%;
        background: conic-gradient(
            from 0deg,
            transparent 0deg,
            transparent 340deg,
            rgba(var(--wbl-accent-rgb, 255,153,0), 0.9) 350deg,
            var(--wbl-accent-light, #ffad33) 360deg
        );
        animation: wbl-large-shimmer-rotate 12s linear infinite;
    }

    @keyframes wbl-large-shimmer-rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .wbl-large-card {
        display: grid;
        grid-template-columns: 360px 1fr;
        width: 100%;
        background: linear-gradient(165deg, var(--wbl-bg, #0f0f14) 0%, color-mix(in srgb, var(--wbl-bg, #12121a) 90%, white) 100%);
        backdrop-filter: blur(24px);
        border-radius: calc(var(--wbl-border-radius, 28px) - 1px);
        box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(var(--wbl-text-main-rgb, 255, 255, 255), 0.05);
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        position: relative;
    }

    .wbl-large-card-wrapper:hover .wbl-large-card {
        box-shadow: 0 60px 120px -30px rgba(0,0,0,0.6), 0 0 80px rgba(var(--wbl-accent-rgb, 255,153,0), var(--wbl-glow-card-hover, 0.1)), inset 0 1px 0 rgba(var(--wbl-text-main-rgb, 255, 255, 255), 0.08);
    }

    /* Left Section */
    .wbl-large-image-section {
        position: relative;
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        box-sizing: border-box;
    }

    /* Badge */
    .wbl-large-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 14px;
        background: linear-gradient(135deg, var(--wbl-accent, #ff9900) 0%, var(--wbl-accent-light, #ffad33) 50%, var(--wbl-accent, #ff9900) 100%);
        border-radius: calc(var(--wbl-border-radius, 16px) * 0.5);
        box-shadow: 0 4px 16px rgba(var(--wbl-accent-rgb, 255,153,0), var(--wbl-glow-badge, 0.4));
        width: fit-content;
    }

    .wbl-large-badge svg {
        width: 12px;
        height: 12px;
        fill: var(--wbl-btn-text, #1a1a2e);
    }

    .wbl-large-badge span {
        font-family: var(--wbl-font-button, 'Space Grotesk', sans-serif);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--wbl-btn-text, #1a1a2e);
    }

    /* Product Stage */
    .wbl-large-product-stage {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        background: #ffffff;
        border-radius: calc(var(--wbl-border-radius, 20px) - 8px);
        padding: 24px;
        border: 1px solid rgba(var(--wbl-text-main-rgb, 255, 255, 255), 0.1);
        min-height: 280px;
        box-sizing: border-box;
    }

    .wbl-large-product-stage img {
        max-width: 90%;
        max-height: 90%;
        width: auto;
        height: auto;
        object-fit: contain;
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        position: relative;
        z-index: 1;
    }

    .wbl-large-product-stage:hover img {
        transform: scale(1.05);
    }

    /* Right Section */
    .wbl-large-content-section {
        padding: 32px 36px;
        display: flex;
        flex-direction: column;
        border-left: 1px solid rgba(var(--wbl-text-main-rgb, 255, 255, 255), 0.04);
        box-sizing: border-box;
    }

    /* Brand */
    .wbl-large-brand {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 10px;
    }

    .wbl-large-brand span {
        font-family: var(--wbl-font-button, 'Space Grotesk', sans-serif);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--wbl-accent, #ff9900);
    }

    .wbl-large-brand svg {
        width: 14px;
        height: 14px;
        stroke: var(--wbl-accent, #ff9900);
        fill: none;
        stroke-width: 2;
    }

    /* Title */
    .wbl-large-product-title {
        font-family: var(--wbl-font-heading, 'Outfit', sans-serif);
        font-size: 24px;
        font-weight: 600;
        color: var(--wbl-text-main, #ffffff);
        line-height: 1.2;
        margin: 0.5rem 0 1rem 0;
        letter-spacing: -0.3px;
    }

    .wbl-large-card-wrapper .wbl-large-product-title a {
        color: var(--wbl-text-main, #ffffff);
        text-decoration: none;
    }

    .wbl-large-card-wrapper .wbl-large-product-title a:hover {
        text-decoration: underline;
    }

    .wbl-large-product-stage a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wbl-large-card-wrapper p.wbl-large-product-subtitle {
        font-family: var(--wbl-font-body, 'DM Sans', sans-serif);
        font-size: 14px;
        color: var(--wbl-text-secondary, #999999);
        margin: 0 0 20px 0;
    }

    /* Description */
    .wbl-large-card-wrapper p.wbl-large-product-description {
        font-family: var(--wbl-font-body, 'DM Sans', sans-serif);
        font-size: 16px;
        line-height: 1.4;
        color: var(--wbl-text-secondary, #999999);
        margin: 0 0 24px 0;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(var(--wbl-text-main-rgb, 255, 255, 255), 0.04);
    }

    /* Features Grid */
    .wbl-large-features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 20px;
    }

    .wbl-large-feature-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 14px;
        background: rgba(var(--wbl-text-main-rgb, 255, 255, 255), 0.02);
        border-radius: calc(var(--wbl-border-radius, 16px) * 0.625);
        border: 1px solid rgba(var(--wbl-text-main-rgb, 255, 255, 255), 0.04);
        transition: all 0.3s ease;
        cursor: pointer;
        user-select: none;
    }

    .wbl-large-feature-item:hover {
        background: rgba(var(--wbl-text-main-rgb, 255, 255, 255), 0.04);
        border-color: rgba(var(--wbl-text-main-rgb, 255, 255, 255), 0.08);
    }

    .wbl-large-feature-item.highlight {
        background: linear-gradient(135deg, rgba(var(--wbl-accent-rgb, 255,153,0), 0.15) 0%, rgba(var(--wbl-accent-rgb, 255,153,0), 0.06) 100%);
        border: 1px solid rgba(var(--wbl-accent-rgb, 255,153,0), 0.25);
    }

    .wbl-large-feature-item .icon {
        font-size: 13px;
        color: rgba(var(--wbl-text-main-rgb, 255, 255, 255), 0.4);
    }

    .wbl-large-feature-item.highlight .icon {
        color: var(--wbl-accent, #ff9900);
    }

    .wbl-large-feature-item .text {
        font-family: var(--wbl-font-body, 'DM Sans', sans-serif);
        font-size: 11px;
        line-height: 1.2;
        color: var(--wbl-text-secondary, #999999);
        font-weight: 500;
    }

    .wbl-large-feature-item.highlight .text {
        color: rgba(var(--wbl-text-main-rgb, 255, 255, 255), 0.9);
        font-weight: 600;
    }

    /* Specs Grid */
    .wbl-large-specs-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(var(--wbl-text-main-rgb, 255, 255, 255), 0.04);
    }

    .wbl-large-spec-item {
        padding: 12px 0;
    }

    .wbl-large-spec-item label {
        font-family: var(--wbl-font-button, 'Space Grotesk', sans-serif);
        font-size: 9px;
        line-height: 1.2;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--wbl-text-secondary, #999999);
        display: block;
        margin-bottom: 6px;
    }

    .wbl-large-spec-item span {
        font-family: var(--wbl-font-heading, 'Outfit', sans-serif);
        font-size: 16px;
        line-height: 1.2;
        font-weight: 700;
        color: var(--wbl-text-main, #ffffff);
        letter-spacing: -0.5px;
    }

    /* Buttons */
    .wbl-large-button-group {
        display: flex;
        gap: 10px;
        margin-top: auto;
        align-items: stretch;
        container-type: inline-size;
    }

    .wbl-large-card-wrapper .wbl-large-btn-primary {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        height: 40px;
        padding: 0 24px;
        background: linear-gradient(135deg, var(--wbl-accent, #ff9900) 0%, var(--wbl-accent-light, #ffad33) 100%);
        border: none;
        border-radius: calc(var(--wbl-border-radius, 16px) * 0.75);
        font-family: var(--wbl-font-button, 'Space Grotesk', sans-serif);
        font-size: clamp(8px, 10cqw, 12px);
        font-weight: 700;
        letter-spacing: 0.8px;
        text-wrap-mode: nowrap;
        text-transform: uppercase;
        color: var(--wbl-btn-text, #1a1a2e);
        cursor: pointer;
        box-shadow: 0 8px 24px rgba(var(--wbl-accent-rgb, 255,153,0), var(--wbl-glow-btn, 0.35));
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .wbl-large-card-wrapper .wbl-large-btn-primary:hover {
        transform: translateY(-2px);
        filter: brightness(1.05);
        box-shadow: 0 12px 32px rgba(var(--wbl-accent-rgb, 255,153,0), var(--wbl-glow-btn-hover, 0.45));
        color: var(--wbl-btn-text, #1a1a2e);
        text-decoration: none;
    }

    .wbl-large-card-wrapper .wbl-large-btn-primary svg {
        width: 15px;
        height: 15px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.5;
    }

    .wbl-large-card-wrapper .wbl-large-btn-secondary {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        padding: 0 20px;
        background: transparent;
        border: 1px solid rgba(var(--wbl-text-secondary-rgb, 153, 153, 153), 0.3);
        border-radius: calc(var(--wbl-border-radius, 16px) * 0.75);
        font-family: var(--wbl-font-button, 'Space Grotesk', sans-serif);
        font-size: clamp(8px, 10cqw, 12px);
        font-weight: 600;
        letter-spacing: 0.3px;
        text-wrap-mode: nowrap;
        color: var(--wbl-text-secondary, #999999);
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .wbl-large-card-wrapper .wbl-large-btn-secondary:hover {
        transform: translateY(-2px);
        background: rgba(var(--wbl-text-secondary-rgb, 153, 153, 153), 0.1);
        border-color: rgba(var(--wbl-text-secondary-rgb, 153, 153, 153), 0.5);
        color: var(--wbl-text-main, #ffffff);
        text-decoration: none;
    }

    /* Disclaimer */
    .wbl-large-card-wrapper .wbl-large-disclaimer {
        font-family: var(--wbl-font-body, 'DM Sans', sans-serif);
        font-size: 9px;
        line-height: 1.2;
        color: var(--wbl-text-secondary, #999999);
        margin: 10px 0 0 0;
        text-align: center;
        letter-spacing: 0.3px;
    }

    /* Responsive - 2-column squeeze zone: buttons stack when content column is too narrow */
    @media (max-width: 1119px) and (min-width: 801px) {
        .wbl-large-button-group {
            flex-direction: column;
        }

        .wbl-large-card-wrapper .wbl-large-btn-primary {
            flex: none;
        }
    }

    @media (max-width: 800px) {
        .wbl-large-card-wrapper {
            max-width: 440px;
        }

        .wbl-large-card {
            grid-template-columns: 1fr;
        }

        .wbl-large-product-stage {
            min-height: 200px;
        }

        .wbl-large-product-stage img {
            max-width: 90%;
        }

        .wbl-large-content-section {
            border-left: none;
            border-top: 1px solid rgba(var(--wbl-text-main-rgb, 255, 255, 255), 0.04);
        }

        .wbl-large-features-grid {
            grid-template-columns: 1fr;
        }

        .wbl-large-specs-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 500px) {
        .wbl-large-card-wrapper .wbl-large-btn-primary {
            height: 40px;
            padding: 0 16px;
            font-size: clamp(8px, 10cqw, 12px);
            gap: 8px;
            letter-spacing: 0.5px;
        }

        .wbl-large-card-wrapper .wbl-large-btn-primary svg {
            width: 13px;
            height: 13px;
        }

        .wbl-large-card-wrapper .wbl-large-btn-secondary {
            height: 40px;
            padding: 0 14px;
            font-size: clamp(8px, 10cqw, 12px);
        }

        .wbl-large-card-wrapper .wbl-large-disclaimer {
            margin-top: 8px;
        }
    }

    @media (max-width: 400px) {
        .wbl-large-button-group {
            flex-direction: column;
        }

        .wbl-large-card-wrapper .wbl-large-btn-primary {
            flex: none;
        }
    }
    