        .page-banner {
            position: relative;
            color: #fff;
            min-height: 260px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .page-banner .media,
        .page-banner .media-bg {
            position: absolute;
            inset: 0;
            z-index: -2;
        }

        .page-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: brightness(.4);
        }

        .page-banner.overlay::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(1100px 600px at 16% 12%, rgba(255, 77, 90, .40), transparent 58%), radial-gradient(900px 600px at 78% 22%, rgba(37, 99, 235, .38), transparent 62%), linear-gradient(120deg, var(--grad-start) 10%, var(--grad-mid) 45%, var(--grad-end) 90%);
            mix-blend-mode: screen;
            opacity: .85;
            z-index: -1;
        }

        .page-banner-content {
            position: relative;
            padding-block: clamp(70px, 10vw, 110px);
            text-align: center;
        }

        .heading {
            font-weight: 800;
            letter-spacing: -.03em;
        }

        .text {
            font-weight: 500;
        }

        .text-18 {
            font-size: 1.04rem;
        }

        .text-80 {
            font-size: clamp(32px, 4vw, 46px);
            line-height: 1.1;
        }

        .fw-700 {
            font-weight: 700;
        }

        .breadcrumb {
            margin: 14px 0 0;
            padding: 0;
            list-style: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #e5e9f2;
        }

        .breadcrumb a {
            color: #e5e9f2;
            text-decoration: none;
        }

        .breadcrumb a.active {
            opacity: .9;
            pointer-events: none;
            cursor: default;
        }

        .breadcrumb svg {
            opacity: .8;
        }

        .page-blog {
            padding-block: clamp(40px, 6vw, 72px);
            background: #f9fafb;
        }

        /* Blog tabs */
        .blog-tabs {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin: 0 0 18px;
        }

        .blog-tab {
            border: 1px solid #e5e7eb;
            background: #fff;
            color: #0f172a;
            padding: 10px 14px;
            border-radius: 999px;
            font-weight: 800;
            cursor: pointer;
        }

        .blog-tab:hover {
            border-color: #0f172a
        }

        .blog-tab.is-active {
            background: #0f172a;
            color: #fff;
            border-color: #0f172a;
        }

        /* Search bar */
        .blog-toolbar {
            display: flex;
            gap: 12px;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            margin: 4px 0 18px;
        }

        .search-wrap {
            display: flex;
            gap: 10px;
            align-items: center;
            flex: 1 1 420px;
            max-width: 720px;
        }

        .search-input {
            width: 100%;
            border: 1px solid #e5e7eb;
            background: #fff;
            color: #0f172a;
            padding: 12px 14px;
            border-radius: 999px;
            font-weight: 600;
            outline: none;
        }

        .search-input:focus {
            border-color: #60a5fa;
            box-shadow: 0 0 0 2px rgba(96, 165, 250, .25);
        }

        .search-clear {
            border: 1px solid #e5e7eb;
            background: #fff;
            color: #0f172a;
            padding: 12px 14px;
            border-radius: 999px;
            font-weight: 800;
            cursor: pointer;
            white-space: nowrap;
        }

        .search-clear:hover {
            border-color: #0f172a
        }

        .search-status {
            color: #64748b;
            font-weight: 700;
            font-size: .95rem;
            white-space: nowrap;
        }

        /* Panels */
        .svc-panels {
            padding: 0
        }

        .svc-panel {
            display: none;
            animation: panelIn .45s ease both
        }

        .svc-panel.is-active {
            display: block
        }

        @keyframes panelIn {
            from {
                opacity: 0;
                transform: translateY(8px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        .grid {
            display: grid;
        }

        .grid-cols-12 {
            grid-template-columns: repeat(12, minmax(0, 1fr));
        }

        .product-grid {
            row-gap: clamp(18px, 3vw, 26px);
            column-gap: clamp(18px, 3vw, 26px);
        }

        .col-span-12 {
            grid-column: span 12/span 12;
        }

        .md\:col-span-6 {
            grid-column: span 12/span 12;
        }

        .lg\:col-span-4 {
            grid-column: span 12/span 12;
        }

        .md\:gap-1 {
            gap: clamp(18px, 3vw, 26px);
        }

        @media (min-width:768px) {
            .md\:col-span-6 {
                grid-column: span 6/span 6;
            }
        }

        @media (min-width:1024px) {
            .lg\:col-span-4 {
                grid-column: span 4/span 4;
            }
        }

        .radius18 {
            border-radius: 18px;
        }

        .card-blog {
            background: #fff;
            border-radius: 18px;
            border: 1px solid rgba(2, 6, 23, .12);
            display: flex;
            flex-direction: column;
            height: 100%;
            box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
            overflow: hidden;
            transition: transform .22s cubic-bezier(.2, .7, .2, 1), box-shadow .22s ease, border-color .22s ease;
        }

        .card-blog:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(15, 23, 42, .14);
            border-color: rgba(15, 23, 42, .18);
        }

        .card-blog-top {
            padding: 18px 18px 8px;
        }

        .card-blog-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            align-items: center;
            margin-bottom: 8px;
            color: #6b7280;
            font-size: .9rem;
        }

        .card-blog-meta-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .card-blog-meta-item svg {
            width: 16px;
            height: 16px;
        }

        .card-blog-heading {
            margin: 0 0 7px;
            font-size: 1.2rem;
        }

        .card-blog-heading a {
            color: #0f172a;
            text-decoration: none;
        }

        .card-blog-heading a:hover {
            color: #111827;
            text-decoration: underline;
            text-decoration-thickness: 2px;
            text-underline-offset: 3px;
        }

        .text-22 {
            font-size: 1.2rem;
        }

        .card-blog-bottom {
            margin-top: auto;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
        }

        /* New CSS for Button Handling */

        .card-blog-tags {
            margin: 10px 0;
        }

        .blog-tag {
            align-self: flex-start;
            margin: 0 18px 10px;
        }

        .subheading {
            font-size: .8rem;
            font-weight: 700;
            letter-spacing: .04em;
            text-transform: uppercase;
        }

        .subheading-bg {
            background: #f9fafb;
            color: #0f172a;
            padding: 5px 11px;
            border-radius: 999px;
            border: 1px solid #e5e7eb;
            margin: 5px 0;
        }

        .fw-500 {
            font-weight: 500;
        }

        .card-blog .media {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            margin: 5px 18px 12px;
        }

        .card-blog .media img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform .35s cubic-bezier(.2, .7, .2, 1), filter .35s ease;
        }

        .card-blog:hover .media img {
            transform: scale(1.03);
            filter: brightness(1.03);
        }

        .buttons {
            padding: 0 18px 16px;
        }

        .button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: .9rem;
            font-weight: 700;
            padding: .7rem 1rem;
            border-radius: 999px;
            border: 0;
            cursor: pointer;
            text-decoration: none;
        }

        .button--primary {
            background: var(--brand);
            color: #fff;
            box-shadow: 0 10px 22px rgba(248, 113, 113, .45);
        }

        .button--primary svg {
            width: 14px;
            height: 14px;
        }

        .pagination {
            margin-top: clamp(28px, 4vw, 40px);
            display: flex;
            justify-content: center;
        }

        .pagintaion-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .pagination-link {
            min-width: 34px;
            height: 34px;
            border-radius: 999px;
            border: 1px solid #e5e7eb;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 10px;
            font-size: .9rem;
            font-weight: 600;
            color: #0f172a;
            background: #fff;
            text-decoration: none;
        }

        .pagination-link svg {
            width: 10px;
            height: 10px;
        }

        .pagination-link.active {
            background: #0f172a;
            color: #fff;
            border-color: #0f172a;
        }

        .pagination-link:hover {
            border-color: #0f172a;
        }