.mg-product-page {
    background: #f6f7f9;
    color: #111827;
    padding: 28px 0 56px;
}

.mg-product-page,
.mg-product-page * {
    box-sizing: border-box;
}

.mg-product-container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 24px;
}

.mg-product-breadcrumbs {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 650;
}

.mg-product-breadcrumbs a {
    color: #6b7280;
    text-decoration: none;
}

.mg-product-breadcrumbs a:hover {
    color: #820100;
}

.mg-product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
    gap: 22px;
    align-items: start;
}

.mg-p-btn {
    height: 42px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #111827;
    border-radius: 13px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 750;
    cursor: pointer;
    white-space: nowrap;
    transition: .16s ease;
    text-decoration: none;
}

.mg-p-btn:hover {
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.mg-p-btn--primary {
    background: #820100;
    border-color: #820100;
    color: #fff;
    box-shadow: 0 10px 22px rgba(130, 1, 0, .14);
}

.mg-p-btn--primary:hover {
    background: #6f0100;
    border-color: #6f0100;
}

.mg-p-btn--soft {
    background: #f8eeee;
    border-color: rgba(130, 1, 0, .14);
    color: #820100;
}

.mg-p-icon-btn {
    width: 42px;
    height: 42px;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 13px;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: #374151;
    transition: .15s ease;
}

.mg-p-icon-btn:hover {
    border-color: rgba(130, 1, 0, .28);
    background: #f8eeee;
    color: #820100;
}

.mg-p-badge {
    height: 24px;
    border: 1px solid #e5e7eb;
    background: #f3f4f6;
    color: #374151;
    border-radius: 999px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.mg-p-badge--success {
    background: #ecfdf3;
    border-color: #bbf7d0;
    color: #15803d;
}

.mg-p-badge--warn {
    background: #fffbeb;
    border-color: #fed7aa;
    color: #b45309;
}

.mg-p-badge--red {
    background: #f8eeee;
    border-color: rgba(130, 1, 0, .18);
    color: #820100;
}

.mg-p-badge--blue {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #2563eb;
}

.mg-p-badge--default {
    background: #fff;
}

.mg-p-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.mg-p-device {
    position: relative;
    width: 58%;
    height: 120px;
    border-radius: 999px;
    background: linear-gradient(145deg, #fff, #dfe3ea);
    box-shadow: inset 0 0 0 1px #e5e7eb;
}

.mg-p-device::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 42px;
    height: 42px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, #0f172a 0 26%, #475569 27% 46%, #111827 47%);
}