/* ============================================
   Product V2 — Premium Service Marketplace
   Brand colors from st/scss/common/_colors.scss
   Prefix: prd-
   ============================================ */

:root {
    --prd-primary: #FB471F;
    --prd-primary-hover: #E4411C;
    --prd-primary-light: #FFEDE9;
    --prd-secondary: #1A237E;
    --prd-indigo: #3F51B5;
    --prd-indigo-600: #3949AB;
    --prd-ink: #101116;
    --prd-ink-2: #353841;
    --prd-ink-3: #7C8292;
    --prd-border: #E4E6EB;
    --prd-bg: #F3F4F7;
    --prd-white: #ffffff;
    --prd-positive: #4CAF50;
    --prd-card-shadow: 0 2px 12px rgba(17, 19, 24, 0.07);
    --prd-card-shadow-hover: 0 8px 32px rgba(17, 19, 24, 0.13);
    --prd-radius: 14px;
    --prd-radius-sm: 8px;
}

/* ── HERO ── */
.prd-hero {
    background: linear-gradient(135deg, #1A237E 0%, #283593 50%, #353841 100%);
    position: relative;
    overflow: hidden;
    padding: 72px 24px 80px;
}

.prd-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(251, 71, 31, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.prd-hero__grid {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image:
        linear-gradient(var(--prd-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--prd-border) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.prd-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 64px;
}

.prd-hero__text {
    flex: 1;
    animation: prdFadeUp .6s ease both;
}

.prd-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(251, 71, 31, 0.15);
    border: 1px solid rgba(251, 71, 31, 0.3);
    color: #FEC6BA;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.prd-hero__badge::before {
    content: '\25CF';
    font-size: 8px;
}

.prd-hero__title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.prd-hero__title em {
    font-style: normal;
    color: var(--prd-primary);
}

.prd-hero__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 32px;
}

.prd-hero__stats {
    display: flex;
    gap: 32px;
    animation: prdFadeUp .6s .15s ease both;
}

.prd-hero__stat strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}

.prd-hero__stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.prd-hero__breadcrumb {
    margin-bottom: 16px;
    font-size: 13px;
}

.prd-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color .15s;
}

.prd-hero__breadcrumb a:hover {
    color: var(--prd-primary);
}

.prd-hero__breadcrumb .sep {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 6px;
    font-size: 11px;
}

.prd-hero__breadcrumb .current {
    color: #fff;
    font-weight: 500;
}

/* Hero Visual Cards */
.prd-hero__visual {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 320px;
}

.prd-hero__vcard {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.prd-hero__vcard--wide {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.prd-hero__vcard-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(251, 71, 31, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    overflow: hidden;
    color: #fff;
}

.prd-hero__vcard-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prd-hero__vcard-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.prd-hero__vcard-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}

.prd-hero__vcard-tag {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.prd-hero__vcard-big {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    text-align: center;
}

.prd-hero__vcard-sm {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

/* ── SEARCH (inside hero, course-style) ── */
.prd-search-form {
    display: flex;
    align-items: center;
    max-width: 580px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 100px;
    border: 1.5px solid var(--prd-border);
    overflow: hidden;
    margin-bottom: 32px;
    animation: prdFadeUp .5s .2s ease both;
    transition: border-color .2s, box-shadow .2s;
}

.prd-search-form:focus-within {
    border-color: var(--prd-primary);
    box-shadow: 0 0 0 3px rgba(251, 71, 31, 0.3);
}

.prd-search-select {
    flex-shrink: 0;
    border-right: 1.5px solid var(--prd-border);
}

.prd-search-select select {
    height: 52px;
    border: none;
    background: transparent;
    padding: 0 12px 0 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--prd-secondary);
    cursor: pointer;
    outline: none;
    appearance: none;
    min-width: 160px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%231A237E' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 30px;
    transition: background-color .2s;
}

.prd-search-select select:hover {
    background-color: rgba(26, 35, 126, 0.05);
}

.prd-search-input {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.prd-search-input input {
    width: 100%;
    height: 52px;
    border: none;
    padding: 0 54px 0 16px;
    font-size: 15px;
    background: transparent;
    color: var(--prd-secondary);
    outline: none;
}

.prd-search-input input::placeholder {
    color: var(--prd-ink-3);
}

.prd-search-input button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--prd-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
}

.prd-search-input button:hover {
    background: var(--prd-primary-hover);
}

.prd-search-input button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* ── HERO COMPACT (listing/search page) ── */
.prd-hero--compact {
    padding: 48px 24px 52px;
}

.prd-hero--compact .prd-hero__inner {
    gap: 0;
}

/* ── CATEGORY HERO BANNER ── */
.prd-cate-hero {
    background: linear-gradient(135deg, #1A237E 0%, #283593 50%, #FB471F 100%);
    border-radius: 24px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
}

.prd-cate-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.prd-cate-hero::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: 25%;
    width: 340px;
    height: 340px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.prd-cate-hero__breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.prd-cate-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color .2s;
}

.prd-cate-hero__breadcrumb a:hover {
    color: #fff;
}

.prd-cate-hero__breadcrumb span {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.prd-cate-hero__breadcrumb i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
}

.prd-cate-hero__title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 8px;
    position: relative;
    z-index: 2;
}

.prd-cate-hero__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 24px;
    position: relative;
    z-index: 2;
}

