/* محصولات کالایی — پنل کاربر، ادمین و فرانت عمومی */
.physical-products-page {
    --pp-primary: #0d6efd;
    --pp-primary-dark: #0a58ca;
    --pp-accent: #198754;
    --pp-warn: #fd7e14;
    --pp-bg: #f4f7fb;
    --pp-card: #ffffff;
    --pp-border: #e2e8f0;
    --pp-text: #1e293b;
    --pp-muted: #64748b;
    --pp-radius: 14px;
    --pp-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
    --pp-font: Tahoma, Arial, Helvetica, sans-serif;
    --pp-font-heading: "b yekan", Tahoma, Arial, sans-serif;
    color: var(--pp-text);
    font-family: var(--pp-font);
    font-size: 12px;
    direction: rtl;
    text-align: right;
}

.physical-products-page .pp-hero {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 55%, #d63384 100%);
    border-radius: var(--pp-radius);
    padding: 22px 24px;
    margin-bottom: 20px;
    color: #fff;
    box-shadow: var(--pp-shadow);
}

.physical-products-page .pp-hero h3,
.physical-products-page .pp-hero h1 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: normal;
    font-family: var(--pp-font-heading);
    color: #fff;
    line-height: 1.5;
}

.physical-products-page .pp-hero p {
    margin: 0;
    opacity: 0.92;
    font-size: 12px;
    font-family: var(--pp-font);
}

.physical-products-page .pp-card {
    background: var(--pp-card);
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius);
    box-shadow: var(--pp-shadow);
    padding: 20px;
    margin-bottom: 18px;
}

.physical-products-page .pp-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}

.physical-products-page .pp-toolbar .pp-search {
    flex: 1 1 200px;
    display: flex;
    gap: 8px;
}

.physical-products-page .pp-toolbar input[type="text"],
.physical-products-page .pp-toolbar select,
.physical-products-page .pp-field input,
.physical-products-page .pp-field select,
.physical-products-page .pp-field textarea,
.physical-products-page .pp-form-grid input,
.physical-products-page .pp-form-grid select,
.physical-products-page .pp-form-grid textarea {
    width: 100%;
    max-width: 100%;
    border: 1px solid var(--pp-border);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 12px;
    font-family: var(--pp-font);
    font-weight: normal;
    background: #fff;
    box-sizing: border-box;
    direction: rtl;
    text-align: right;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.physical-products-page .pp-field input[type="file"] {
    padding: 6px 3px;
    font-size: 12px;
    font-family: var(--pp-font);
    background: #fafafa;
}

.physical-products-page .pp-toolbar input:focus,
.physical-products-page .pp-field input:focus,
.physical-products-page .pp-field select:focus,
.physical-products-page .pp-field textarea:focus,
.physical-products-page .pp-form-grid input:focus,
.physical-products-page .pp-form-grid textarea:focus,
.physical-products-page .pp-form-grid select:focus {
    outline: none;
    border-color: var(--pp-primary);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.physical-products-page .pp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    border: none;
    font-size: 13px;
    font-family: var(--pp-font-heading);
    font-weight: normal;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}

.physical-products-page .pp-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.physical-products-page .pp-btn-primary {
    background: var(--pp-primary);
    color: #fff !important;
}

.physical-products-page .pp-btn-primary:hover {
    background: var(--pp-primary-dark);
}

.physical-products-page .pp-btn-success {
    background: var(--pp-accent);
    color: #fff !important;
}

.physical-products-page .pp-btn-outline {
    background: #fff;
    color: var(--pp-primary) !important;
    border: 1px solid var(--pp-primary);
}

.physical-products-page .pp-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.physical-products-page .pp-field label {
    display: block;
    font-weight: normal;
    margin-bottom: 4px;
    font-size: 12px;
    font-family: var(--pp-font);
    color: #333;
}

.physical-products-page .pp-field .pp-hint {
    font-size: 12px;
    color: var(--pp-muted);
    margin-top: 4px;
}

.physical-products-page .pp-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid var(--pp-border);
}

.physical-products-page table.table {
    margin: 0;
    min-width: 560px;
}

.physical-products-page table.table th {
    background: #f8fafc;
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
}

.physical-products-page table.table td {
    vertical-align: middle;
    font-size: 13px;
}

.physical-products-page .pp-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.physical-products-page .pp-badge-digital {
    background: #dbeafe;
    color: #1d4ed8;
}

.physical-products-page .pp-badge-physical {
    background: #ffedd5;
    color: #c2410c;
}

.physical-products-page .pp-badge-pending {
    background: #fef3c7;
    color: #b45309;
}

