.product-page {
    padding: 0 0 52px;
    font-family: 'Roboto', sans-serif;
}

.product-page .container {
    max-width: 1440px;
}

.product-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    padding: 16px 0 28px;
}

.gallery {
    position: sticky;
    top: 90px;
}

.gallery-main {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    background: #f8f9fb;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: zoom-in;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform .3s;
}

.gallery-main:hover img {
    transform: scale(1.04);
}

.gallery-main-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #f4f6f9, #eaecf0);
}

.gallery-main-ph svg,
.g-thumb-ph svg,
.rv-img-ph svg {
    opacity: .2;
    color: #8899aa;
}

.gallery-zoom {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .92);
    border-radius: 8px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    cursor: pointer;
    transition: color .2s;
    z-index: 3;
}

.gallery-zoom:hover {
    color: var(--blue);
}

.gallery-badge-wrap {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.g-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    background: #f8f9fb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color .2s;
}

.g-thumb.active,
.g-thumb:hover {
    border-color: var(--blue);
}

.g-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.g-thumb-ph,
.rv-img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #f4f6f9, #eaecf0);
}

.product-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.product-sku {
    font-size: 14px;
    color: var(--text-light);
}

.product-sku b {
    color: var(--text);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stars {
    display: flex;
    gap: 1px;
    color: #f59e0b;
}

.rating-text {
    font-size: 14px;
    color: var(--text-light);
}

.product-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.prod-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.pb-green {
    background: #e8f5e9;
    color: #2e7d32;
}

.pb-blue {
    background: #e3f0ff;
    color: var(--blue);
}

.pb-orange {
    background: #fff3e0;
    color: #e65100;
}

.pb-red {
    background: #fde8e8;
    color: #c62828;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .01em;
    white-space: nowrap;
}

.b-stock {
    background: linear-gradient(135deg, #ecfdf3, #ddf9e7);
    color: #1f8f4a;
    border: 1px solid #bdeecf;
    box-shadow: 0 4px 12px rgba(47, 191, 91, .2);
}

.b-stock::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #27b357;
    box-shadow: 0 0 0 3px rgba(39, 179, 87, .18);
}

.b-hit,
.b-new {
    background: linear-gradient(135deg, #ffb43b, #f57c00);
    color: #fff;
    border: 1px solid #ef8f13;
    box-shadow: 0 4px 14px rgba(245, 124, 0, .28);
}

.b-hit::before,
.b-new::before {
    content: '★';
    font-size: 12px;
}

.product-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 23px;
    font-weight: 700;
    color: var(--blue-dark);
    line-height: 1.35;
    margin: 0 0 14px;
}

.price-card {
    background: linear-gradient(135deg, #f0f6ff, #e8f0fb);
    border: 1.5px solid #c8daf5;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 14px;
}

.price-main-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 3px;
}

.price-val {
    font-family: 'Exo 2', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--blue-dark);
    line-height: 1;
}

.price-unit {
    font-size: 15px;
    color: var(--text-light);
}

.price-note {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.price-opt-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .7);
    border-radius: 8px;
    border: 1px solid #d0e4f7;
    padding: 8px 10px;
}

.price-opt-row svg {
    color: var(--blue);
    flex-shrink: 0;
}

.price-opt-text {
    font-size: 14px;
    color: var(--text);
    flex: 1;
}

.price-opt-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.price-opt-link:hover {
    text-decoration: underline;
}

.stock-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.stock-dot.in {
    background: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, .18);
}

.stock-dot.low {
    background: #ff9800;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, .18);
}

.stock-label {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stock-qty {
    font-size: 14px;
    color: var(--text-light);
}

.delivery-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-light);
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 3px 9px;
    border-radius: 20px;
}

.buy-block {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 14px;
}

