.product-page {
    background:
        radial-gradient(circle at 10% 15%, rgba(14, 165, 233, 0.14), transparent 30%),
        radial-gradient(circle at 90% 5%, rgba(250, 204, 21, 0.16), transparent 25%),
        linear-gradient(180deg, #f7fbff 0%, #edf4ff 45%, #f5f9ff 100%);
}

.services-hero {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(130deg, #0ea5e9 0%, #2563eb 45%, #7c3aed 100%);
    color: #fff;
    padding: 34px 20px;
    box-shadow: 0 20px 44px rgba(37, 99, 235, 0.28);
}

.services-hero::before,
.services-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
}

.services-hero::before {
    width: 200px;
    height: 200px;
    top: -80px;
    right: -70px;
}

.services-hero::after {
    width: 130px;
    height: 130px;
    left: -35px;
    bottom: -55px;
}

.services-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.services-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
    border: 1px solid #dfe9f8;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.2);
    border-color: #cfe0ff;
}

.product-img img {
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.product-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0) 50%, rgba(2, 6, 23, 0.36) 100%);
}

.service-chip {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.3px;
    z-index: 1;
}

.product-content h6 {
    color: #0f172a;
    line-height: 1.3;
}

.view-btn {
    border-radius: 999px;
    border: 0;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    text-decoration: none;
}

.view-btn:hover {
    color: #fff;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #dfe9f8;
    overflow: hidden;
}

.service-card-header {
    margin: -1.5rem -1.5rem 1rem;
    padding: 0.9rem 1rem;
    color: #fff;
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.service-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #f0f2f5;
}

.service-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(16, 24, 40, 0.12);
}

.service-meta {
    min-width: 0;
}

.service-meta h6 {
    font-size: 14px;
    margin-bottom: 4px;
    color: #111827;
    line-height: 1.3;
}

.service-meta p {
    font-size: 12px;
    color: #667085;
    margin-bottom: 4px;
    line-height: 1.45;
}

.service-meta a {
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    color: #1d4ed8;
}

.service-meta a span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 9px;
    border-radius: 999px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
}

.service-meta a:hover {
    color: #1e40af;
}

@media (max-width: 991px) {
    .services-hero {
        border-radius: 16px;
        padding: 24px 16px;
    }

    .services-hero h1 {
        font-size: 1.7rem;
    }
}
