/* ===== SERVICE PAGE ===== */
.page-service { background: var(--bg); }

.service-page { padding: 20px 0 48px; }

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.breadcrumbs a { color: var(--text-secondary); transition: var(--transition); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs i { font-size: 0.55rem; opacity: 0.5; }
.breadcrumbs span { color: var(--text-muted); }

/* Layout */
.service-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 80px;
    align-self: start;
}

.service-sidebar .order-card {
    margin-bottom: 0;
    flex-shrink: 0;
}

.service-main {
    min-width: 0;
}

/* Sidebar seller card */
.sidebar-seller-card,
.sidebar-share-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    flex-shrink: 0;
}

.sidebar-seller-card {
    padding: 18px 18px 18px;
}

.sidebar-seller-head {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.sidebar-seller-avatar-link {
    flex-shrink: 0;
}

.sidebar-seller-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.sidebar-seller-intro {
    min-width: 0;
}

.sidebar-seller-username {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.sidebar-seller-username:hover {
    color: var(--primary);
}

.sidebar-seller-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 4px;
}

.sidebar-seller-badge {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.sidebar-seller-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--green);
    font-weight: 500;
}

.sidebar-seller-online.offline {
    color: var(--text-muted);
    font-weight: 400;
}

.sidebar-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

.sidebar-seller-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 14px;
    padding: 11px 16px;
    border: 1.5px solid var(--primary);
    border-radius: 10px;
    background: white;
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-seller-contact:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.sidebar-seller-stats {
    margin: 0;
    padding: 0;
}

.sidebar-seller-stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 0;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
}

.sidebar-seller-stat-row:last-child {
    padding-bottom: 2px;
}

.sidebar-seller-stat-row dt {
    margin: 0;
    color: var(--text-secondary);
    font-weight: 400;
    flex: 1;
    min-width: 0;
    line-height: 1.35;
}

.sidebar-seller-stat-row dd {
    margin: 0;
    color: var(--text);
    font-weight: 600;
    text-align: right;
    flex-shrink: 0;
}

.sidebar-seller-stat-row dd i.fa-star {
    color: var(--orange);
    font-size: 0.75rem;
    margin-right: 2px;
}

.sidebar-review-split {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    font-weight: 600;
}

.review-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 4px;
}

.review-dot-pos { background: var(--green); }
.review-dot-neg { background: #e53935; }

.review-pos { color: var(--text); }
.review-neg { color: var(--text); }

.sidebar-pay-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.sidebar-pay-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.72rem;
}

/* Sidebar share card */
.sidebar-share-card {
    padding: 16px 18px 20px;
}

.sidebar-share-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.35;
}

.sidebar-share-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.sidebar-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-share-btn:hover {
    filter: brightness(1.05);
    color: white;
}

.sidebar-share-vk { background: #4a76a8; }
.sidebar-share-ok { background: #ee8208; }
.sidebar-share-tg { background: #229ed9; }

.sidebar-share-link-wrap {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg);
}

.sidebar-share-input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    padding: 10px 12px;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.sidebar-share-copy {
    flex-shrink: 0;
    width: 42px;
    border: none;
    border-left: 1px solid var(--border);
    background: white;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-share-copy:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.sidebar-share-copy.copied {
    color: var(--green);
}

/* Top bar */
.service-top-bar {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 8px;
}
.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
}
.btn-icon:hover { border-color: var(--primary); color: var(--primary); }
.service-top-bar .service-fav-btn:hover { color: var(--red); border-color: var(--red); }
.fav-btn.active,
.service-top-bar .service-fav-btn.is-active,
.service-top-bar .service-fav-btn.active {
    color: var(--red);
    border-color: var(--red);
}
.fav-btn.active i,
.service-top-bar .service-fav-btn.is-active i,
.service-top-bar .service-fav-btn.active i {
    font-weight: 900;
}
.service-top-bar .service-fav-btn.is-loading {
    opacity: 0.65;
    pointer-events: none;
}

/* Title */
.service-page-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--text);
    margin-bottom: 20px;
}

/* Seller card */
.seller-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 24px;
}
.seller-avatar-link { position: relative; flex-shrink: 0; }
.seller-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}
.seller-online {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: var(--green);
    border: 2px solid white;
    border-radius: 50%;
}
.seller-info { flex: 1; min-width: 0; }
.seller-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
    flex-wrap: wrap;
}
.seller-presence {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.seller-presence:empty { display: none; }
.seller-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}
.seller-name:hover { color: var(--primary); }
.seller-level {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--orange);
    background: #FFF3E0;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.seller-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.78rem;
    color: var(--text-secondary);
}
.seller-rating { font-weight: 600; color: var(--text); }
.seller-rating i { color: var(--orange); font-size: 0.72rem; }
.seller-rating small { color: var(--text-muted); font-weight: 400; }
.seller-stat i { color: var(--text-muted); margin-right: 3px; font-size: 0.72rem; }
.seller-contact { flex-shrink: 0; padding: 8px 16px; font-size: 0.82rem; }