.qty-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-ctrl {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.qty-ctrl button {
    width: 38px;
    height: 46px;
    background: var(--bg);
    border: none;
    font-size: 22px;
    color: var(--text-light);
    cursor: pointer;
    transition: background .15s, color .15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-ctrl button:hover {
    background: var(--blue);
    color: #fff;
}

.qty-ctrl input {
    width: 52px;
    height: 46px;
    border: none;
    border-left: 1.5px solid var(--border);
    border-right: 1.5px solid var(--border);
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    outline: none;
    font-family: 'Exo 2', sans-serif;
}

.qty-ctrl-label {
    font-size: 14px;
    color: var(--text-light);
}

.btn-main {
    height: 50px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Exo 2', sans-serif;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .2s;
    box-shadow: 0 4px 16px rgba(26, 86, 160, .3);
    width: 100%;
}

.btn-main:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(26, 86, 160, .4);
}

.btn-row-2 {
    display: flex;
    gap: 8px;
}

.btn-1click {
    flex: 1;
    height: 42px;
    border: 1.5px solid var(--blue);
    border-radius: 8px;
    color: var(--blue);
    font-size: 15px;
    font-weight: 600;
    background: none;
    cursor: pointer;
    transition: background .15s, color .15s;
}

.btn-1click:hover {
    background: var(--blue);
    color: #fff;
}

.btn-ico {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: border-color .15s, color .15s;
    flex-shrink: 0;
}

.btn-ico:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.btn-ico.fav:hover {
    border-color: #e53;
    color: #e53;
}

.perks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 14px;
}

.perk {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    background: var(--bg);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.perk svg {
    color: var(--blue);
    flex-shrink: 0;
}

.perk b {
    color: var(--text);
}

.btn-question {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 36px;
    padding: 0 14px;
    border: 1.5px dashed var(--border);
    border-radius: 8px;
    background: none;
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
    transition: border-color .15s, color .15s;
    width: 100%;
    margin-bottom: 12px;
}

.btn-question:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.share-row {
    display: flex;
    align-items: center;
    gap: 7px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.share-label {
    font-size: 14px;
    color: var(--text-light);
}

.share-btn {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
    background: none;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}

.share-btn.vk:hover {
    background: #0077ff;
    border-color: #0077ff;
    color: #fff;
}

.share-btn.wa:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.share-btn.tg:hover {
    background: #2aabee;
    border-color: #2aabee;
    color: #fff;
}

.product-tabs {
    margin-bottom: 28px;
}

.tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--border);
    overflow-x: auto;
    overflow-y: hidden;
}

.tab-btn {
    padding: 10px 20px;
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: color .15s, border-color .15s;
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--blue);
}

.tab-btn.active {
    color: var(--blue);
    border-bottom-color: var(--blue);
}

.tab-panel {
    display: none;
    padding: 20px 0 0;
}

.tab-panel.active {
    display: block;
}

.desc-text {
    font-size: 16px;
    color: var(--text);
    line-height: 1.75;
}

.desc-text p {
    margin: 0 0 10px;
}

.desc-text strong {
    color: var(--blue-dark);
}

.specs-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.specs-group-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-dark);
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 0 0 7px;
    border-bottom: 2px solid var(--blue);
    margin-bottom: 9px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr:nth-child(even) td {
    background: #f8f9fb;
}

.specs-table td {
    padding: 8px 12px;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.specs-table td:first-child {
    color: var(--text-light);
    width: 52%;
    font-weight: 500;
}

.specs-table td:last-child {
    color: var(--text);
    font-weight: 600;
}

.dlt-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 4px;
}

.dlt-section-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--blue-dark);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.dlt-section-title svg {
    color: var(--blue);
}

.dlt-cards,
.dlt-pay-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dlt-card,
.dlt-pay-item {
    background: var(--bg);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.dlt-card-icon,
.dlt-pay-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dlt-icon-green {
    background: #e8f5e9;
    color: #2e7d32;
}

.dlt-icon-blue,
.dlt-pay-icon {
    background: #e3f0ff;
    color: var(--blue);
}

.dlt-card-body {
    flex: 1;
}

.dlt-card-title,
.dlt-pay-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 4px;
}