.prd-cate-hero__search {
    position: relative;
    max-width: 520px;
    z-index: 2;
}

.prd-cate-hero__search input {
    width: 100%;
    height: 50px;
    border-radius: 100px;
    border: 1.5px solid var(--prd-border);
    padding: 0 54px 0 24px;
    font-size: 15px;
    color: var(--prd-secondary);
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    transition: border-color .2s, box-shadow .2s;
}

.prd-cate-hero__search input::placeholder {
    color: var(--prd-ink-3);
}

.prd-cate-hero__search input:focus {
    border-color: var(--prd-primary);
    box-shadow: 0 0 0 3px rgba(251, 71, 31, 0.3);
}

.prd-cate-hero__search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--prd-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

.prd-cate-hero__search button:hover {
    background: var(--prd-primary-hover);
}

@media (max-width: 991px) {
    .prd-cate-hero {
        padding: 32px 24px;
    }

    .prd-cate-hero__title {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .prd-cate-hero {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .prd-cate-hero__title {
        font-size: 24px;
    }

    .prd-cate-hero__subtitle {
        font-size: 14px;
    }

    .prd-cate-hero__search input {
        height: 46px;
        font-size: 14px;
    }
}

/* ── CATEGORY LISTING SECTION ── */
.prd-cate-listing {
    padding: 16px 0;
}

/* ── LISTING SEARCH BANNER ── */
.prd-listing-search {
    background: linear-gradient(135deg, #1A237E 0%, #283593 50%, #FB471F 100%);
    border-radius: 24px;
    padding: 36px 40px;
    position: relative;
    overflow: hidden;
}

.prd-listing-search::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.prd-listing-search::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 30%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.prd-listing-search .prd-section-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    position: relative;
    z-index: 2;
}

.prd-listing-search .prd-search-form,
.prd-cate-listing .prd-search-form {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    animation: none;
    max-width: 720px;
}

@media (max-width: 575px) {
    .prd-listing-search {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .prd-listing-search .prd-section-title {
        font-size: 22px;
    }
}

/* ── SECTION HEADER ── */
.prd-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.prd-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--prd-secondary);
    margin: 0;
}

.prd-section-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--prd-primary);
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.prd-section-link::after {
    content: '\2192';
}

/* ── CATEGORY PILLS (same style as course) ── */
.prd-categories {
    padding: 16px 0 16px;
}

.prd-categories__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.prd-cate-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 100px;
    background: #fff;
    border: 1.5px solid #E4E6EB;
    color: #353841;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all .25s ease;
    cursor: pointer;
}