.physical-products-page .pp-badge-ok {
    background: #dcfce7;
    color: #15803d;
}

.physical-products-page .pp-badge-stop {
    background: #fee2e2;
    color: #b91c1c;
}

.physical-products-page .pp-empty {
    text-align: center;
    padding: 36px 16px;
    color: var(--pp-muted);
}

/* فرانت عمومی — صفحه محصول کالایی */
.physical-store-page .pp-product-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 24px;
    background: #fff;
    border-radius: var(--pp-radius);
    border: 1px solid var(--pp-border);
    box-shadow: var(--pp-shadow);
    padding: 24px;
}

.physical-store-page .pp-product-image {
    text-align: center;
}

.physical-store-page .pp-product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--pp-border);
}

.physical-store-page .pp-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

.physical-store-page .pp-price-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    padding: 14px;
    background: #f8fafc;
    border-radius: 12px;
}

.physical-store-page .pp-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--pp-accent);
}

.physical-store-page .pp-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #198754, #20c997);
    color: #fff !important;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(25, 135, 84, 0.35);
}

.physical-store-page .pp-buy-btn:hover {
    filter: brightness(1.05);
}

.physical-store-page .pp-checkout-summary {
    background: #f8fafc;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid var(--pp-border);
}

.physical-store-page .pp-checkout-summary p {
    margin: 6px 0;
}

/* انتخاب محصولات فروشگاه */
.pp-shop-select-grid {
    display: grid;
    gap: 10px;
}

.pp-shop-select-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid var(--pp-border);
    border-radius: 12px;
    background: #fff;
    transition: border-color 0.2s, background 0.2s;
}

.pp-shop-select-item.is-selected {
    border-color: var(--pp-primary);
    background: #f0f7ff;
}

.pp-shop-select-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

@media (min-width: 768px) {
    .physical-products-page .pp-form-grid--2 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .physical-store-page .pp-product-layout {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .physical-products-page .pp-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .physical-products-page .pp-btn {
        width: 100%;
    }

    .pp-shop-select-item {
        grid-template-columns: auto 1fr;
    }
}

/* ادمین */
.panel-admin .physical-products-page .pp-hero {
    margin-top: 0;
}

.panel-admin .physical-products-page .pp-card {
    background: #fff;
}

/* پنل member — یکدست با addfile و بقیه فرم‌ها */
.panel-member .physical-products-page .pp-field select {
    font-family: var(--pp-font-heading);
}

.panel-member .physical-products-page .warning,
.panel-member .physical-products-page .pp-empty {
    font-family: var(--pp-font);
    font-size: 12px;
}

/* ═══ فرم حرفه‌ای افزودن محصول (ادمین + member) ═══ */
.pp-form-pro {
    max-width: 920px;
    margin: 0 auto 24px;
}

.pp-form-pro .pp-hero--admin {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 45%, #0ea5e9 100%);
    padding: 26px 28px;
}

.pp-form-pro .pp-hero--admin h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
}

.pp-form-pro .pp-hero--admin p {
    font-size: 13px;
    line-height: 1.7;
}

.pp-form-pro .pp-help-box {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #6ee7b7;
    border-right: 4px solid #10b981;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    color: #065f46;
    font-size: 13px;
    line-height: 1.75;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.08);
}

.pp-form-pro .pp-help-box strong {
    display: block;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #047857;
    font-family: var(--pp-font-heading);
}

.pp-form-pro .pp-help-box ul {
    margin: 0;
    padding-right: 20px;
}

.pp-form-pro .pp-help-box li {
    margin-bottom: 4px;
}

.pp-form-pro .pp-help-box--intro {
    margin-top: 0;
}

.pp-form-pro .pp-section {
    background: #fff;
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius);
    box-shadow: var(--pp-shadow);
    padding: 22px 24px 26px;
    margin-bottom: 20px;
}

.pp-form-pro .pp-section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}

.pp-form-pro .pp-section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.pp-form-pro .pp-section-head h4 {
    margin: 0;
    font-size: 17px;
    font-weight: bold;
    font-family: var(--pp-font-heading);
    color: #1e293b;
}

.pp-form-pro .pp-label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #334155;
    margin-bottom: 8px;
    font-family: var(--pp-font-heading);
}

.pp-form-pro .pp-req {
    color: #ef4444;
    font-weight: bold;
}

.pp-form-pro .pp-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--pp-muted);
    font-weight: normal;
}

.pp-form-pro .pp-form-grid {
    gap: 20px;
}

