:root {
    --teal: #0b9ca3;
    --teal-dark: #04767b;
    --teal-soft: #e7f7f8;
    --ink: #111111;
    --muted: #5f6770;
    --line: #d8e1e4;
    --surface: #ffffff;
    --surface-alt: #f6fbfc;
    --page-bg: #e5e5e5;
    --shadow: 0 18px 48px rgba(5, 69, 78, 0.08);
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --container: 1250px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--page-bg);
}

body {
    margin: 0;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--page-bg);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

.site-shell {
    max-width: 1280px;
    margin: 0 auto;
    background: var(--surface);
    min-height: 100vh;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02);
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.site-header {
    position: relative;
    z-index: 20;
}

.header-top {
    background: var(--teal);
    color: #fff;
}

.header-top-grid {
    display: grid;
    grid-template-columns: 302px minmax(280px, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 110px;
}

.header-brand-link {
    display: inline-flex;
    align-items: center;
    max-width: 302px;
}

.header-logo {
    width: 100%;
    max-height: 109px;
    object-fit: contain;
}

.apec-search-form {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.apec-search-input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 15px 20px;
    outline: none;
}

.apec-search-input::placeholder {
    color: rgba(255, 255, 255, 0.86);
}

.apec-search-button {
    border: 0;
    min-width: 60px;
    padding: 0 16px;
    cursor: pointer;
    color: #fff;
    background: transparent;
    font-size: 1.35rem;
}

.header-utility-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.utility-card {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.utility-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    font-size: 1.3rem;
}

.utility-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    white-space: nowrap;
}

.utility-copy strong,
.utility-copy small {
    display: block;
    font-weight: 800;
}

.utility-copy small {
    font-size: 0.95rem;
}

.header-nav-bar {
    background: #fff;
    border-bottom: 1px solid #edf2f4;
}

.header-nav-row {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
}

.site-nav .menu,
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.site-nav .menu > li {
    position: relative;
}

.site-nav .menu > li > a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 22px;
    font-size: 0.98rem;
    font-weight: 800;
    text-transform: uppercase;
}

.site-nav .menu > li.current-menu-item > a,
.site-nav .menu > li.current-menu-ancestor > a,
.site-nav .menu > li > a:hover {
    color: #fff;
    background: var(--teal);
}

.site-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    padding: 12px 0;
    margin: 0;
    list-style: none;
    background: #fff;
    border: 1px solid #e3ecef;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
    z-index: 30;
}

.site-nav .menu-item-has-children:hover > .sub-menu,
.site-nav .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-nav .sub-menu a {
    display: block;
    padding: 8px 18px;
    font-weight: 700;
}

.site-nav .sub-menu a:hover {
    background: var(--surface-alt);
    color: var(--teal-dark);
}

.site-main {
    min-height: 60vh;
}

.hero-section {
    background: #fff;
}

.hero-panel {
    display: grid;
    grid-template-columns: 0.94fr 1.06fr;
    min-height: 405px;
    background: #f2f7f7;
    overflow: hidden;
}

.hero-copy {
    padding: 30px 18px 28px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(209, 215, 218, 0.24), rgba(255, 255, 255, 0) 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.1));
}

.hero-brand-logo {
    width: 152px;
    margin-bottom: 10px;
}

.hero-copy h1 {
    margin: 0 0 10px;
    color: #55c6d0;
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.05;
    font-weight: 800;
}