.prd-cate-pill:hover {
    border-color: #FB471F;
    color: #FB471F;
    background: #FFEDE9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 71, 31, 0.12);
}

.prd-cate-pill__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #EDEFF9;
    color: #3F51B5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: all .25s ease;
}

.prd-cate-pill:hover .prd-cate-pill__icon {
    background: #FB471F;
    color: #fff;
}

@media (max-width: 575px) {
    .prd-cate-pill {
        padding: 10px 16px;
        font-size: 13px;
    }

    .prd-cate-pill__icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* ── FEATURED CARD ── */
.prd-featured-card {
    background: var(--prd-white);
    border-radius: var(--prd-radius);
    overflow: hidden;
    box-shadow: var(--prd-card-shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 340px;
    transition: box-shadow .2s;
}

.prd-featured-card:hover {
    box-shadow: var(--prd-card-shadow-hover);
}

.prd-featured-card__img-wrap {
    position: relative;
    overflow: hidden;
}

.prd-featured-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.prd-featured-card:hover .prd-featured-card__img-wrap img {
    transform: scale(1.04);
}

.prd-featured-card__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.prd-featured-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--prd-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 2;
}

.prd-featured-card__location {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.prd-featured-card__body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.prd-featured-card__cat {
    font-size: 12px;
    font-weight: 600;
    color: var(--prd-primary);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.prd-featured-card__title {
    font-size: 26px;
    font-weight: 800;
    color: var(--prd-secondary);
    line-height: 1.3;
    margin-bottom: 12px;
}

.prd-featured-card__title a {
    color: inherit;
    text-decoration: none;
}

.prd-featured-card__title a:hover {
    color: var(--prd-primary);
}

.prd-featured-card__desc {
    font-size: 14px;
    color: var(--prd-ink-3);
    line-height: 1.7;
    margin-bottom: 24px;
}

.prd-featured-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.prd-featured-card__meta-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--prd-ink-3);
}

.prd-featured-card__price {
    font-size: 16px;
    font-weight: 700;
    color: var(--prd-primary);
    margin-bottom: 16px;
}

.prd-featured-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--prd-ink-2);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--prd-radius-sm);
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
    transition: background .15s;
    text-decoration: none;
}

.prd-featured-card__cta:hover {
    background: var(--prd-primary);
    color: #fff;
}

.prd-featured-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.prd-featured-card__tag {
    padding: 3px 10px;
    background: var(--prd-bg);
    border-radius: 100px;
    font-size: 12px;
    color: var(--prd-ink-3);
    text-decoration: none;
    transition: all .15s;
}

.prd-featured-card__tag:hover {
    background: var(--prd-primary-light);
    color: var(--prd-primary);
}

/* ── PRODUCT CARD V2 (synced with course-card-v2) ── */
.prd-card-v2 {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--prd-border);
    overflow: hidden;
    transition: all .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.prd-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(26, 35, 126, 0.1);
    border-color: #C5CAE9;
}

.prd-card-v2__thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.prd-card-v2__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.prd-card-v2:hover .prd-card-v2__thumb img {
    transform: scale(1.05);
}

.prd-card-v2__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #1A237E, #3949AB);
    color: #fff;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .3px;
    backdrop-filter: blur(4px);
}

.prd-card-v2__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.prd-card-v2__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--prd-secondary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.prd-card-v2__title a {
    color: inherit;
    text-decoration: none;
}

.prd-card-v2__title a:hover {
    color: var(--prd-primary);
}

.prd-card-v2__creator {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 13px;
}

.prd-card-v2__creator-name {
    font-weight: 600;
    color: var(--prd-positive);
}

.prd-card-v2__creator-verified {
    color: var(--prd-positive);
    font-size: 12px;
}

.prd-card-v2__creator-date {
    margin-left: auto;
    color: var(--prd-ink-3);
    font-size: 12px;
}

