.product-shell {
    position: relative;
}

.product-stage {
    position: relative;
    border-top: 1px solid rgb(46,46,46,.1);
    border-bottom: 1px solid rgb(46,46,46,.1);
}

.product-hero {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 2rem;
    align-items: stretch;
    padding: 0 0 2rem 0;
    border-bottom: 1px solid rgb(46,46,46,.08);
}

.product-hero-copy {
    padding: 0 0 0 1.25rem;
}

.product-hero-media {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-left: 1px solid rgb(46,46,46,.08);
}

.product-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.product-hero-glow {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(59,130,246,.20), rgba(59,130,246,0) 45%),
        linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.45));
    pointer-events: none;
}

.product-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.product-metrics div {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.product-metrics strong {
    font-size: .8rem;
    text-transform: uppercase;
    color: rgb(59 130 246);
    font-weight: 600;
}

.product-metrics span {
    font-size: .78rem;
    color: #525252;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.product-list {
    display: flex;
    flex-direction: column;
}

.product-item {
    display: grid;
    grid-template-columns: 1.1fr 2fr .95fr;
    gap: 2rem;
    padding: 1.35rem 1.25rem;
    border-bottom: 1px solid rgb(46,46,46,.08);
    transition: .3s ease;
}

.product-item:last-child {
    border-bottom: none;
}

.product-item:hover {
    background: linear-gradient(to right, rgba(59,130,246,.035), rgba(59,130,246,0));
}

.product-item-label,
.product-item-body,
.product-item-fit {
    min-width: 0;
}

.product-footer-note {
    padding: 1.25rem;
    background: linear-gradient(to right, rgba(59,130,246,.04), rgba(59,130,246,0));
}

.product-inline-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-inline-points > div {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: .75rem;
    align-items: start;
}

.product-inline-points span {
    width: 8px;
    height: 8px;
    background: rgb(59 130 246);
    border-radius: 999px;
    margin-top: .35rem;
    box-shadow: 0 0 0 6px rgba(59,130,246,.10);
}

.product-btn-primary,
.product-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.85rem 1.25rem;
    font-size: 0.76rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-decoration: none;
    transition: .25s ease;
}

.product-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 12px 30px rgba(59,130,246,.22);
}

.product-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(59,130,246,.30);
}

.product-btn-secondary {
    border: 1px solid rgb(46,46,46,.12);
    color: #111;
    background: rgba(255,255,255,.58);
    backdrop-filter: blur(10px);
}

.product-btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(59,130,246,.35);
    background: rgba(59,130,246,.04);
}

.product-link-inline {
    display: inline-flex;
    align-items: center;
    font-size: .82rem;
    color: rgb(59 130 246);
    text-decoration: none;
    transition: .25s ease;
}

.product-link-inline:hover {
    transform: translateX(2px);
}

@media (prefers-color-scheme: dark) {
    .product-stage {
        border-top: 1px solid #2e2e2e;
        border-bottom: 1px solid #2e2e2e;
    }

    .product-hero {
        border-bottom: 1px solid #2e2e2e;
    }

    .product-hero-media {
        border-left: 1px solid #2e2e2e;
    }

    .product-item {
        border-bottom: 1px solid #2e2e2e;
    }

    .product-item:hover {
        background: linear-gradient(to right, rgba(59,130,246,.08), rgba(59,130,246,0));
    }

    .product-footer-note {
        background: linear-gradient(to right, rgba(59,130,246,.08), rgba(59,130,246,0));
    }

    .product-metrics span {
        color: rgba(150,150,150,1);
    }

    .product-btn-secondary {
        border: 1px solid #2e2e2e;
        color: #fff;
        background: rgba(255,255,255,.02);
    }

    .product-btn-secondary:hover {
        border-color: rgba(59,130,246,.45);
        background: rgba(59,130,246,.08);
    }
}

@media (max-width: 1024px) {
    .product-hero {
        grid-template-columns: 1fr;
    }

    .product-hero-copy {
        padding-left: 0;
    }

    .product-hero-media {
        min-height: 280px;
        border-left: none;
        border-top: 1px solid rgb(46,46,46,.08);
    }

    .product-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
/* Search section */
.service-search-box {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.service-search-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 0.04em;
}

/* Input */
.service-search-input {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

.dark .service-search-input {
    background: #000000;
    color: #ffffff;
    border-color: #2a2a2a;
}

.service-search-input::placeholder {
    color: #6b7280;
}

.dark .service-search-input::placeholder {
    color: #9ca3af;
}

.service-search-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* Dropdown */
.service-search-results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 999;
    max-height: 320px;
    overflow-y: auto;
}

.service-search-results.hidden {
    display: none;
}

/* Result item */
.service-search-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 14px;
    border: 0;
    text-align: left;
    cursor: pointer;
    transition: background 0.18s ease;
}
.dark .service-search-item {
    background: #111111;
}

.dark .service-search-item {
    border-bottom-color: #1f2937;
}





/* Keywords / subtitle */
.service-search-item-meta {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

.dark .service-search-item-meta {
    color: #9ca3af;
}

/* Empty result */
.service-search-empty {
    padding: 12px 14px;
    font-size: 13px;
    color: #6b7280;
}

.dark .service-search-empty {
    color: #9ca3af;
}

/* Scrollbar */
.service-search-results::-webkit-scrollbar {
    width: 8px;
}

.service-search-results::-webkit-scrollbar-thumb {
    background: #d1d5db;
}

.dark .service-search-results::-webkit-scrollbar-thumb {
    background: #374151;
}

/* Mobile */
@media (max-width: 768px) {
    .service-search-input {
        height: 48px;
        font-size: 13px;
    }

    .service-search-item {
        padding: 11px 12px;
    }

    .service-search-item-title {
        font-size: 13px;
    }

    .service-search-item-meta {
        font-size: 11px;
    }
}