.pp-form-pro .pp-input,
.pp-form-pro .pp-textarea,
.pp-form-pro .pp-file {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 46px;
    padding: 12px 16px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 10px !important;
    background: #fff !important;
    box-sizing: border-box !important;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04) !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pp-form-pro .pp-textarea,
.pp-form-pro textarea.pp-input {
    min-height: 140px;
    resize: vertical;
}

.pp-form-pro .pp-input:focus,
.pp-form-pro .pp-textarea:focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12) !important;
    outline: none;
}

.pp-form-pro .pp-file {
    min-height: auto;
    padding: 14px 16px !important;
    background: #f8fafc !important;
    cursor: pointer;
}

.pp-form-pro .pp-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius);
    box-shadow: var(--pp-shadow);
}

.pp-form-pro .pp-btn-save {
    background: linear-gradient(135deg, #059669, #10b981) !important;
    color: #fff !important;
    padding: 14px 28px !important;
    font-size: 15px !important;
    font-weight: bold !important;
    border-radius: 10px !important;
    min-width: 180px;
    border: none !important;
}

.pp-form-pro .pp-btn-save:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.pp-form-pro .pp-form-actions .pp-btn-outline {
    padding: 12px 20px !important;
    font-size: 14px !important;
}

/* ادمین — اولویت بالاتر از style.css قدیمی */
.panel-admin .pp-form-pro select.pp-input,
.panel-admin .pp-form-pro input.pp-input,
.panel-admin .pp-form-pro textarea.pp-input {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    line-height: 1.5 !important;
}

.panel-admin .pp-form-pro .pp-section .pp-help-box {
    margin-bottom: 18px;
}

@media (max-width: 767px) {
    .pp-form-pro .pp-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pp-form-pro .pp-btn-save,
    .pp-form-pro .pp-form-actions .pp-btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* ═══ آپلود تصویر — کارت، پیش‌نمایش، نوار پیشرفت ═══ */
.pp-upload-limits {
    font-size: 12px;
    color: #047857;
    background: #ecfdf5;
    border: 1px dashed #6ee7b7;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 16px;
}

.pp-upload-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .pp-upload-grid--gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .pp-upload-grid--gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pp-upload-card {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 14px;
    background: #f8fafc;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.pp-upload-card--main {
    border-color: #93c5fd;
    background: #f0f9ff;
}

.pp-upload-card--done {
    border-color: #34d399;
    background: #ecfdf5;
    border-style: solid;
}

.pp-upload-card--error {
    border-color: #f87171;
    background: #fef2f2;
}

.pp-upload-card--drag {
    border-color: #3b82f6 !important;
    background: #eff6ff !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}

.pp-upload-hint--sub {
    font-size: 11px;
    opacity: 0.85;
}

.pp-field--full {
    grid-column: 1 / -1;
}

.pp-upload-dropzone {
    position: relative;
    text-align: center;
    padding: 16px 12px;
    cursor: pointer;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pp-upload-dropzone .pp-upload-input {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    min-height: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.pp-upload-icon {
    font-size: 28px;
    line-height: 1;
    opacity: 0.85;
}

.pp-upload-hint {
    font-size: 12px;
    color: #64748b;
}

.pp-upload-filename {
    font-size: 11px;
    color: #475569;
    margin-top: 6px;
    word-break: break-all;
    position: relative;
    z-index: 3;
}

.pp-upload-preview {
    margin-top: 10px;
    position: relative;
    z-index: 3;
}

.pp-upload-preview img {
    max-width: 100%;
    max-height: 160px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pp-upload-progress {
    height: 6px;
    background: #e2e8f0;
    border-radius: 99px;
    margin-top: 10px;
    overflow: hidden;
    display: none;
    position: relative;
    z-index: 3;
    width: 100%;
}

.pp-upload-card--done .pp-upload-progress,
.pp-upload-card.pp-upload-card--loading .pp-upload-progress {
    display: block;
}

.pp-upload-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 99px;
    transition: width 0.3s ease;
}

.pp-existing-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.pp-existing-gallery-item {
    width: 100px;
    text-align: center;
}

.pp-existing-gallery-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

/* فرانت — گالری و زوم ساده */
.pp-product-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.pp-product-gallery-thumb {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    background: none;
}

.pp-product-gallery-thumb.is-active,
.pp-product-gallery-thumb:hover {
    border-color: #3b82f6;
}

.pp-product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pp-product-main-zoom {
    cursor: zoom-in;
    transition: transform 0.25s ease;
}

.pp-product-main-zoom:hover {
    transform: scale(1.02);
}

.pp-spec-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
    font-size: 14px;
    line-height: 1.8;
}

.pp-sr-section {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 20px 0 8px;
    font-family: var(--pp-font-heading);
    color: #334155;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 6px;
}

.pp-product-text img {
    max-width: 100%;
    height: auto;
}

/* دسته‌بندی سه‌سطحی — انتخابگر آبشاری */
.cat-picker {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
}

.cat-picker select {
    width: 100%;
    min-height: 46px;
}

.cat-picker select:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    background: #f8fafc !important;
}

@media (max-width: 720px) {
    .cat-picker {
        grid-template-columns: 1fr;
    }
}

.pp-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}
.pp-related-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    border: 1px solid var(--pp-border, #e2e8f0);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
}
.pp-related-item img {
    border-radius: 8px;
    object-fit: cover;
}
.pp-related-item span {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.5;
}

.pp-tag-list, .pp-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 14px;
}
.pp-tag, a.pp-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-size: 12px;
    text-decoration: none;
}
a.pp-tag:hover { background: #e2e8f0; }
.pp-brand-link { color: inherit; text-decoration: underline; }
.pp-spec-list--attrs { margin-top: 8px; }
.pp-brand-filter label { margin-left: 8px; font-size: 13px; }
.pp-brand-intro { margin: 8px 0 12px; color: #475569; line-height: 1.8; }

.pp-check-label { display: block; margin: 10px 0; font-size: 14px; }
.pp-variant-table-wrap { overflow-x: auto; margin-top: 12px; }
.pp-variant-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.pp-variant-table th, .pp-variant-table td { border: 1px solid #e2e8f0; padding: 8px; vertical-align: middle; }
.pp-variant-table th { background: #f8fafc; text-align: right; }
.pp-variant-option { margin: 12px 0; }
.pp-variant-option-name { font-weight: 600; margin-bottom: 8px; font-size: 13px; }
.pp-variant-values { display: flex; flex-wrap: wrap; gap: 8px; }
.pp-variant-value {
    border: 1px solid #cbd5e1; background: #fff; border-radius: 8px;
    padding: 6px 14px; cursor: pointer; font-size: 13px;
}
.pp-variant-value.is-selected { border-color: #2563eb; background: #eff6ff; color: #1d4ed8; }

.physical-modern-page { margin-top: 12px; }

body.site-physical-product {
    background: #f3f5f9;
    font-family: 'Vazirmatn', Tahoma, sans-serif;
}

body.site-physical-product #container {
    max-width: 1440px;
    min-width: 0;
    width: calc(100% - 32px);
    margin: 0 auto 24px;
    padding: 20px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
}

body.site-physical-product .breadcrumb.rounded {
    max-width: 1440px;
    margin: 12px auto;
    padding: 0 20px;
    background: transparent;
    border: none;
}

body.site-physical-product .physical-modern-page,
body.site-physical-product .shop-product-page {
    max-width: 100%;
    font-family: 'Vazirmatn', Tahoma, sans-serif;
}

body.site-physical-product .shop-product-tabs,
body.site-physical-product .shop-product-hero,
body.site-physical-product .shop-product-section {
    font-family: 'Vazirmatn', Tahoma, sans-serif;
}

.shop-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Vazirmatn', Tahoma, sans-serif;
    font-size: 14px;
}

.shop-specs-table th,
.shop-specs-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #eef2f6;
    text-align: right;
    vertical-align: top;
}

.shop-specs-table th {
    width: 34%;
    color: #64748b;
    font-weight: 600;
    background: #fafbfc;
}

.shop-specs-table td {
    color: #0f172a;
    font-weight: 500;
}

.shop-product-specs-panel .shop-specs-table tr:last-child th,
.shop-product-specs-panel .shop-specs-table tr:last-child td {
    border-bottom: none;
}

.physical-modern-page .shop-product-buybox__btn.is-disabled {
    opacity: .55;
    pointer-events: none;
    cursor: not-allowed;
}
.shop-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 14px;
    font-size: 13px;
}
.shop-product-meta__brand { color: #475569; }
.shop-product-attrs {
    margin: 0 0 16px;
    padding: 12px 14px;
    background: #fafbfc;
    border: 1px solid #eef2f6;
    border-radius: 12px;
}
.shop-product-attrs__title {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}
.shop-grid--related {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}
.shop-card--compact {
    display: block;
    padding: 10px;
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
}
.shop-card--compact .shop-card__img img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}
.shop-card--compact .shop-card__title {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.5;
    color: #334155;
}
.shop-variant-picker { margin-bottom: 12px; }
.pp-btn.is-disabled, a.is-disabled { opacity: 0.5; pointer-events: none; }
.pp-price-old { text-decoration: line-through; color: #94a3b8; margin-right: 10px; font-size: 14px; }