.prd-card-v2__price {
    font-size: 20px;
    font-weight: 700;
    color: var(--prd-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.prd-card-v2__desc {
    font-size: 13px;
    color: var(--prd-ink-3);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ── HIGHLIGHT SECTION ── */
.prd-highlight {
    border-radius: var(--prd-radius);
    padding: 40px 24px;
    margin-bottom: 32px;
}

.prd-highlight--odd {
    background: #EDEFF9;
}

.prd-highlight--even {
    background: #FFEDE9;
}

.prd-highlight__image {
    border-radius: var(--prd-radius);
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
    transition: transform .3s ease;
}

.prd-highlight__image:hover {
    transform: scale(1.03);
}

.prd-highlight__title {
    font-size: 26px;
    font-weight: 800;
    color: var(--prd-secondary);
    margin-bottom: 24px;
}

.prd-highlight__children {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.prd-highlight__child {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    transition: padding-left .2s ease;
}

.prd-highlight__child:hover {
    padding-left: 8px;
}

.prd-highlight__child-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.prd-highlight--odd .prd-highlight__child-icon {
    background: #C5CAE9;
    color: var(--prd-secondary);
}

.prd-highlight--even .prd-highlight__child-icon {
    background: #FEC6BA;
    color: var(--prd-primary);
}

.prd-highlight__child a {
    font-size: 15px;
    font-weight: 600;
    color: var(--prd-ink-2);
    text-decoration: none;
    transition: color .15s;
}

.prd-highlight__child a:hover {
    color: var(--prd-primary);
}

.prd-highlight__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--prd-ink-2);
    color: #fff;
    padding: 10px 24px;
    border-radius: var(--prd-radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s;
}

.prd-highlight__cta:hover {
    background: var(--prd-primary);
    color: #fff;
}

/* ── SERVICE CATEGORIES (shared component with cssPrefix=prd) ── */
.prd-section-header__left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.prd-section-header__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3F51B5, #1A237E);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.prd-section-header__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--prd-secondary);
    margin: 0;
}

.prd-service__list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.prd-service__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 12px;
    background: #F3F4F7;
    color: #353841;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all .2s;
    border: 1px solid transparent;
}

.prd-service__item:hover {
    background: #EDEFF9;
    border-color: #3F51B5;
    color: #1A237E;
    transform: translateY(-2px);
}

.prd-service__item:nth-child(3n+1) {
    border-left: 3px solid #FB471F;
}

.prd-service__item:nth-child(3n+2) {
    border-left: 3px solid #3F51B5;
}

.prd-service__item:nth-child(3n) {
    border-left: 3px solid #353841;
}

.prd-service__image img {
    border-radius: 20px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    box-shadow: -16px 0 32px rgba(26, 35, 126, 0.08);
}

/* ── MAIN CONTAINER ── */
.prd-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

/* ── ANIMATIONS ── */
@keyframes prdFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .prd-featured-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .prd-featured-card__img-wrap {
        height: 220px;
    }

    .prd-featured-card__body {
        padding: 24px;
    }
}

@media (max-width: 900px) {
    .prd-hero__visual {
        display: none;
    }
}

@media (max-width: 640px) {
    .prd-hero {
        padding: 48px 16px 60px;
    }

    .prd-hero__title {
        font-size: 28px;
    }

    .prd-hero__stats {
        gap: 20px;
    }

    .prd-search-form {
        flex-direction: column;
        border-radius: 16px;
        overflow: visible;
    }

    .prd-search-select {
        border-right: none;
        border-bottom: 1.5px solid var(--prd-border);
        width: 100%;
    }

    .prd-search-select select {
        width: 100%;
        height: 46px;
        border-radius: 16px 16px 0 0;
        font-size: 13px;
        min-width: unset;
    }

    .prd-search-input {
        width: 100%;
    }

    .prd-search-input input {
        height: 46px;
        font-size: 14px;
        padding-left: 16px;
    }

    .prd-highlight {
        padding: 24px 16px;
    }

    .prd-highlight__title {
        font-size: 22px;
    }

    .prd-featured-card__title {
        font-size: 20px;
    }

    .prd-featured-card__body {
        padding: 20px;
    }
}