/* ============================================================
   PDP-NEW.CSS  –  Novazone Product Detail Page
   Scope: .pdp-new-wrap
   ============================================================ */

.pdp-new-wrap *, .pdp-new-wrap *::before, .pdp-new-wrap *::after {
    box-sizing: border-box;
}

/* ── Container ── */
.pdp-new-wrap {
    background: #f4f6fb;
    padding: 0 0 24px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    color: #222;
    line-height: 1.5;
}
.pdp-new-wrap .container-2019 {
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 16px;
    padding-right: 16px;
}

/* ── Breadcrumb ── */
.pdp-bc {
    padding: 10px 0 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #64748b;
    flex-wrap: wrap;
}
.pdp-bc a { color: #64748b; text-decoration: none; }
.pdp-bc a:hover { color: #2563eb; }
.pdp-bc .sep { color: #cbd5e1; font-size: 10px; }
.pdp-bc .cur { color: #dc2626; }

/* ── Page layout: 2 cột ── */
.pdp-page {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 10px;
}
.pdp-col-left {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pdp-col-right {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 70px;
}

/* ── Product top card (gallery + info ngang nhau) ── */
.pdp-product-card {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
/* Media tabs: full width, bên dưới gallery+info */
.pdp-product-card .pdp-media-tabs {
    width: 100%;
    flex-basis: 100%;
    order: 3;
}

/* ── Gallery ── */
.pdp-gallery-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 340px;
    flex-shrink: 0;
}
.pdp-gallery {
    display: flex;
    gap: 8px;
}
.pdp-thumbs-col {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.pdp-thumb {
    width: 56px;
    height: 56px;
    border: 1.5px solid #e2e8f0;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pdp-thumb.active { border-color: #2563eb; }
.pdp-thumb:hover { border-color: #2563eb; }
.pdp-thumb-more {
    width: 56px;
    height: 56px;
    border: 1.5px solid #e2e8f0;
    border-radius: 5px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
}
.pdp-main-img {
    flex: 1;
    position: relative;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.pdp-main-img img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    transition: transform 0.4s ease;
    display: block;
}
.pdp-main-img:hover img { transform: scale(1.06); }

/* Shimmer sweep khi hover */
.pdp-main-img::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.45),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.65s ease;
    pointer-events: none;
    z-index: 2;
}
.pdp-main-img:hover::after { left: 130%; }
.pdp-main-img video {
    width: 100%;
    height: 260px;
    object-fit: contain;
}
.pdp-badge-disc {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
}
.pdp-arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,.9);
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #475569;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,.1);
    z-index: 2;
}
.pdp-arr.l { left: 7px; }
.pdp-arr.r { right: 7px; }
.pdp-vid-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,.5);
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    z-index: 2;
    border: none;
}

/* Media tabs */
.pdp-media-tabs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
}
.pdp-media-tabs::-webkit-scrollbar { display: none; }
.pdp-mtab {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 5px 11px;
    cursor: pointer;
    background: #fff;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
}
.pdp-mtab:hover { border-color: #2563eb; color: #2563eb; }
.pdp-mtab i { font-size: 14px; flex-shrink: 0; }

/* ── Product Info (cột phải của product-card) ── */
.pdp-pinfo {
    flex: 1;
    min-width: 0;
}
.pdp-brand-pill {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 4px;
    border: 1px solid #bfdbfe;
    margin-bottom: 7px;
    text-decoration: none;
}
.pdp-brand-pill:hover { background: #dbeafe; color: #1d4ed8; }
.pdp-ptitle {
    font-size: 19px;
    font-weight:normal;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 10px;
}
.pdp-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.pdp-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }
.pdp-rnum  { font-weight: 700; color: #f59e0b; font-size: 13px; }
.pdp-rcnt  { font-size: 12.5px; color: #64748b; }
.pdp-sold  { font-size: 12.5px; color: #64748b; border-left: 1px solid #e2e8f0; padding-left: 10px; }
.pdp-meta-row {
    display: flex;
    gap: 20px;
    font-size: 12.5px;
    color: #64748b;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.pdp-meta-row b { color: #0f172a; font-weight: normal; }

/* Spec highlight boxes */
.pdp-spec-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}
.pdp-spec-box {
    border: 1px solid #e2e8f0;
    border-radius: 7px;
    padding: 8px 6px;
    text-align: center;
    background: #fff;
}
.pdp-spec-box i { font-size: 17px; color: #2563eb; margin-bottom: 3px; display: block; }
.pdp-spec-box .sv { font-size: 11px; /*font-weight: 600;*/ color: #0f172a; line-height: 1.3; }
.pdp-spec-box .sk { font-size: 10px; color: #94a3b8; line-height: 1.3; }

/* Variation / Color */
.pdp-sec-lbl { font-size: 13px; font-weight: 600; color: #334155; margin-bottom: 7px; display: block; }
.pdp-variation-wrap { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.pdp-vopt {
    border: 2px solid #e2e8f0;
    border-radius: 7px;
    padding: 5px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: border-color .2s;
}
.pdp-vopt.active, .pdp-vopt:hover { border-color: #2563eb; }
.pdp-vopt img { width: 38px; height: 38px; object-fit: contain; }
.pdp-vopt span { font-size: 12px; color: #334155; }

/* Classification grid (existing JS) */
.pdp-new-wrap .product-classification {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
}
.pdp-new-wrap .classification-title {
    font-size: 13px;
    font-weight: normal !important;
    color: #334155;
    margin-bottom: 8px;
}
.pdp-new-wrap .classification-item {
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 7px !important;
    transition: border-color .2s, box-shadow .2s !important;
}
.pdp-new-wrap .classification-item:hover,
.pdp-new-wrap .classification-item.active {
    border-color: #2563eb !important;
    box-shadow: 0 0 0 2px rgba(37,99,235,.12) !important;
    background: #eff6ff !important;
    transform: none !important;
}
.pdp-new-wrap .quantity-section {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0 !important;
    border-top: 1px solid #e5e5e5;
    margin-top: 8px;
}
.pdp-new-wrap .quantity-controls {
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 7px !important;
    overflow: hidden !important;
}
.pdp-new-wrap .quantity-btn {
    width: 34px !important;
    height: 34px !important;
    background: #f1f5f9 !important;
    border: none !important;
    font-size: 17px !important;
    color: #475569 !important;
    cursor: pointer !important;
}
.pdp-new-wrap .quantity-btn:hover { background: #e2e8f0 !important; }
.pdp-new-wrap .quantity-input {
    border-left: 1.5px solid #e2e8f0 !important;
    border-right: 1.5px solid #e2e8f0 !important;
    width: 44px !important;
    height: 34px !important;
    border-top: none !important;
    border-bottom: none !important;
}
/* Ẩn nút mua trong classification trên desktop (đã có ở sidebar) */
@media (min-width: 992px) {
    .pdp-new-wrap .high-button-section { display: none !important; }
}

/* ── DETAIL TABS ── */
.pdp-detail-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}
.pdp-dtabs {
    display: flex;
    border-bottom: 2px solid #e2e8f0;
    overflow-x: auto;
}
.pdp-dtabs::-webkit-scrollbar { display: none; }
.pdp-dtab {
    padding: 12px 18px;
    font-size: 17px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    flex-shrink: 0;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: inherit;
}
.pdp-dtab.active { color: #2563eb; border-bottom-color: #2563eb; }
.pdp-dtab:hover  { color: #2563eb; }
.pdp-dtab-body { padding: 18px 20px; }
.pdp-dtab-section { margin-bottom: 20px; }
.pdp-dtab-section h3 { font-size: 14.5px; font-weight: 700; color: #0f172a; margin-bottom: 9px; }
.pdp-dtab-section p { font-size: 13px; color: #475569; line-height: 1.7; margin-bottom: 6px; }
.pdp-feat-list { list-style: none; display: flex; flex-direction: column; gap: 5px; padding: 0; }
.pdp-feat-list li { display: flex; align-items: flex-start; gap: 7px; font-size: 13px; color: #475569; }
.pdp-feat-list li i { color: #22c55e; font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.pdp-show-more {
    color: #2563eb;
    font-size: 12.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
}

/* Specs 2-column table */
.pdp-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.pdp-specs-tbl { width: 100%; border-collapse: collapse; }
.pdp-specs-tbl tr:nth-child(odd) td { background: #f8fafc; }
.pdp-specs-tbl td { padding: 9px 12px; font-size: 12.5px; border: none; vertical-align: top; }
.pdp-specs-tbl td:first-child { color: #64748b; width: 130px; }
.pdp-specs-tbl td:last-child { font-weight: 500; color: #0f172a; }

/* ── SIMILAR PRODUCTS ── */
.pdp-similar-card {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
}
.pdp-sim-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.pdp-sim-hdr h2 { font-size: 17px; font-weight: normal !important; color: #0f172a; margin: 0; }
.pdp-sim-hdr a  { color: #2563eb; font-size: 12.5px; text-decoration: none; }
.pdp-sim-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.pdp-prd-card {
    border: 1px solid #e8eaf0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    transition: box-shadow .2s, border-color .2s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.pdp-prd-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.1); border-color: #93c5fd; color: inherit; }
.pdp-prd-img {
    position: relative;
    background: #f8fafc;
    padding: 10px;
    text-align: center;
}
.pdp-prd-img img { width: 100%; height: 110px; object-fit: contain; }
.pdp-prd-disc {
    position: absolute;
    top: 7px; left: 7px;
    background: #ef4444; color: #fff;
    font-size: 10px; font-weight: 700;
    padding: 2px 6px; border-radius: 3px;
}
.pdp-prd-body { padding: 9px 10px; }
.pdp-prd-name {
    font-size: 12px; font-weight: 500; color: #0f172a; line-height: 1.4;
    margin-bottom: 2px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    min-height: 33px;
}
.pdp-prd-sub  { font-size: 10.5px; color: #94a3b8; margin-bottom: 5px; }
.pdp-prd-price-new { font-size: 13px; font-weight: 700; color: #ef4444; }
.pdp-prd-price-old { font-size: 10.5px; color: #94a3b8; text-decoration: line-through; margin-left: 3px; }
.pdp-prd-stars { color: #f59e0b; font-size: 10px; }
.pdp-prd-cnt  { font-size: 11px; color: #94a3b8; }
.pdp-prd-stock { font-size: 10.5px; margin-top: 3px; }

/* ── SIDEBAR ── */
.pdp-side-card {
    background: #fff;
    border-radius: 8px;
    padding: 14px 16px;
}

/* Flash bar — đã bỏ */

/* Price */
.pdp-price-row  { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.pdp-price-now  { font-size: 24px; /*font-weight: 800;*/ color: #ef4444; line-height: 1; white-space: nowrap; }
.pdp-price-cur  { font-size: 13px; }
.pdp-price-old  { font-size: 12px; color: #94a3b8; text-decoration: line-through; white-space: nowrap; }
.pdp-price-pct  { background: #ef4444; color: #fff; font-size: 11px; font-weight: 700; padding: 2px 5px; border-radius: 4px; white-space: nowrap; align-self: center; }

/* Voucher */
.pdp-voucher {
    background: #eff6ff;
    border: 1.5px dashed #93c5fd;
    border-radius: 7px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.pdp-voucher i { color: #2563eb; font-size: 18px; flex-shrink: 0; }
.pdp-v-txt { flex: 1; }
.pdp-v-txt .vt { font-size: 12px; font-weight: 600; color: #1d4ed8; }
.pdp-v-txt .vd { font-size: 11px; color: #64748b; }
.pdp-copy-btn {
    font-size: 11px; font-weight: 600; color: #2563eb;
    border: 1px solid #93c5fd; border-radius: 4px;
    padding: 3px 9px; background: #fff; white-space: nowrap; cursor: pointer;
}
.pdp-copy-btn:hover { background: #dbeafe; }

/* Qty */
.pdp-qty-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 13px;
}
.pdp-qty-top {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pdp-qty-lbl  { font-size: 13px; /*font-weight: 600;*/ color: #334155; white-space: nowrap; }
.pdp-qty-ctrl { display: flex; align-items: center; border: 1.5px solid #e2e8f0; border-radius: 7px; overflow: hidden; }
.pdp-qty-btn  { width: 26px; height: 26px; background: #f1f5f9; border: none; font-size: 14px; color: #475569; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.pdp-qty-btn:hover { background: #e2e8f0; }
.pdp-qty-val  { width: 100% !important; height: 26px !important; border: none; border-left: 1.5px solid #e2e8f0; border-right: 1.5px solid #e2e8f0; text-align: center; font-size: 13px; /*font-weight: 600;*/ outline: none; }
.pdp-qty-stk  { font-size: 11.5px; color: #64748b; }

/* CTA */
.pdp-cta-row { display: flex; gap: 8px; margin-bottom: 13px; }
.pdp-btn-cart {
    flex: 1; background: #fff; color: #2563eb;
    border: 2px solid #2563eb; height: 44px; border-radius: 7px;
    font-size: 12px; /*font-weight: 700;*/
    display: flex; align-items: center; justify-content: center; gap: 5px;
    cursor: pointer; font-family: inherit;
    white-space: nowrap; padding: 0 6px; min-width: 0;
}
.pdp-btn-cart:hover { background: #eff6ff; }
.pdp-btn-buy {
    flex: 1; background: #2563eb; color: #fff;
    border: none; height: 44px; border-radius: 7px;
    font-size: 12px; /*font-weight: 700;*/
    display: flex; align-items: center; justify-content: center; gap: 5px;
    cursor: pointer; font-family: inherit;
    white-space: nowrap; padding: 0 6px; min-width: 0;
}
.pdp-btn-buy:hover { background: #1d4ed8; }
.pdp-btn-order {
    flex: 1; background: #f97316; color: #fff;
    border: none; height: 44px; border-radius: 7px;
    font-size: 12px; /*font-weight: 700;*/
    display: flex; align-items: center; justify-content: center; gap: 5px;
    cursor: pointer; font-family: inherit;
    white-space: nowrap; padding: 0 6px; min-width: 0;
}
.pdp-btn-order:hover { background: #ea6c08; }

/* Policies */
.pdp-policies { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; padding-top: 11px; border-top: 1px solid #f1f5f9; }
.pdp-pol { display: flex; flex-direction: column; align-items: center; gap: 3px; text-align: center; font-size: 10.5px; color: #64748b; }
.pdp-pol i { font-size: 18px; color: #22c55e; }
.pdp-pol b { color: #0f172a; font-size: 11px; }

/* Seller card */
.pdp-seller-hdr { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.pdp-seller-logo {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, #f97316, #2563eb);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; color: #fff; font-size: 15px; flex-shrink: 0;
    overflow: hidden;
}
.pdp-seller-logo img { width: 100%; height: 100%; object-fit: contain; }
.pdp-seller-nm { font-size: 13.5px; font-weight: 700; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.pdp-mall-tag { background: #fee2e2; color: #dc2626; font-size: 9.5px; font-weight: 700; padding: 2px 6px; border-radius: 3px; border: 1px solid #fca5a5; }
.pdp-seller-meta { font-size: 11.5px; color: #64748b; margin-top: 2px; }
.pdp-seller-meta span { margin-right: 10px; }
.pdp-seller-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-bottom: 10px; }
.pdp-sstat { font-size: 11px; color: #64748b; display: flex; align-items: center; gap: 4px; }
.pdp-sstat i { color: #2563eb; width: 14px; }
.pdp-seller-btns { display: flex; gap: 7px; }
.pdp-btn-shop {
    flex: 1; background: #f1f5f9; border: none; height: 36px; border-radius: 7px;
    font-size: 12px; /*font-weight: 600;*/ color: #334155;
    display: flex; align-items: center; justify-content: center; gap: 5px;
    cursor: pointer; text-decoration: none; font-family: inherit;
}
.pdp-btn-shop:hover { background: #e2e8f0; color: #334155; }
.pdp-btn-chat {
    flex: 1; background: #2563eb; border: none; height: 36px; border-radius: 7px;
    font-size: 12px;/* font-weight: 600;*/ color: #fff;
    display: flex; align-items: center; justify-content: center; gap: 5px;
    cursor: pointer; text-decoration: none; font-family: inherit;
}
.pdp-btn-chat:hover { background: #1d4ed8; color: #fff; }

/* Other sellers */
.pdp-os-hdr { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 9px; }
.pdp-os-hdr span { font-size: 12px; font-weight: 700; color: #0f172a; line-height: 1.4; }
.pdp-os-hdr a { font-size: 12px; color: #2563eb; text-decoration: none; white-space: nowrap; flex-shrink: 0; }
.pdp-os-item { display: flex; align-items: center; gap: 9px; padding: 8px 0; border-bottom: 1px solid #f1f5f9; }
.pdp-os-item:last-child { border-bottom: none; padding-bottom: 0; }
.pdp-os-logo { width: 34px; height: 34px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: #f1f5f9; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; }
.pdp-os-info { flex: 1; min-width: 0; }
.pdp-os-name { font-size: 12px; font-weight: 600; color: #0f172a; }
.pdp-os-stars { font-size: 11px; color: #f59e0b; display: flex; align-items: center; gap: 3px; }
.pdp-os-ship { font-size: 10.5px; color: #22c55e; display: flex; align-items: center; gap: 3px; margin-top: 2px; }
.pdp-os-price { font-size: 13px; font-weight: 700; color: #ef4444; white-space: nowrap; }
.pdp-os-price.orange { color: #f97316; }
.pdp-os-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.pdp-btn-chon { background: #fff; border: 1px solid #e2e8f0; color: #334155; font-size: 11.5px; padding: 4px 12px; border-radius: 5px; cursor: pointer; }
.pdp-btn-chon:hover { border-color: #2563eb; color: #2563eb; }

/* ── Shop section full-width ── */
.pdp-shop-section {
    background: #fff;
    border-radius: 8px;
    padding: 16px 20px;
}
.pdp-section-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}
.pdp-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 48px; height: 2px;
    background: #2563eb;
    border-radius: 2px;
}
.pdp-shop-inner { display: flex; gap: 20px; align-items: flex-start; flex-wrap: wrap; }
.pdp-shop-logo-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 120px; }
.pdp-shop-logo { width: 80px; height: 80px; border-radius: 12px; border: 1px solid #e2e8f0; overflow: hidden; background: #f8fafc; }
.pdp-shop-logo img { width: 100%; height: 100%; object-fit: contain; }
.pdp-shop-name { font-size: 15px; font-weight: 700; color: #0f172a; }
.pdp-shop-status { font-size: 12px; color: #64748b; }
.pdp-shop-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.pdp-shop-btn-chat {
    background: #2563eb; color: #fff; border: none;
    height: 36px; border-radius: 7px; font-size: 12.5px; font-weight: 600; padding: 0 16px;
    cursor: pointer; display: flex; align-items: center; gap: 5px; text-decoration: none;
}
.pdp-shop-btn-chat:hover { background: #1d4ed8; color: #fff; }
.pdp-shop-btn-view {
    background: #f1f5f9; color: #334155; border: 1px solid #e2e8f0;
    height: 36px; border-radius: 7px; font-size: 12.5px; font-weight: 600; padding: 0 16px;
    cursor: pointer; display: flex; align-items: center; gap: 5px; text-decoration: none;
}
.pdp-shop-btn-view:hover { background: #e2e8f0; color: #334155; }
.pdp-shop-stats { display: flex; gap: 24px; flex-wrap: wrap; align-items: flex-start; flex: 1; }
.pdp-shop-stat { display: flex; flex-direction: column; gap: 2px; }
.pdp-shop-stat .sl { font-size: 11px; color: #94a3b8; }
.pdp-shop-stat .sv { font-size: 14px; font-weight: 700; color: #0f172a; }

/* ── Responsive ── */
@media (max-width: 1100px) {
    .pdp-col-right { width: 280px; }
    .pdp-gallery-wrap { width: 280px; }
    .pdp-spec-row { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
    .pdp-page { flex-direction: column; }
    .pdp-col-right { width: 100%; position: static; }
    .pdp-product-card { flex-direction: column; }
    .pdp-gallery-wrap { width: 100%; }
    .pdp-sim-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 576px) {
    .pdp-sim-grid { grid-template-columns: repeat(2,1fr); }
    .pdp-spec-row { grid-template-columns: repeat(2,1fr); }
    .pdp-policies { grid-template-columns: 1fr; gap: 8px; }
    .pdp-price-now { font-size: 24px; }
}
