.product-page-wrapper {
            background: #fff;
            padding-top: 100px;
            padding-bottom: 60px;
        }
        
        /* BREADCRUMB */
        .breadcrumb-container {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #64748b;
            padding: 24px 0;
            overflow-x: auto;
            white-space: nowrap;
        }
        .breadcrumb-container::-webkit-scrollbar { display: none; }
        .breadcrumb-container a {
            color: #0f172a;
            text-decoration: none;
            font-weight: 500;
        }
        .breadcrumb-container svg {
            width: 14px;
            height: 14px;
            color: #94a3b8;
        }

        /* HERO SECTION */
        .pp-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }
        @media (max-width: 1024px) {
            .pp-hero { grid-template-columns: 1fr; gap: 40px; }
        }

        /* Gallery */
        .pp-gallery {
            position: relative;
        }
        .ppg-main {
            position: relative;
            background: #f8fafc;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
            aspect-ratio: 4/3;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-bottom: 16px;
        }
        .ppg-main img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 20px;
            background: #fff;
        }
        .ppg-counter {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(15, 23, 42, 0.7);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 6px;
            backdrop-filter: blur(4px);
            z-index: 2;
        }
        .ppg-zoom {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #fff;
            border: 1px solid #e2e8f0;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0f172a;
            cursor: pointer;
            z-index: 2;
            transition: all 0.2s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .ppg-zoom:hover { background: #f8fafc; transform: scale(1.05); }
        .ppg-zoom svg { width: 18px; height: 18px; }

        .ppg-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #fff;
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #0f172a;
            z-index: 2;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: all 0.2s;
            opacity: 0;
        }
        .ppg-main:hover .ppg-nav { opacity: 1; }
        .ppg-nav:hover { background: #f8fafc; color: #126cff; }
        .ppg-nav.prev { left: 16px; }
        .ppg-nav.next { right: 16px; }
        .ppg-nav svg { width: 24px; height: 24px; }

        .ppg-thumbs {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            scrollbar-width: none;
        }
        .ppg-thumbs::-webkit-scrollbar { display: none; }
        .ppg-thumb {
            width: 80px;
            height: 80px;
            flex-shrink: 0;
            border-radius: 8px;
            border: 2px solid transparent;
            overflow: hidden;
            cursor: pointer;
            background: #fff;
            padding: 4px;
            transition: all 0.2s;
            opacity: 0.6;
        }
        .ppg-thumb.active {
            opacity: 1;
            border-color: #126cff;
        }
        .ppg-thumb:hover { opacity: 1; }
        .ppg-thumb img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 4px;
        }

        /* Info (Right) */
        .ppi-category {
            color: #126cff;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 12px;
        }
        .pp-info h1 {
            font-size: clamp(28px, 4vw, 36px);
            font-weight: 700;
            color: #0f172a;
            line-height: 1.2;
            margin: 0 0 24px;
        }
        .ppi-supplier {
            display: inline-flex;
            align-items: center;
            padding: 12px 24px;
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            margin-bottom: 24px;
        }
        .ppi-supplier img {
            max-width: 120px;
            max-height: 32px;
            object-fit: contain;
        }
        .ppi-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 24px;
        }
        .ppi-tag {
            background: #eff6ff;
            color: #126cff;
            font-size: 13px;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 20px;
        }
        .ppi-lead {
            font-size: 16px;
            line-height: 1.6;
            color: #475569;
            margin-bottom: 32px;
        }
        .ppi-actions {
            display: flex;
            gap: 16px;
        }
        @media (max-width: 640px) {
            .ppi-actions { flex-direction: column; }
        }
        .btn-dark {
            background: #0f172a;
            color: #fff;
            border: none;
            padding: 16px 24px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.2s;
            flex: 1;
        }
        .btn-dark:hover { background: #1e293b; transform: translateY(-2px); }
        .btn-dark svg { width: 18px; height: 18px; }
        
        .btn-outline {
            background: #fff;
            color: #0f172a;
            border: 1px solid #e2e8f0;
            padding: 16px 24px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.2s;
            flex: 1;
        }
        .btn-outline:hover { background: #f8fafc; border-color: #cbd5e1; }
        .btn-outline svg { width: 18px; height: 18px; }

        /* QUICK INFO BAR */
        .pp-quick-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            margin-bottom: 60px;
        }
        .pqi-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 24px;
            border-right: 1px solid #e2e8f0;
        }
        .pqi-item:last-child { border-right: none; }
        @media (max-width: 1024px) {
            .pqi-item { border-right: none; border-bottom: 1px solid #e2e8f0; }
            .pqi-item:last-child { border-bottom: none; }
        }
        .pqi-icon {
            width: 48px;
            height: 48px;
            background: #eff6ff;
            color: #126cff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .pqi-icon svg { width: 24px; height: 24px; }
        .pqi-text { display: flex; flex-direction: column; gap: 4px; }
        .pqi-label { font-size: 12px; color: #64748b; font-weight: 600; text-transform: uppercase; }
        .pqi-value { font-size: 15px; color: #0f172a; font-weight: 600; }

        /* SECTION TITLES */
        .pp-about h2, .pp-tech-attrs h2, .pp-tech-table h2, .pp-video-down h2, .pp-related h2 {
            font-size: 24px;
            font-weight: 700;
            color: #0f172a;
            margin: 0 0 24px;
        }

        /* ABOUT */
        .pp-about { margin-bottom: 60px; }
        .ppa-text {
            color: #475569;
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 900px;
        }
        
        .ppa-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            padding-top: 40px;
            border-top: 1px solid #e2e8f0;
        }
        .ppac-col h3 {
            font-size: 18px;
            font-weight: 700;
            color: #0f172a;
            margin: 0 0 24px;
        }
        @media (min-width: 1025px) {
            .ppac-col:not(:last-child) {
                border-right: 1px solid #e2e8f0;
                padding-right: 40px;
            }
        }
        
        .ppac-list-icons, .ppac-list-checks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
        .ppac-list-icons li { display: flex; align-items: center; gap: 12px; color: #475569; font-weight: 500; }
        .ppac-list-icons svg { width: 20px; height: 20px; color: #94a3b8; }
        
        .ppac-list-checks li { display: flex; align-items: flex-start; gap: 12px; color: #475569; font-weight: 500; line-height: 1.5; }
        .ppac-list-checks svg { width: 20px; height: 20px; color: #126cff; flex-shrink: 0; margin-top: 2px; }

        .ppac-list-benefits { display: flex; flex-direction: column; gap: 24px; }
        .plb-item { display: flex; gap: 16px; }
        .plb-icon { width: 40px; height: 40px; border-radius: 50%; background: #eff6ff; color: #126cff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .plb-icon svg { width: 20px; height: 20px; }
        .plb-text strong { display: block; color: #0f172a; font-weight: 600; margin-bottom: 4px; }
        .plb-text span { color: #64748b; font-size: 14px; line-height: 1.5; display: block; }

        /* TECH ATTRS */
        .pp-tech-attrs { margin-bottom: 60px; }
        .pta-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
        .pta-box {
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 24px;
            background: #fff;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .ptab-icon { width: 40px; height: 40px; border-radius: 8px; background: #eff6ff; display: flex; align-items: center; justify-content: center; }
        .ptab-icon svg { width: 24px; height: 24px; color: #126cff; }
        .ptab-text { display: flex; flex-direction: column; gap: 4px; }
        .ptab-label { font-size: 12px; color: #64748b; font-weight: 600; text-transform: uppercase; }
        .ptab-value { font-size: 16px; color: #0f172a; font-weight: 700; }

        /* TECH TABLE */
        .pp-tech-table { margin-bottom: 60px; }
        .ptt-container { border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; background: #fff; }
        .ptt-tabs { display: flex; border-bottom: 1px solid #e2e8f0; background: #f8fafc; }
        .ptt-tab { padding: 16px 24px; background: #0f172a; color: #fff; font-weight: 600; border: none; font-size: 14px; }
        .ptt-content table { width: 100%; border-collapse: collapse; }
        .ptt-content th, .ptt-content td { padding: 16px 24px; border-bottom: 1px solid #e2e8f0; text-align: left; }
        .ptt-content th { width: 40%; color: #64748b; font-weight: 500; }
        .ptt-content td { color: #0f172a; font-weight: 600; }
        .ptt-content tr:last-child th, .ptt-content tr:last-child td { border-bottom: none; }
        .ptt-content tr:nth-child(even) { background: #f8fafc; }

        /* VIDEO & DOWNLOADS */
        .pp-video-down { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-bottom: 60px; }
        @media (max-width: 1024px) { .pp-video-down { grid-template-columns: 1fr; } }
        
        .pv-thumb {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 16/9;
            background: #000;
        }
        .pv-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: opacity 0.3s; }
        .pv-thumb:hover img { opacity: 0.6; }
        .pv-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
        .pv-play-btn {
            width: 64px; height: 64px; border-radius: 50%; background: #ef4444; display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4); transition: transform 0.2s;
        }
        .pv-thumb:hover .pv-play-btn { transform: scale(1.1); }
        .pv-play-btn svg { width: 24px; height: 24px; margin-left: 4px; }
        
        .pd-list { display: flex; flex-direction: column; gap: 16px; }
        .pd-item {
            display: flex; align-items: center; gap: 16px; padding: 20px;
            border: 1px solid #e2e8f0; border-radius: 12px; background: #fff;
        }
        .pdi-icon { width: 40px; height: 40px; border-radius: 8px; background: #f8fafc; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .pdi-icon svg { width: 24px; height: 24px; }
        .pdi-text { flex: 1; display: flex; flex-direction: column; gap: 4px; }
        .pdi-text strong { font-size: 15px; color: #0f172a; }
        .pdi-text span { font-size: 13px; color: #64748b; }
        .pdi-download { color: #cbd5e1; }
        .pdi-download:hover { color: #126cff; }
        .pdi-download svg { width: 20px; height: 20px; }

        /* SUPPLIER BANNER */
        .pp-supplier-banner {
            background: #f8fafc;
            border-radius: 16px;
            padding: 30px 40px;
            margin-bottom: 60px;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }
        .psb-logo { flex-shrink: 0; }
        .psb-logo img { max-width: 180px; max-height: 50px; object-fit: contain; }
        .pp-supplier-banner p { flex: 1; color: #475569; line-height: 1.6; font-size: 15px; margin: 0; text-align: left; }
        .psb-btn {
            display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
            background: #fff; border: 1px solid #cbd5e1; color: #0f172a;
            padding: 12px 24px; border-radius: 8px; font-weight: 600; text-decoration: none;
            transition: all 0.2s;
        }
        .psb-btn:hover { background: #f1f5f9; }
        .psb-btn svg { width: 18px; height: 18px; }

        @media (max-width: 900px) {
            .pp-supplier-banner {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            .pp-supplier-banner p { text-align: center; }
        }

        /* RELATED */
        .pp-related { margin-bottom: 60px; }
        .ppr-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; }
        .ppr-header h2 { margin: 0; }
        .ppr-header a { display: flex; align-items: center; gap: 8px; color: #126cff; font-weight: 600; text-decoration: none; }
        .ppr-header a:hover { text-decoration: underline; }
        .ppr-header a svg { width: 18px; height: 18px; }
        
        /* Using the same grid from index.blade.php */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 24px;
        }
        
        /* CTA BOTTOM */
        .pp-cta-bottom {
            background: #f8fafc;
            border-radius: 16px;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
            border: 1px solid #e2e8f0;
        }
        @media (max-width: 1024px) {
            .pp-cta-bottom { flex-direction: column; text-align: center; }
        }
        .pcb-icon { width: 64px; height: 64px; border-radius: 50%; background: #eff6ff; color: #126cff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .pcb-icon svg { width: 32px; height: 32px; }
        .pcb-text { flex: 1; }
        .pcb-text h2 { font-size: 22px; font-weight: 700; color: #0f172a; margin: 0 0 8px; }
        .pcb-text p { color: #64748b; margin: 0; font-size: 15px; }
        .pcb-action { display: flex; flex-direction: column; gap: 16px; align-items: center; }
        .pcb-phone { display: flex; align-items: center; gap: 8px; color: #0f172a; font-weight: 700; font-size: 16px; }
        .pcb-phone svg { width: 20px; height: 20px; color: #126cff; }

        /* Video Modal Styles from original file */
        .video-modal {
            display: none; position: fixed; inset: 0; z-index: 10000; align-items: center; justify-content: center;
        }
        .video-modal.open { display: flex; }
        .video-modal-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.9); }
        .video-modal-inner { position: relative; z-index: 1; width: min(960px, calc(100vw - 32px)); }
        .video-modal-close { position: absolute; top: -48px; right: 0; background: transparent; border: none; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 8px; }
        .video-modal-close svg { width: 24px; height: 24px; }
        .video-modal-frame { position: relative; padding-bottom: 56.25%; border-radius: 16px; overflow: hidden; background: #000; }
        .video-modal-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
        
        .detailed-html img { max-width: 100%; height: auto; display: block; margin: 1rem 0; border-radius: 8px; }
        .detailed-html * { font-family: inherit !important; line-height: 1.6 !important; }
        .detailed-html *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) { font-size: 16px !important; color: #475569 !important; }
        .detailed-html h1, .detailed-html h2, .detailed-html h3, .detailed-html h4, .detailed-html h5, .detailed-html h6 { font-weight: 700 !important; color: #0f172a !important; margin: 24px 0 12px !important; }
        .detailed-html ul { padding-left: 20px; margin-bottom: 16px; }
        .detailed-html li { margin-bottom: 8px; }
    
        
        /* Product Card */
        .product-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            transition: .3s ease;
        }
        .product-card:hover {
            box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
            transform: translateY(-4px);
            border-color: #cbd5e1;
        }
        .pc-media {
            aspect-ratio: 4/3;
            padding: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            position: relative;
        }
        .pc-media img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        .pc-body {
            padding: 0 24px 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .pc-category {
            font-size: 11px;
            font-weight: 600;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
            display: block;
        }
        .pc-body h3 {
            margin: 0 0 12px;
            font-size: 16px;
            font-weight: 600;
            color: #0f172a;
            line-height: 1.4;
        }
        .pc-supplier {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--blue);
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .pc-supplier svg {
            width: 14px;
            height: 14px;
        }
        .pc-body p {
            margin: 0 0 16px;
            font-size: 13px;
            line-height: 1.5;
            color: #64748b;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .pc-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        .pc-tag {
            background: #f1f5f9;
            color: #126cff;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
        }
        .pc-footer {
            margin-top: auto;
            border-top: 1px solid #f1f5f9;
            padding-top: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .pc-add-cart {
            background: var(--blue);
            color: #fff;
            border: none;
            height: 36px;
            padding: 0 20px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: .2s;
            display: flex;
            align-items: center;
        }
        .pc-add-cart:hover {
            background: #0f59d6;
        }
        .pc-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--blue);
            font-size: 13px;
            font-weight: 600;
        }
        .pc-link svg {
            width: 14px;
            height: 14px;
            stroke-width: 2.5;
        }


.product-show-h2-1 { font-size: 16px; color: #64748b; margin-top: 8px; font-weight: 500; }
.product-show-div-2 { display:none; }
.product-show-a-3 { text-decoration:none; }
.product-show-span-4 { color:#126cff; }
.product-show-div-5 { color:#126cff; margin-left:auto; }
.product-show-svg-6 { width:20px;height:20px; }
.product-show-div-7 { display:none; }