/* Gallery */
.service-gallery { margin-bottom: 28px; }
.gallery-main {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
    margin-bottom: 10px;
}
.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.gallery-nav:hover { background: white; color: var(--primary); }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    transition: var(--transition);
    background: none;
}
.gallery-thumb.active { border-color: var(--primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Order card / packages (service.html style) */
.order-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 24px;
}

.package-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
}
.package-tab {
    flex: 1;
    padding: 12px 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}
.package-tab:hover { color: var(--primary); background: var(--primary-light); }
.package-tab.active {
    color: var(--primary);
    background: white;
    border-bottom-color: var(--primary);
    font-weight: 700;
}
.package-content {
    padding: 20px 20px 22px;
}
.package-price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 10px;
}
.package-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
}
.package-delivery {
    font-size: 0.78rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}
.package-delivery i { color: var(--text-muted); }
.package-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.package-features {
    list-style: none;
    margin-bottom: 16px;
}
.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding: 5px 0;
    line-height: 1.4;
    word-break: break-word;
}
.package-features li i {
    color: var(--green);
    font-size: 0.75rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.package-extras {
    margin-bottom: 20px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.package-extras-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}
.package-extras-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.package-extra-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    cursor: pointer;
    font-size: 0.82rem;
    line-height: 1.4;
}
.package-extra-row:hover {
    opacity: 0.92;
}
.package-extra-row:has(.service-extra-check:checked) .package-extra-name {
    color: var(--text);
    font-weight: 600;
}
.package-extra-row .service-extra-check {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}
.package-extra-name {
    flex: 1;
    min-width: 0;
    color: var(--text-secondary);
    word-break: break-word;
    overflow-wrap: anywhere;
}
.package-extra-price {
    flex-shrink: 0;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

.btn-order { margin-bottom: 10px; padding: 13px; font-size: 0.92rem; }
.btn-contact { padding: 11px; font-size: 0.85rem; }

.safe-deal {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px 18px;
    background: var(--primary-light);
    border-top: 1px solid var(--border);
}
.safe-deal i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 2px;
}
.safe-deal strong { display: block; font-size: 0.82rem; margin-bottom: 2px; }
.safe-deal p { font-size: 0.75rem; color: var(--text-secondary); margin: 0; }

/* About block (Kwork-style main content) */
.kwork-about-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px 24px 24px;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-secondary);
}
.kwork-about-text {
    margin-bottom: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.kwork-about-block {
    margin-top: 18px;
}
.kwork-about-label {
    font-weight: 700;
    color: var(--text);
    margin: 0 0 6px;
}
.kwork-about-value {
    margin: 0;
    color: var(--text-secondary);
}
.kwork-about-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 8px;
}

.kwork-about-actions .btn {
    min-width: 120px;
}

/* Content sections */
.service-content-section {
    margin-bottom: 32px;
}

.service-content-section:last-child {
    margin-bottom: 0;
}

.service-main > .reviews-section:last-child {
    margin-bottom: 0;
}

.service-main > .seller-services:last-child {
    margin-bottom: 0;
}
.service-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--text);
}

.service-extras-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-extra-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.service-extra-item:hover {
    border-color: rgba(1, 119, 255, 0.35);
    background: rgba(1, 119, 255, 0.03);
}

.service-extra-item:has(.service-extra-check:checked) {
    border-color: var(--primary);
    background: rgba(1, 119, 255, 0.06);
}

.service-extra-check {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.service-extra-body {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
}

.service-extra-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.service-extra-price {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

/* Legacy tabs (unused) */
.content-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 24px;
    overflow-x: auto;
}
.content-tabs::-webkit-scrollbar { display: none; }
.content-tab {
    padding: 12px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}
.content-tab:hover { color: var(--primary); }
.content-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}
.tab-panel { display: none; margin-bottom: 36px; }
.tab-panel.active { display: block; }

