    /* Custom style for the hub/parent layout */
    .pcn-hub-layout {
        display: grid;
        grid-template-columns: 413px 1fr;
        gap: 12px;
        background: #fff;
        border-radius: 16px;
    }
    .pcn-hub-left {
        background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
        border-radius: 12px;
        padding: 12px 20px;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 412px;
        position: relative;
        overflow: hidden;
    }
    .pcn-hub-left::before {
        content: '';
        position: absolute;
        top: 0; right: 0;
        width: 150px; height: 150px;
        background: radial-gradient(circle, rgba(239, 0, 0, 0.15) 0%, rgba(0,0,0,0) 70%);
        pointer-events: none;
    }
    .pcn-hub-left-logo {
        height: 32px;
        object-fit: contain;
        margin-bottom: 24px;
        align-self: flex-start;
    }
    .pcn-hub-left-content {
        z-index: 1;
    }
    .pcn-hub-left-title {
        font-size: 26px;
        font-weight: 500;
        line-height: 1.25;
        margin-bottom: 12px;
        background: linear-gradient(90deg, #fff 0%, #ddd 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .pcn-hub-left-desc {
        font-size: 14px;
        color: #aaa;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    .pcn-hub-left-badge {
        display: inline-block;
        background: rgba(239, 0, 0, 0.1);
        border: 1px solid rgba(239, 0, 0, 0.3);
        color: #ef0000;
        font-size: 12px;
        font-weight: 500;
        padding: 6px 12px;
        border-radius: 30px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .pcn-hub-right {
        min-width: 0; /* Fix flex-swiper bug */
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .pcn-hub-swiper-container {
        width: 100%;
    }
    .pcn-package-card-hub {
        background: #fff;
        border: 1px solid #eaeaea;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        display: flex;
        flex-direction: column;
        height: 100%;
        text-decoration: none;
        color: inherit;
        position: relative;
    }
    
    /* Option C: Corner Badges */
    .pcn-hub-corner-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        padding: 5px 12px;
        font-size: 11px;
        font-weight: 500;
        border-radius: 30px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 2;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }
    .badge-nr {
        background: #28a745;
        color: #fff;
    }
    .badge-ir {
        background: #007bff;
        color: #fff;
    }
    .badge-hybrid {
        background: #fd7e14;
        color: #fff;
    }
    .badge-crystalline {
        background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
        color: #000;
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    }

    .swiper{
        padding:1.5px;
        margin:-1.5px;
    }

    /* Vehicle toggle buttons */
    .pcn-hub-vehicle-toggle {
        display: flex;
        gap: 0;
        margin-bottom: 10px;
        border-radius: 6px;
        overflow: hidden;
        border: 1px solid #dee2e6;
    }
    .pcn-hub-veh-btn {
        flex: 1;
        padding: 5px 4px;
        font-size: 11.5px;
        font-weight: 600;
        border: none;
        background: #f8f9fa;
        color: #495057;
        cursor: pointer;
        transition: all 0.2s;
        white-space: nowrap;
    }
    .pcn-hub-veh-btn.active {
        background: #ef0000;
        color: #fff;
    }
    .pcn-hub-veh-btn:not(:last-child) {
        border-right: 1px solid #dee2e6;
    }
    .pcn-hub-price-label {
        font-size: 11px;
        color: #888;
        text-transform: uppercase;
        display: block;
    }
    .pcn-hub-price-value {
        font-size: 16px;
        font-weight: 700;
        color: #ef0000;
    }
    .pcn-package-card-hub:hover {
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        border-color: #ef0000;
    }
    .pcn-package-card-hub-img {
        aspect-ratio: 1/1;
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #f7f7f7;
    }
    .pcn-package-card-hub-body {
        padding: 12px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    
    /* Clean and Premium news styles overrides (Option A & Contain Image) */
    .pcn-article-card {
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        border: 1px solid #eaeaea;
        background: #fff;
    }
    .pcn-article-card:hover {
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        border-color: #ef0000;
    }
    .pcn-article-card__thumb {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        display: block;
    }
    .pcn-article-card__thumb img {
        position: relative;
        width: 100%;
        height: auto;
        object-fit: contain;
        transition: transform 0.5s ease;
        display: block;
    }
    .pcn-article-card:hover .pcn-article-card__thumb img {
        transform: scale(1.05);
    }
    .pcn-article-card__title a {
        transition: color 0.2s;
        text-decoration: none;
        color: #1a1a1a;
    }
    .pcn-article-card:hover .pcn-article-card__title a {
        color: #ef0000;
    }
    .pcn-article-card:hover .pcn-article-card__footer {
        color: #ef0000;
    }
    .pcn-article-card:hover .pcn-article-card__footer-arrow {
        transform: translateX(4px);
    }
    .pcn-package-card-hub-eyebrow {
        font-size: 11px;
        font-weight: 500;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 6px;
    }
    .pcn-package-card-hub-title {
        font-size: 15px;
        font-weight: 450;
        color: #1a1a1a;
        margin: 0 0 8px 0;
        line-height: 1.35;
        transition: color 0.2s;
        height: 22px;
    }
    .pcn-package-card-hub:hover .pcn-package-card-hub-title {
        color: #ef0000;
    }
    .pcn-package-card-hub-desc {
        font-size: 12.5px;
        color: #666;
        line-height: 1.5;
        margin: 0 0 12px 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 38px;
    }
    .pcn-package-card-hub-specs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        margin-bottom: 16px;
    }
    .spec-badge {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        border-radius: 6px;
        padding: 5px 8px;
        font-size: 11px;
    }
    .spec-badge .spec-label {
        color: #6c757d;
        font-weight: 500;
    }
    .spec-badge .spec-val {
        color: #212529;
        font-weight: 500;
    }
    .spec-badge.spec-highlight {
        background: rgba(239, 0, 0, 0.04);
        border-color: rgba(239, 0, 0, 0.15);
    }
    .spec-badge.spec-highlight .spec-label {
        color: #ef0000;
    }
    .spec-badge.spec-highlight .spec-val {
        color: #ef0000;
    }
    .pcn-package-card-hub-footer {
        margin-top: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 12px;
        border-top: 1px solid #f0f0f0;
    }
    .pcn-package-card-hub-price {
        font-size: 15px;
        font-weight: 500;
        color: #ef0000;
    }
    .pcn-package-card-hub-btn {
        font-size: 12px;
        font-weight: 500;
        color: #ef0000;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .pcn-package-card-hub-btn i {
        font-size: 14px;
        transition: transform 0.2s;
    }
    .pcn-package-card-hub:hover .pcn-package-card-hub-btn i {
        transform: translateX(3px);
    }
    
    /* Navigation */
    .pcn-hub-swiper-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid #ddd;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        transition: all 0.2s;
    }
    .pcn-hub-swiper-nav:hover {
        background: #ef0000;
        border-color: #ef0000;
        color: #fff;
    }
    .pcn-hub-swiper-nav-prev {
        left: -18px;
    }
    .pcn-hub-swiper-nav-next {
        right: -18px;
    }

    @media (max-width: 991px) {
        .pcn-hub-layout {
            grid-template-columns: 1fr;
        }
        .pcn-hub-left {
            min-height: auto;
            padding: 12px;
        }
        .pcn-hub-swiper-nav-prev {
            left: 0;
        }
        .pcn-hub-swiper-nav-next {
            right: 0;
        }
    }
    
    /* Hero Banner overrides to remove aspect-ratio and flow naturally */
    .pcn-banner-slide-inner{
        aspect-ratio: 2/1;
    }
    .pcn-banner-slide-inner img {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        display: block;
    }
    
    /* Hero Swiper navigation buttons fix */
    .swiper-button-next.hero-next,
    .swiper-button-prev.hero-prev {
        margin-top: 0 !important;
        transform: translateY(-50%) !important;
        top: 50% !important;
        width: 40px !important;
        height: 40px !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border: 1px solid #ddd !important;
        color: #1f2937 !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
        border-radius: 50% !important;
        transition: all 0.2s !important;
        opacity: 0 !important;
        display: flex !important;
    }
    .pcn-hero-wrap:hover .swiper-button-next.hero-next,
    .pcn-hero-wrap:hover .swiper-button-prev.hero-prev {
        opacity: 1 !important;
    }
    .swiper-button-next.hero-next:hover,
    .swiper-button-prev.hero-prev:hover {
        background: #ef0000 !important;
        border-color: #ef0000 !important;
        color: #fff !important;
    }
    .swiper-button-next.hero-next {
        right: 16px !important;
        left: auto !important;
    }
    .swiper-button-prev.hero-prev {
        left: 16px !important;
        right: auto !important;
    }
    .swiper-button-next.hero-next::after,
    .swiper-button-prev.hero-prev::after {
        font-size: 14px !important;
        font-weight: 500 !important;
    }