.hero-copy p {
    max-width: 560px;
    margin: 0 0 26px;
    color: #233a75;
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    align-items: center;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 195px;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    background: linear-gradient(90deg, #42d3c5 0%, #1f55be 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
}

.hero-visual {
    min-height: 100%;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 78% center;
    transform: scale(1.32);
    transform-origin: right center;
}

.product-section {
    padding: 30px 0 36px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.product-tile,
.shop-card {
    background: #fff;
}

.product-tile a,
.shop-card-link {
    display: block;
}

.product-tile-title,
.shop-card-title {
    display: block;
    padding: 14px 20px;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    background: var(--teal);
    position: relative;
}

.product-tile-title::before,
.product-tile-title::after {
    content: "";
    position: absolute;
    top: 0;
    width: 92px;
    height: 44px;
    background:
        radial-gradient(circle at 0 100%, transparent 29px, #fff 30px);
}

.product-tile-title::before {
    left: 0;
    transform: scaleX(-1);
}

.product-tile-title::after {
    right: 0;
}

.product-tile img,
.shop-card img {
    width: 100%;
    aspect-ratio: 1 / 0.82;
    object-fit: cover;
    background: #f7f7f7;
}

.content-band,
.page-section {
    padding: 42px 0 54px;
}

.content-band-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.content-card,
.blog-card,
.single-post-card,
.entry-card-page,
.content-card-empty {
    padding: 24px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.content-card h2,
.page-hero h1,
.page-hero-shop h1,
.single-post-card h1,
.product-layout-copy h1 {
    margin: 0 0 12px;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.1;
}

.text-link,
.footer-link {
    font-weight: 800;
    color: var(--teal-dark);
}

.page-hero,
.page-hero-shop {
    padding: 34px 0;
    background: linear-gradient(180deg, #f8fcfd, #eff7f8);
    border-bottom: 1px solid var(--line);
}

.page-hero-description {
    max-width: 760px;
    color: var(--muted);
}

.shop-grid,
.blog-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 32px;
    align-items: start;
}

.product-layout-media img,
.single-post-thumb img,
.blog-card-image img {
    width: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.product-layout-copy,
.single-post-card,
.entry-card-page {
    min-width: 0;
}

.eyebrow-text,
.blog-card-meta {
    margin: 0 0 10px;
    color: var(--teal-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    font-size: 0.82rem;
}

.product-summary {
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 1.05rem;
}

.term-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
}

.term-chips span {
    padding: 8px 12px;
    background: var(--teal-soft);
    border-radius: 999px;
    font-weight: 700;
    color: var(--teal-dark);
}

.entry-content,
.entry-content p,
.entry-content li {
    color: #222;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin: 1.4em 0 0.55em;
    line-height: 1.22;
}

.entry-content img {
    margin: 18px auto;
    border-radius: 8px;
}

.entry-content .devvn_baohanh_wrap,
.entry-content .devvn_baohanh_form {
    border-radius: var(--radius-md);
}

.entry-content .devvn_baohanh_form_box,
.entry-content .devvn_baohanh_result {
    margin-top: 14px;
}

.entry-content .form_devvn_baohanh {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.entry-content .form_devvn_baohanh input,
.entry-content .devvn_masp {
    flex: 1;
    min-width: 260px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.entry-content .form_devvn_baohanh button,
.entry-content .devvn_masp_submit {
    border: 0;
    padding: 14px 24px;
    border-radius: 8px;
    background: var(--teal);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.entry-content .devvn_baohanh_loading {
    color: var(--teal-dark);
    font-weight: 700;
}

.entry-content .wp-caption {
    max-width: 100%;
}

.entry-content .wp-caption-text {
    color: var(--muted);
    font-size: 0.92rem;
    text-align: center;
}

.entry-content iframe,
.entry-content table {
    max-width: 100%;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
}

.entry-content th,
.entry-content td {
    padding: 10px 12px;
    border: 1px solid var(--line);
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 30px;
}

.blog-main {
    min-width: 0;
}

.blog-card {
    overflow: hidden;
    padding: 0;
}

.blog-card-body {
    padding: 20px 22px 24px;
}

.blog-card h2 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    line-height: 1.3;
}

.blog-sidebar .widget {
    padding: 22px;
    margin-bottom: 18px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.widget-title {
    margin: 0 0 12px;
    font-size: 1.1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.9fr 1fr;
    gap: 36px;
    padding: 44px 0 36px;
}

.site-footer {
    background: var(--teal);
    color: #fff;
}

.site-footer h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a,
.site-footer a {
    color: #fff;
}

.footer-warranty-form {
    display: flex;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    margin: 14px 0 12px;
}

.footer-warranty-form input {
    flex: 1;
    min-width: 0;
    border: 0;
    padding: 14px 16px;
    color: var(--ink);
}

.footer-warranty-form button {
    border: 0;
    background: #2bb6e1;
    color: #fff;
    padding: 0 22px;
    font-weight: 800;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom-inner {
    min-height: 58px;
    display: flex;
    align-items: center;
}

.floating-hotline {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff302b, #ff5a5a);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 16px 32px rgba(255, 58, 58, 0.28);
}

.floating-hotline-icon {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
}

.pagination-wrap {
    margin-top: 28px;
}

.pagination-wrap .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    margin-right: 8px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
}

.pagination-wrap .current {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}

@media (max-width: 1100px) {
    .header-top-grid {
        grid-template-columns: 260px 1fr;
    }

    .header-utility-group {
        grid-column: 1 / -1;
        justify-content: flex-end;
        padding-bottom: 14px;
    }

    .product-grid,
    .shop-grid,
    .blog-grid,
    .content-band-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid,
    .blog-layout,
    .product-layout,
    .hero-panel {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 28px;
    }
}

@media (max-width: 860px) {
    .header-top-grid {
        grid-template-columns: 1fr;
        padding: 16px 0;
    }

    .header-brand {
        display: flex;
        justify-content: center;
    }

    .header-search {
        width: 100%;
    }

    .header-utility-group {
        justify-content: center;
        flex-wrap: wrap;
        padding-bottom: 0;
    }

    .header-nav-row {
        justify-content: flex-start;
        min-height: 56px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-open .site-nav {
        display: block;
    }

    .site-nav .menu {
        display: block;
    }

    .site-nav .menu > li > a {
        min-height: 50px;
        padding: 0 18px;
    }

    .site-nav .sub-menu {
        position: static;
        min-width: 0;
        border: 0;
        border-top: 1px solid #edf3f5;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0;
    }

    .site-nav .menu-item-has-children:hover > .sub-menu,
    .site-nav .menu-item-has-children:focus-within > .sub-menu,
    .nav-open .site-nav .menu-item-has-children > .sub-menu {
        display: block;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .product-grid,
    .shop-grid,
    .blog-grid,
    .content-band-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        font-size: 2.2rem;
    }

    .utility-card {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        gap: 24px;
    }

    .floating-hotline {
        left: 12px;
        right: 12px;
        justify-content: center;
    }
}

/* Parkway-inspired visual refresh for HDG Dental Lab. */
:root {
    --teal: #079aa6;
    --teal-dark: #056c79;
    --blue: #1168c9;
    --blue-dark: #0b3d78;
    --gold: #f7b733;
    --surface-alt: #f3fbfd;
    --page-bg: #eef6f9;
    --shadow: 0 22px 58px rgba(6, 67, 94, 0.12);
}

body {
    background:
        radial-gradient(circle at 14% 8%, rgba(17, 104, 201, 0.1), transparent 32%),
        linear-gradient(180deg, #f5fbfd 0%, #edf6f9 42%, #f8fbfc 100%);
    color: #102033;
}

.site-shell {
    max-width: 1360px;
    background: transparent;
    box-shadow: none;
}

.site-header {
    position: relative;
    top: auto;
    z-index: 80;
    margin: 14px auto 0;
    width: min(calc(100% - 32px), var(--container));
    border-radius: 28px 28px 0 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 55px rgba(4, 68, 86, 0.14);
    backdrop-filter: blur(16px);
}

.header-top {
    background: linear-gradient(135deg, #ffffff 0%, #eefafe 100%);
    color: #122033;
}

.header-top-grid {
    grid-template-columns: 220px minmax(280px, 1fr) auto;
    min-height: 94px;
    gap: 22px;
}

.header-brand-link {
    max-width: 204px;
}

.header-logo {
    max-height: 82px;
    border-radius: 18px;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(7, 119, 138, 0.12);
}

.apec-search-form {
    max-width: 620px;
    min-height: 54px;
    background: #fff;
    border: 1px solid rgba(7, 154, 166, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 34px rgba(5, 108, 121, 0.08);
}

.apec-search-input,
.apec-search-input::placeholder {
    color: #496172;
}

.apec-search-button {
    color: var(--teal);
}

.header-utility-group {
    gap: 14px;
}

.utility-card {
    min-height: 58px;
    padding: 8px 14px 8px 8px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    box-shadow: 0 14px 28px rgba(17, 104, 201, 0.17);
}

.utility-card:last-child {
    background: linear-gradient(135deg, #ffb84d, #ff7a1a);
}

.utility-icon {
    background: rgba(255, 255, 255, 0.22);
}

.header-nav-bar {
    position: sticky;
    top: 0;
    z-index: 90;
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
    border-radius: 0 0 28px 28px;
    box-shadow: 0 18px 42px rgba(4, 68, 86, 0.12);
    background: #fff;
    border-top: 1px solid #e7f2f5;
    border-bottom: 0;
    overflow: visible;
}

.header-nav-row {
    min-height: 58px;
}

.site-nav .menu {
    gap: 8px;
}

.site-nav .menu > li > a {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    color: #102033;
    letter-spacing: 0.01em;
}

.site-nav .menu > li.current-menu-item > a,
.site-nav .menu > li.current-menu-ancestor > a,
.site-nav .menu > li > a:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--teal), var(--blue));
}

.site-main {
    padding-top: 18px;
}

.hero-section {
    padding: 24px 0 0;
    background: transparent;
}

.hero-panel {
    min-height: 476px;
    border-radius: 34px;
    grid-template-columns: 0.9fr 1.1fr;
    background:
        radial-gradient(circle at 12% 20%, rgba(7, 154, 166, 0.16), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f2fbfe 52%, #e8f7fb 100%);
    box-shadow: var(--shadow);
    border: 1px solid rgba(8, 153, 166, 0.12);
}

.hero-copy {
    position: relative;
    padding: 54px 24px 54px 62px;
    background: transparent;
}

.hero-copy::before {
    content: "HDG Dental Lab";
    display: inline-flex;
    width: max-content;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--teal-dark);
    background: rgba(7, 154, 166, 0.1);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.hero-brand-logo {
    width: 150px;
    margin-bottom: 14px;
    border-radius: 16px;
}

.hero-copy h1 {
    margin-bottom: 16px;
    color: #0b315b;
    font-size: clamp(2.7rem, 5.4vw, 4.8rem);
    letter-spacing: -0.04em;
}

.hero-copy p {
    max-width: 610px;
    color: #34536c;
    font-size: 1.08rem;
}

.hero-button {
    min-width: 206px;
    min-height: 58px;
    background: linear-gradient(135deg, var(--gold), #ff7a1a);
    box-shadow: 0 18px 36px rgba(255, 122, 26, 0.24);
}

.hero-button:hover {
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    background: linear-gradient(135deg, rgba(7, 154, 166, 0.08), rgba(17, 104, 201, 0.08));
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 30px 30px 30px auto;
    width: 58%;
    border-radius: 999px 0 0 999px;
    background: rgba(255, 255, 255, 0.36);
}

.hero-visual img {
    position: relative;
    object-position: 78% center;
    transform: scale(1.22);
}

.quick-actions {
    position: relative;
    z-index: 5;
    margin-top: -34px;
    padding-bottom: 26px;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.quick-action-card {
    display: flex;
    min-height: 92px;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding: 18px 20px;
    border-radius: 24px;
    color: #16334a;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(7, 154, 166, 0.14);
    box-shadow: 0 18px 44px rgba(5, 80, 101, 0.11);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-action-card span {
    color: var(--teal-dark);
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.quick-action-card strong {
    font-size: 1.1rem;
}

.quick-action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(5, 80, 101, 0.16);
}

.quick-action-card-highlight {
    color: #fff;
    background: linear-gradient(135deg, var(--teal), var(--blue));
}

.quick-action-card-highlight span {
    color: rgba(255, 255, 255, 0.82);
}

.lab-service-showcase {
    padding: 42px 0 74px;
    background: #fff;
}

.lab-shortcut-row {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 56px;
}

.lab-shortcut {
    display: grid;
    justify-items: center;
    gap: 12px;
    text-align: center;
    color: #082544;
    font-weight: 900;
}

.lab-shortcut-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    color: #254489;
    background:
        radial-gradient(circle at 72% 20%, rgba(17, 104, 201, 0.14), transparent 36%),
        #eef3f8;
    box-shadow: inset 0 0 0 1px rgba(17, 104, 201, 0.06), 0 14px 34px rgba(8, 47, 89, 0.08);
    font-size: 0.86rem;
    font-weight: 950;
    letter-spacing: -0.02em;
}

.lab-shortcut-icon::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 3px solid currentColor;
    border-radius: 8px;
    opacity: 0.85;
}

.lab-shortcut-icon::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 3px;
    bottom: 25px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.85;
}

.lab-shortcut:hover .lab-shortcut-icon {
    color: #fff;
    background: linear-gradient(135deg, var(--teal), var(--blue));
}

.lab-service-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 48px 32px;
}

.lab-service-card {
    position: relative;
    min-height: 280px;
    border-radius: 7px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 34px rgba(6, 67, 94, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lab-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 58px rgba(6, 67, 94, 0.16);
}

.lab-service-card a {
    display: grid;
    min-height: 100%;
    grid-template-rows: 1fr auto;
}

.lab-service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f5f8fa;
}

.lab-service-card h3 {
    margin: 0;
    min-height: 80px;
    display: grid;
    place-items: center;
    padding: 16px 20px;
    color: #1b2874;
    text-align: center;
    font-size: 1.08rem;
    line-height: 1.35;
}

.lab-service-badge {
    position: absolute;
    right: 10px;
    top: 86px;
    width: 58px;
    height: 58px;
    padding: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 26px rgba(10, 41, 71, 0.16);
}

.lab-service-badge::before {
    content: "";
    position: absolute;
    right: 54px;
    top: 50%;
    width: 42px;
    height: 2px;
    background: rgba(255, 255, 255, 0.95);
}

.lab-service-badge img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
}

.product-section {
    padding: 24px 0 58px;
    background: transparent;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 7px 14px;
    border-radius: 999px;
    color: var(--teal-dark);
    background: rgba(7, 154, 166, 0.1);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.section-heading h2,
.appointment-panel h2 {
    margin: 0 0 12px;
    color: #0b315b;
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.section-heading p,
.appointment-panel p {
    margin: 0;
    color: #4a6478;
    font-size: 1.05rem;
}

.product-grid,
.shop-grid {
    gap: 28px;
}

.product-tile,
.shop-card,
.content-card,
.blog-card,
.single-post-card,
.entry-card-page,
.content-card-empty,
.blog-sidebar .widget {
    border: 1px solid rgba(7, 154, 166, 0.14);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(6, 67, 94, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-tile:hover,
.shop-card:hover,
.content-card:hover,
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 58px rgba(6, 67, 94, 0.15);
}

.product-tile-title,
.shop-card-title {
    padding: 17px 20px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    letter-spacing: 0.01em;
    min-height: 58px;
    display: grid;
    place-items: center;
}

.product-tile-title::before,
.product-tile-title::after {
    display: none;
}

.product-tile img,
.shop-card img {
    aspect-ratio: 1 / 0.78;
    object-fit: cover;
    background: #fff;
}

.appointment-band {
    padding: 0 0 26px;
    background: transparent;
}

.appointment-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 34px 38px;
    border-radius: 32px;
    color: #fff;
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.22), transparent 30%),
        linear-gradient(135deg, #0a8997 0%, #0b4e88 100%);
    box-shadow: 0 24px 58px rgba(7, 82, 118, 0.18);
    overflow: hidden;
}

.appointment-panel .section-kicker {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

.appointment-panel h2,
.appointment-panel p {
    color: #fff;
}

.appointment-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.appointment-primary,
.appointment-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    white-space: nowrap;
}

.appointment-primary {
    color: #14304a;
    background: #fff;
}

.appointment-secondary {
    color: #fff;
    background: linear-gradient(135deg, var(--gold), #ff7a1a);
    box-shadow: 0 14px 30px rgba(255, 122, 26, 0.24);
}

.lab-results-section {
    padding: 64px 0 72px;
    background: linear-gradient(180deg, #f8fbfd 0%, #eef6fa 100%);
}

.lab-results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.lab-result-card {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1fr);
    gap: 26px;
    min-height: 430px;
    padding: 30px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(8, 47, 89, 0.1);
    overflow: hidden;
}

.lab-result-card::before {
    content: "";
    position: absolute;
}

.lab-result-copy {
    align-self: center;
}

.lab-result-logo {
    width: 84px;
    margin-bottom: 22px;
    border-radius: 12px;
}

.lab-result-copy h3 {
    margin: 0 0 6px;
    color: #24347d;
    font-size: 1.15rem;
}

.lab-result-type {
    margin: 0 0 14px;
    color: #22344a;
}

.lab-result-copy strong {
    display: block;
    margin: 12px 0 4px;
    color: #102033;
}

.lab-result-copy p {
    margin: 0 0 8px;
    color: #25384b;
}

.lab-result-copy ul {
    margin: 0;
    padding-left: 18px;
    color: #25384b;
}

.lab-result-images {
    display: grid;
    gap: 18px;
}

.lab-result-images figure {
    position: relative;
    margin: 0;
    min-height: 178px;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f7;
}

.lab-result-images img {
    width: 100%;
    height: 100%;
    min-height: 178px;
    object-fit: cover;
}

.lab-result-images figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 14px;
    color: #fff;
    background: rgba(0, 0, 0, 0.62);
    text-align: center;
    font-weight: 900;
}

.content-band,
.page-section {
    padding: 56px 0 68px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(237, 248, 251, 0.88));
}

.content-card {
    padding: 30px;
}

.content-card h2,
.page-hero h1,
.page-hero-shop h1,
.single-post-card h1,
.product-layout-copy h1 {
    color: #0b315b;
    letter-spacing: -0.02em;
}

.text-link,
.footer-link {
    color: var(--blue);
}

.text-link::after {
    content: " ->";
}

.page-hero,
.page-hero-shop {
    margin-top: 18px;
    background: linear-gradient(135deg, #ffffff, #eaf8fc);
    border: 0;
    border-radius: 30px;
}

.site-footer {
    margin-top: 34px;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.16), transparent 24%),
        linear-gradient(135deg, #056c79, #07355e 78%);
}

.floating-hotline {
    background: linear-gradient(135deg, #ff7a1a, #f02f32);
}

@media (max-width: 1100px) {
    .site-header {
        width: min(calc(100% - 24px), var(--container));
    }

    .header-nav-bar {
        width: min(calc(100% - 24px), var(--container));
    }

    .header-top-grid {
        grid-template-columns: 210px 1fr;
    }

    .hero-panel,
    .quick-actions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lab-shortcut-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lab-service-grid,
    .lab-results-grid,
    .lab-result-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .appointment-panel {
        grid-template-columns: 1fr;
    }

    .appointment-actions {
        justify-content: flex-start;
    }

    .hero-copy {
        padding: 44px 34px;
    }
}

@media (max-width: 860px) {
    .site-header {
        position: relative;
        margin-top: 0;
        width: 100%;
        border-radius: 0;
    }

    .header-nav-bar {
        width: 100%;
        border-radius: 0;
    }

    .header-top-grid {
        grid-template-columns: 1fr;
    }

    .site-nav .menu {
        gap: 0;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding-top: 12px;
    }

    .hero-panel,
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }

    .lab-shortcut-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .lab-service-grid,
    .lab-results-grid,
    .lab-result-card {
        grid-template-columns: 1fr;
    }

    .lab-service-showcase,
    .lab-results-section {
        padding: 36px 0 46px;
    }

    .hero-copy {
        padding: 34px 24px;
    }

    .hero-copy h1 {
        font-size: 2.45rem;
    }

    .quick-actions {
        margin-top: 16px;
    }

    .appointment-panel {
        padding: 28px 22px;
    }

    .appointment-primary,
    .appointment-secondary {
        width: 100%;
    }
}