/* Description */
.service-description {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 28px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
}
.service-description h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 20px 0 10px;
}
.service-description h3:first-child { margin-top: 0; }
.service-description p { margin-bottom: 12px; }
.service-description ul,
.service-description ol {
    padding-left: 20px;
    margin-bottom: 12px;
}
.service-description li { margin-bottom: 6px; }
.service-description strong { color: var(--text); }

/* Included table */
.included-table {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow-x: auto;
    overflow-y: visible;
}
.included-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(var(--pkg-cols, 3), minmax(88px, 1fr));
    gap: 8px;
    padding: 12px 20px;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--border);
    align-items: center;
    min-width: min(100%, calc(var(--pkg-cols, 3) * 100px + 180px));
}
.included-row:last-child { border-bottom: none; }
.included-header {
    background: var(--bg);
    font-weight: 700;
    color: var(--text);
    font-size: 0.78rem;
}
.included-row span:first-child { color: var(--text-secondary); }
.included-row span {
    word-break: break-word;
    overflow-wrap: anywhere;
}
.included-header span { color: var(--text); text-align: center; }
.included-header span.included-col-active {
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 6px;
    font-weight: 800;
}
.included-row span.included-col-active:not(:first-child) {
    color: var(--primary);
    font-weight: 600;
}
.included-header span:first-child { text-align: left; }
.included-row span:not(:first-child) { text-align: center; color: var(--text); }
.inc-yes { color: var(--green); }
.inc-no { color: var(--text-muted); opacity: 0.4; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}
.faq-question i {
    color: var(--text-muted);
    font-size: 0.75rem;
    transition: transform 0.25s;
    flex-shrink: 0;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active .faq-question { color: var(--primary); }
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
    min-height: 0;
}

.faq-answer p {
    padding: 0 20px 18px;
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Reviews */
.reviews-section { margin-bottom: 36px; }
.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}
.reviews-header h2 {
    font-size: 1.15rem;
    font-weight: 700;
}
.reviews-count {
    color: var(--text-muted);
    font-weight: 500;
}
.reviews-summary {
    display: flex;
    align-items: center;
    gap: 8px;
}
.reviews-score {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
}
.reviews-stars { color: var(--orange); font-size: 0.9rem; }
.reviews-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.review-filter {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    background: white;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}
.review-filter.active,
.review-filter:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.reviews-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.review-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 20px;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.review-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.review-header strong { font-size: 0.88rem; display: block; }
.review-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.review-stars { color: var(--orange); }
.review-stars i { font-size: 0.65rem; }
.review-card > p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
}
.review-package {
    font-size: 0.72rem;
    color: var(--text-muted);
    background: var(--bg);
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-block;
}
.reviews-more { padding: 12px; }

/* Seller other services */
.seller-services {
    margin-bottom: 24px;
}
.seller-services h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 16px;
}
.seller-services .carousel-controls {
    position: absolute;
    top: -52px;
    right: 0;
    display: flex;
    gap: 8px;
}
.seller-services .carousel {
    position: relative;
}
.seller-services .carousel-track .service-card-wrap {
    min-width: 240px;
    flex: 0 0 240px;
}

/* Mobile order bar */
.mobile-order-bar {
    position: fixed;
    bottom: var(--bottom-nav-h);
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border);
    padding: 10px 16px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 150;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
}
.mobile-order-from {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: block;
}
.mobile-order-price strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
}
.btn-order-sticky {
    padding: 12px 28px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.page-service .service-bottom-nav { bottom: 0; }
.page-service .mobile-order-bar { bottom: var(--bottom-nav-h); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .service-layout {
        grid-template-columns: 1fr;
    }
    .service-sidebar { display: none; }
}

@media (max-width: 768px) {
    .service-page {
        padding: 12px 0 calc(var(--bottom-nav-h) + 80px);
    }

    .service-page-title { font-size: 1.15rem; }

    .seller-card { padding: 14px 16px; }
    .seller-avatar { width: 48px; height: 48px; }

    .gallery-nav { width: 34px; height: 34px; font-size: 0.8rem; }

    .included-row {
        grid-template-columns: 1.2fr repeat(var(--pkg-cols, 3), minmax(72px, 1fr));
        padding: 10px 12px;
        font-size: 0.75rem;
    }

    .service-description { padding: 18px 16px; }
    .kwork-about-card { padding: 18px 16px 20px; }

    .mobile-order-bar { display: flex; }

    .page-service .footer {
        margin-bottom: calc(var(--bottom-nav-h) + 56px);
    }

    .order-card.mobile-only { display: block; }
}

@media (min-width: 769px) {
    .order-card.mobile-only { display: none; }
    .mobile-order-bar { display: none !important; }
}