.dlt-card-text,
.dlt-pay-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.dlt-badge {
    align-self: flex-start;
    border-radius: 20px;
    padding: 4px 9px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.dlt-badge-green {
    background: #e8f5e9;
    color: #2e7d32;
}

.dlt-badge-blue {
    background: #e3f0ff;
    color: var(--blue);
}

.delivery-rich-text {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 18px;
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
}

.delivery-rich-text > *:last-child {
    margin-bottom: 0;
}

.delivery-note {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: #795548;
    line-height: 1.6;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.delivery-note svg {
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 1px;
}

.question-card {
    margin-top: 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 18px;
}

.question-card__title {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--blue-dark);
    margin: 0 0 12px;
}

#show-question-form-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 16px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

#show-question-form-btn:hover {
    background: var(--blue-dark);
}

#product-question-form {
    display: none;
    margin-top: 14px;
}

#product-question-form .form-group {
    margin-bottom: 12px;
}

#product-question-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

#product-question-form input[type="tel"],
#product-question-form textarea {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: #fff;
    color: var(--text);
    font-size: 15px;
    padding: 10px 12px;
    outline: none;
}

#product-question-form textarea {
    min-height: 96px;
    resize: vertical;
}

#product-question-form .form-group--policy {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

#product-question-form .form-group--policy input {
    margin-top: 3px;
}

#product-question-form .btn {
    height: 38px;
    padding: 0 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

#product-question-form .btn-primary {
    background: var(--blue);
    color: #fff;
}

#product-question-form .btn-primary:hover {
    background: var(--blue-dark);
}

#product-question-form .btn-secondary {
    background: #eef1f5;
    color: var(--text);
    margin-left: 8px;
}

.reviews-section {
    margin-bottom: 28px;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviews-score {
    text-align: center;
}

.reviews-score-num {
    font-family: 'Exo 2', sans-serif;
    font-size: 50px;
    font-weight: 800;
    color: var(--blue-dark);
    line-height: 1;
}

.reviews-score-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    color: #f59e0b;
    margin: 4px 0;
}

.reviews-score-cnt {
    font-size: 14px;
    color: var(--text-light);
}

.reviews-bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rbar {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.rbar-track {
    width: 120px;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.rbar-fill {
    height: 100%;
    background: #f59e0b;
    border-radius: 3px;
}

.btn-write-review,
.btn-load-reviews {
    height: 38px;
    padding: 0 18px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.btn-write-review {
    background: var(--blue);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-write-review:hover {
    background: var(--blue-dark);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 15px 17px;
}

.review-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 9px;
    gap: 12px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 9px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #2a75c7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.review-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.review-date {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 2px;
}

.review-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
}

.review-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #2e7d32;
    background: #e8f5e9;
    padding: 2px 7px;
    border-radius: 20px;
    margin-top: 3px;
    font-weight: 600;
}

.review-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.65;
}

.review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 9px;
}

.review-pc {
    padding: 8px 11px;
    border-radius: 7px;
    font-size: 14px;
    line-height: 1.5;
}

.review-pc.pros {
    background: #e8f5e9;
    color: #2e7d32;
}

.review-pc.cons {
    background: #fde8e8;
    color: #c62828;
}

.review-pc-label {
    font-weight: 700;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 11px;
    padding-top: 9px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.review-helpful {
    font-size: 14px;
    color: var(--text-light);
}

.btn-helpful {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--text-light);
    background: none;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3px 10px;
    cursor: pointer;
    transition: border-color .2s, color .2s;
}

.btn-helpful:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.reviews-load-more {
    text-align: center;
    padding-top: 18px;
}

.btn-load-reviews {
    background: var(--white);
    border: 1.5px solid var(--blue);
    color: var(--blue);
}

.btn-load-reviews:hover {
    background: #e8f0fb;
}

.rv-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    margin-bottom: 24px;
}

.rv-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.rv-head h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--blue-dark);
}

.rv-clear {
    font-size: 13px;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: pointer;
}

.rv-cards {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.rv-card {
    min-width: 100px;
    max-width: 100px;
    flex-shrink: 0;
}

.rv-card:hover .rv-name {
    color: var(--blue);
}

.rv-img {
    aspect-ratio: 1 / 1;
    background: var(--bg);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rv-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.rv-name {
    font-size: 12px;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 3px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color .15s;
}

.rv-price {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-dark);
}

.similar-section {
    margin-bottom: 28px;
}

.section-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 12px;
}

.section-row h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-dark);
    margin: 0;
}

.section-row a {
    font-size: 15px;
    color: var(--blue);
    text-decoration: none;
}

.section-row a:hover {
    text-decoration: underline;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.mc {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .2s, border-color .2s;
    display: flex;
    flex-direction: column;
}

.mc:hover {
    box-shadow: var(--shadow-hover);
    border-color: #c5d0e0;
}

.mc-img {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f8f9fb;
    overflow: hidden;
}

.mc-img a {
    display: block;
    width: 100%;
    height: 100%;
}

.mc-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    transition: transform .3s;
}

.mc:hover .mc-img img {
    transform: scale(1.06);
}

.mc-badge {
    position: absolute;
    top: 6px;
    left: 6px;
}

.mc-body {
    padding: 9px 10px 5px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mc-name {
    font-size: 13px;
    color: var(--text);
    line-height: 1.4;
    flex: 1;
    text-decoration: none;
}

.mc-name:hover {
    color: var(--blue);
}

.mc-foot {
    padding: 5px 10px 10px;
    margin-top: auto;
}

.mc-price {
    font-family: 'Exo 2', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.mc-price-note {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.mc-opt {
    font-size: 12px;
    color: var(--blue);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: block;
    margin-bottom: 5px;
}

.mc-opt:hover {
    text-decoration: underline;
}

.btn-mc {
    width: 100%;
    height: 30px;
    background: var(--blue);
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background .15s;
}

.btn-mc:hover {
    background: var(--blue-dark);
}

.seo-section {
    padding: 0;
}

.seo-grid {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.seo-grid h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--blue-dark);
    margin: 0 0 6px;
}

.seo-grid p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.seo-grid p + p {
    margin-top: 5px;
}

#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .92);
    align-items: center;
    justify-content: center;
}

#lightbox.open {
    display: flex;
}

.lb-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 94vw;
    max-height: 90vh;
}

#lbImg {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, .7);
    user-select: none;
    display: block;
}

.lb-close,
.lb-arrow {
    position: fixed;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .15);
    border: 1.5px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    z-index: 2;
}

.lb-close {
    top: 16px;
    right: 16px;
    font-size: 26px;
    line-height: 1;
}

.lb-arrow {
    top: 50%;
    transform: translateY(-50%);
}

.lb-prev {
    left: 16px;
}

.lb-next {
    right: 16px;
}

.lb-close:hover,
.lb-arrow:hover {
    background: rgba(255, 255, 255, .28);
}

.lb-counter {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
    z-index: 2;
    background: rgba(0, 0, 0, .4);
    padding: 4px 12px;
    border-radius: 20px;
}

.lb-dots {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.lb-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background .2s, transform .2s;
}

.lb-dot.active {
    background: #fff;
    transform: scale(1.3);
}

@media (max-width: 1100px) {
    .mini-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 960px) {
    .product-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery {
        position: static;
    }

    .dlt-cards,
    .dlt-pay-grid,
    .seo-grid {
        grid-template-columns: 1fr;
    }

    .mini-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    .specs-wrap,
    .review-pros-cons {
        grid-template-columns: 1fr;
    }

    .reviews-summary {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .product-title {
        font-size: 19px;
    }

    .price-val {
        font-size: 30px;
    }

    .perks-grid {
        grid-template-columns: 1fr;
    }

    .mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn-row-2 {
        flex-wrap: wrap;
    }

    .btn-ico {
        width: calc(50% - 4px);
    }
}
