:root {
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shadow-soft: 0 18px 42px rgba(11, 20, 34, 0.14);
    --shadow-card: 0 10px 30px rgba(17, 24, 39, 0.08);
    --content-max: 1280px;
    --header-height: 104px;
    --font-base: "Elms Sans", sans-serif;
    --font-display: "Elms Sans", sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-base);
    font-weight: 300;
    color: var(--ink);
    background: radial-gradient(circle at 80% -10%, rgba(255, 255, 255, 0.7), transparent 45%), var(--surface);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.menu-link,
.btn,
button,
.site-footer,
.site-footer a {
    font-family: var(--font-base);
    font-weight: 300 !important;
}

b,
strong {
    font-weight: 500 !important;
}

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

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

.theme-domino {
    --primary: #142c4d;
    --secondary: #ffb81d;
    --accent: #ffb81d;
    --surface: #ffffff;
    --ink: #142c4d;
    --muted: #142c4d;
    --shadow-soft: 0 18px 42px rgba(20, 44, 77, 0.18);
    --shadow-card: 0 10px 30px rgba(20, 44, 77, 0.12);
}

.theme-cb {
    --primary: #111111;
    --secondary: #ae2220;
    --accent: #ae2220;
    --surface: #ffffff;
    --ink: #111111;
    --muted: #454545;
    --shadow-soft: 0 18px 42px rgba(17, 17, 17, 0.16);
    --shadow-card: 0 10px 30px rgba(17, 17, 17, 0.12);
}

.container {
    max-width: var(--content-max);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    padding-top: 12px;
    transition: 0.35s ease;
}

.site-header.is-scrolled {
    padding-top: 6px;
}

.header-shell {
    min-height: var(--header-height);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 24px;
    position: relative;
    transition: 0.35s ease;
}

.site-header.is-scrolled .header-shell {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    border-color: rgba(15, 36, 51, 0.1);
    box-shadow: var(--shadow-soft);
}

.desktop-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.left-nav {
    justify-content: flex-end;
    padding-right: 8px;
}

.right-nav {
    justify-content: flex-start;
    padding-left: 8px;
}

.menu-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding-bottom: 4px;
    transition: color 0.25s ease;
}

.menu-link > span {
    display: inline-block;
    width: min-content;
    text-align: center;
    line-height: 1.18;
}

.menu-item {
    position: relative;
}

.menu-caret {
    width: 14px;
    height: 14px;
    opacity: 0.8;
}

.menu-dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 250px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.1);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 120;
}

.menu-item.has-dropdown:hover .menu-dropdown-panel,
.menu-item.has-dropdown:focus-within .menu-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-dropdown-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #111;
    border-radius: 10px;
    padding: 9px 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.menu-dropdown-link:hover {
    background: rgba(17, 17, 17, 0.06);
}

.menu-icon {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    stroke-width: 2.1;
}

.menu-image-icon {
    display: block;
    object-fit: contain;
}

.menu-button {
    background: var(--secondary);
    color: var(--ink) !important;
    border-radius: 999px;
    padding: 10px 18px;
    border: 1px solid var(--secondary);
    margin-left: 6px;
}

.menu-button > span {
    width: auto;
    text-align: center;
}

.menu-button::after {
    display: none;
}

.menu-button:hover {
    background: transparent;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.8);
}

.site-header.is-scrolled .menu-button:hover {
    color: var(--ink) !important;
    border-color: var(--ink);
}

.site-header.is-scrolled .menu-link {
    color: var(--ink);
}

.menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.25s ease;
}

.menu-link:hover::after,
.menu-link.is-active::after {
    width: 100%;
}

.brand-logo {
    position: relative;
    transform: translateY(30px);
    width: 190px;
    min-height: 110px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 12px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    color: var(--ink);
    transition: 0.35s ease;
}

.site-header.is-scrolled .brand-logo {
    transform: translateY(18px) scale(0.88);
}

.logo-mark {
    font-family: var(--font-display);
    letter-spacing: 0.06em;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.logo-text {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
}

.logo-image {
    width: 100%;
    max-width: 156px;
    max-height: 64px;
    object-fit: contain;
    object-position: center;
}

.mobile-menu-toggle {
    display: none;
    margin-left: auto;
    background: none;
    border: 0;
    width: 44px;
    height: 44px;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s ease;
}

.site-header.is-scrolled .mobile-menu-toggle span {
    background: var(--ink);
}

.header-lang {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.header-lang .lang-chip {
    padding: 5px 9px;
    font-size: 0.68rem;
}

.mobile-panel {
    display: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video-media,
.slide-bg,
.hero-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-fallback {
    background-size: cover;
    background-position: center;
    display: none;
}

.hero-video.no-video .hero-fallback {
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(7, 17, 28, 0.76), rgba(7, 17, 28, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 120px;
}

.hero-copy {
    max-width: 680px;
    color: #fff;
}

.hero-kicker {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.08;
    margin-top: 20px;
    margin-bottom: 16px;
}

.hero p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.07rem;
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 700;
    border: 1px solid transparent;
}

.btn-premium {
    background: var(--secondary);
    color: #fff;
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.section {
    padding: 100px 0;
}

.section.alt {
    background: #fff;
}

.detail-hero {
    position: relative;
    min-height: 64vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    margin-top: 84px;
}

.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(9, 19, 34, 0.82), rgba(9, 19, 34, 0.35));
}

.detail-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: clamp(40px, 8vw, 84px);
}

.detail-hero-copy {
    max-width: 720px;
    color: #fff;
}

.detail-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    line-height: 1.1;
    margin: 0 0 14px;
}

.detail-hero-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.section-title {
    max-width: 700px;
    margin-bottom: 42px;
}

.section-title h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.65rem);
    margin-bottom: 14px;
}

.section-title p {
    color: var(--muted);
    margin: 0;
}

.icon-card,
.product-card,
.reference-card,
.metric-card,
.machine-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    height: 100%;
}

.icon-card {
    padding: 30px;
}

.icon-orb {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    background: rgba(20, 44, 77, 0.08);
    margin-bottom: 14px;
}

.icon-ring {
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    border: 1px dashed rgba(20, 44, 77, 0.38);
}

.icon-card i {
    width: 28px;
    height: 28px;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.icon-card h3 {
    font-size: 1.15rem;
    margin: 8px 0 8px;
}

.icon-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.product-card figure {
    margin: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
}

.product-card img,
.reference-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.card-body,
.ref-body {
    padding: 22px;
}

.card-body h3,
.ref-body h3 {
    font-size: 1.14rem;
    margin-bottom: 8px;
}

.card-body p,
.ref-body p {
    margin: 0;
    color: var(--muted);
}

.process-steps .icon-card {
    border-top: 3px solid var(--accent);
}

.process-strip-card {
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 22px;
    height: 100%;
}

.process-strip-index {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--secondary);
    color: var(--ink);
    display: grid;
    place-items: center;
    font-weight: 800;
    margin-bottom: 12px;
}

.process-strip-card h4 {
    margin: 0 0 8px;
    font-size: 1.04rem;
}

.process-strip-card p {
    margin: 0;
    color: var(--muted);
}

.services-showcase .icon-card-halaman {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-showcase .icon-card-halaman:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.15);
}

.services-showcase .icon-card-halaman .icon-orb {
    background: linear-gradient(135deg, rgba(91, 165, 216, 0.22), rgba(217, 168, 108, 0.25));
}

.services-showcase .icon-card-halaman .icon-ring {
    border-width: 2px;
    border-color: rgba(30, 53, 87, 0.32);
    animation: spinRing 7s linear infinite;
}

.services-showcase .icon-card-halaman i {
    animation: floatIcon 2.8s ease-in-out infinite;
}

.cross-link {
    position: relative;
    overflow: hidden;
}

.cross-link .panel {
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(13, 36, 57, 0.96), rgba(20, 78, 112, 0.94));
    color: #fff;
    padding: clamp(30px, 4vw, 56px);
}

.cross-link p {
    color: rgba(255, 255, 255, 0.85);
}

.cta-shell {
    border-radius: 28px;
    background: #111827;
    color: #fff;
    padding: clamp(28px, 4vw, 48px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cta-shell p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 36px;
}

.about-section {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: clamp(24px, 3vw, 38px);
    box-shadow: var(--shadow-card);
    margin-bottom: 24px;
}

.about-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.about-head i {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.about-section p {
    color: var(--muted);
}

.about-section img {
    margin-top: 18px;
    border-radius: var(--radius-md);
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.right-nav-anchors {
    position: sticky;
    top: 120px;
    align-self: start;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 18px;
}

.right-nav-anchors ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.right-nav-anchors a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--muted);
    transition: 0.25s ease;
}

.right-nav-anchors a.is-active,
.right-nav-anchors a:hover {
    background: rgba(91, 165, 216, 0.16);
    color: var(--ink);
}

.metric-card,
.machine-card,
.certificate-card {
    padding: 24px;
}

.metric-card .value {
    font-family: var(--font-display);
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 6px;
}

.machine-card h4,
.certificate-card h4 {
    margin-top: 0;
    margin-bottom: 8px;
}

.machine-card p,
.certificate-card p {
    margin: 0;
    color: var(--muted);
}

.machine-flow {
    display: grid;
    gap: 18px;
}

.machine-step {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: var(--shadow-card);
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: center;
    padding: 22px 24px;
}

.machine-order {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--secondary);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.machine-spec {
    display: inline-block;
    margin: 0 0 8px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 700;
}

.machine-content h4 {
    margin: 0 0 8px;
    font-size: 1.12rem;
}

.machine-content p {
    margin: 0;
    color: var(--muted);
}

.site-footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.84);
    padding: 34px 0 16px;
    margin-top: 44px;
}

.site-footer h4,
.site-footer h5 {
    color: #fff;
}

.footer-logo {
    width: 126px;
    max-width: 100%;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.theme-domino .footer-logo {
    width: 170px;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li + li {
    margin-top: 2px;
}

.footer-partner-link {
    display: inline-flex;
    margin-top: 8px;
    font-weight: 700;
    opacity: 0.94;
}

.footer-bottom {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

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

.footer-scroll-top {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition:
        transform 160ms ease,
        background 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.footer-scroll-top:hover,
.footer-scroll-top:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.footer-scroll-top:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18), 0 10px 20px rgba(0, 0, 0, 0.16);
}

.footer-scroll-top svg {
    width: 18px;
    height: 18px;
}

.lang-switcher {
    display: inline-flex;
    gap: 8px;
}

.lang-chip {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.lang-chip.is-active {
    background: #fff;
    color: #0f172a;
}

.site-header .lang-chip {
    border-color: rgba(15, 36, 51, 0.2);
    color: var(--ink);
}

.site-header .lang-chip.is-active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

.mobile-link-button {
    margin-top: 10px;
    justify-content: center;
    border: 1px solid var(--secondary);
    border-radius: 999px;
    background: var(--secondary);
    color: var(--ink);
    padding: 10px 14px;
}

.theme-domino .site-header {
    padding-top: 0;
    background: #fff;
    border-bottom: 1px solid rgba(20, 44, 77, 0.1);
}

.theme-domino .site-header.is-scrolled {
    box-shadow: 0 10px 24px rgba(20, 44, 77, 0.1);
}

.theme-domino .header-topbar {
    background: #142c4d;
    color: #fff;
    font-size: 0.82rem;
}

.theme-domino .header-topbar-inner {
    min-height: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.theme-domino .header-contact-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.theme-domino .header-contact-links a {
    color: #fff;
    opacity: 0.95;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.theme-domino .header-contact-links a:hover {
    color: #ffb81d;
}

.theme-domino .header-contact-icon {
    width: 0.9em;
    height: 0.9em;
    flex: 0 0 auto;
    stroke-width: 2;
}

.theme-domino .header-topbar-lang {
    gap: 0;
}

.theme-domino .header-topbar-lang .lang-chip {
    border: 0;
    border-radius: 0;
    color: #fff;
    font-size: 0.84rem;
    padding: 0 10px;
    line-height: 1;
    font-family: var(--font-base);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.theme-domino .header-topbar-lang .lang-chip + .lang-chip {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.theme-domino .header-topbar-lang .lang-chip.is-active {
    background: transparent;
    color: #ffb81d;
}

.theme-domino .header-shell {
    min-height: 124px;
    border-radius: 0;
    background: #fff;
    border: 0;
    box-shadow: none;
    padding: 0 6px;
}

.theme-domino .site-header.is-scrolled .header-shell {
    min-height: 108px;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.theme-domino .left-nav {
    justify-content: flex-end;
    padding-right: 20px;
}

.theme-domino .right-nav {
    justify-content: flex-start;
    padding-left: 20px;
}

.theme-domino .desktop-nav {
    gap: 20px;
}

.theme-domino .menu-link {
    color: #142c4d;
    font-weight: 600;
    white-space: nowrap;
}

.theme-domino .menu-link > span {
    width: auto;
    white-space: nowrap;
}

.theme-domino .menu-link:hover,
.theme-domino .menu-link.is-active {
    color: #0f2340;
}

.theme-domino .menu-link::after {
    background: #ffb81d;
}

.theme-domino .menu-dropdown-panel {
    border-color: rgba(20, 44, 77, 0.12);
}

.theme-domino .menu-dropdown-link:hover {
    background: rgba(20, 44, 77, 0.08);
}

.theme-domino .brand-logo {
    transform: none;
    width: auto;
    min-height: auto;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.theme-domino .site-header.is-scrolled .brand-logo {
    transform: none;
}

.theme-domino .logo-image {
    width: 220px;
    height: 78px;
    max-width: 220px;
    max-height: 78px;
    object-fit: cover;
    object-position: center 60%;
}

.theme-domino .mobile-menu-toggle span {
    background: #142c4d;
}

.theme-domino .hero-overlay {
    background: linear-gradient(115deg, rgba(20, 44, 77, 0.88), rgba(20, 44, 77, 0.56));
}

.theme-domino .btn-premium {
    background: var(--secondary);
    color: var(--ink);
    border-color: var(--secondary);
}

.theme-domino .btn-ghost {
    border-color: rgba(255, 255, 255, 0.6);
}

.theme-domino .section.alt {
    background: #ffffff;
}

.theme-domino .cross-link .panel,
.theme-domino .cta-shell {
    background: #142c4d;
}

.theme-domino .page-breadcrumb-hero {
    padding-top: 156px;
    padding-bottom: 112px;
    background-image: var(--hero-bg-image, none);
    background-size: cover;
    background-position: center;
}

.theme-domino .breadcrumb-card {
    color: #fff;
    border-radius: 14px;
    background: rgba(20, 44, 77, 0.62);
    padding: 14px 16px;
    box-shadow: 0 12px 26px rgba(8, 18, 33, 0.22);
    width: fit-content;
    max-width: min(100%, 380px);
}

.theme-domino .breadcrumb-card p {
    opacity: 0.88;
    font-size: 0.77rem;
    letter-spacing: 0.02em;
    margin-bottom: 6px !important;
}

.theme-domino .breadcrumb-card p a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.42);
    text-underline-offset: 3px;
}

.theme-domino .breadcrumb-card p a:hover {
    color: #ffb81d;
    text-decoration-color: #ffb81d;
}

.theme-domino .breadcrumb-highlight-text {
    margin: 10px 0 0;
    color: #ffb81d;
    font-weight: 300;
    font-size: 1.34rem;
    line-height: 1.44;
    letter-spacing: 0.01em;
}

.theme-domino .breadcrumb-card h1 {
    margin: 0;
    font-size: clamp(1.26rem, 2.8vw, 1.95rem);
}

.theme-domino .center-intro-card {
    max-width: 640px;
    margin: -64px auto 26px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(20, 44, 77, 0.12);
    border: 1px solid rgba(20, 44, 77, 0.08);
    padding: clamp(18px, 2.9vw, 22px);
    position: relative;
    z-index: 3;
}

.theme-domino .center-intro-card p {
    margin: 0;
    color: #203c60;
    font-size: 1.06rem;
    line-height: 1.62;
}

.theme-domino .section-overlap-intro {
    padding-top: 8px;
    padding-bottom: 14px;
}

.theme-domino .section-overlap-intro + .section {
    padding-top: 14px;
}

.theme-domino .page-breadcrumb-hero--compact .container {
    display: flex;
    align-items: flex-start;
}

.theme-domino .page-breadcrumb-hero--compact .breadcrumb-card {
    margin-left: 0;
}

.theme-domino .page-anchor-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 32px;
    align-items: start;
}

.theme-domino .reference-filter-panel {
    max-width: 720px;
}

.theme-domino .reference-filter-panel--inline {
    max-width: none;
    margin: 0 0 34px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.theme-domino .reference-filter-title {
    margin: 0 0 14px;
    color: #142c4d;
    font-size: 1.05rem;
    font-weight: 700;
}

.theme-domino .reference-filter-panel--inline .reference-filter-title {
    margin-bottom: 0;
}

.theme-domino .references-list-section {
    padding-bottom: 28px;
}

.theme-domino .reference-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.theme-domino .reference-filter-chip {
    border: 1px solid rgba(20, 44, 77, 0.2);
    background: #fff;
    color: #142c4d;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 600;
}

.theme-domino .reference-filter-chip.is-active,
.theme-domino .reference-filter-chip:hover {
    background: #142c4d;
    color: #fff;
    border-color: #142c4d;
}

.theme-domino .references-visual-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.theme-domino .reference-visual-card {
    background: #fff;
    border: 1px solid rgba(20, 44, 77, 0.1);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(20, 44, 77, 0.08);
    overflow: hidden;
}

.theme-domino .reference-visual-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.theme-domino .reference-visual-body {
    padding: 14px;
}

.theme-domino .reference-visual-body h3 {
    margin: 0 0 6px;
    font-size: 1.01rem;
}

.theme-domino .reference-visual-body p {
    margin: 0;
    color: #456286;
    font-size: 0.9rem;
}

.theme-domino .contact-intro-card {
    max-width: 700px;
    text-align: center;
}

.theme-domino .contact-intro-title {
    margin: 0;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 400;
    line-height: 1.25;
    text-transform: capitalize;
}

.theme-domino .contact-intro-title .primary {
    color: #142c4d;
}

.theme-domino .contact-intro-title .accent {
    color: #ffb81d;
    margin-left: 8px;
}

.theme-domino .contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 10px;
    margin-bottom: 22px;
}

.theme-domino .contact-info-card {
    display: block;
    background: #fff;
    border: 1px solid rgba(20, 44, 77, 0.12);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(20, 44, 77, 0.08);
    padding: 18px 14px;
    text-align: center;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.theme-domino a.contact-info-card:hover {
    border-color: rgba(255, 184, 29, 0.45);
    box-shadow: 0 14px 30px rgba(20, 44, 77, 0.13);
    transform: translateY(-2px);
    text-decoration: none;
}

.theme-domino .contact-info-card .contact-premium-icon {
    width: 34px;
    height: 34px;
    color: #ffb81d;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    stroke-width: 1.8;
}

.theme-domino .footer-social-icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.12em;
}

.theme-domino .contact-info-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 700;
    color: #142c4d;
}

.theme-domino .contact-info-card p {
    margin: 0;
    color: #3f5879;
    font-size: 0.94rem;
    line-height: 1.45;
}

.theme-domino .contact-map-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(20, 44, 77, 0.14);
    box-shadow: 0 12px 26px rgba(20, 44, 77, 0.1);
    background: #fff;
}

.theme-domino .contact-map-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.theme-domino .contact-map-grid.is-single {
    grid-template-columns: minmax(0, 1fr);
}

.theme-domino .contact-map-title {
    margin: 0;
    padding: 18px 20px 14px;
    color: #142c4d;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    border-bottom: 1px solid rgba(20, 44, 77, 0.1);
}

.theme-domino .contact-map-embed {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

.theme-domino .home-breadcrumb-hero {
    --domino-main-menu-hero-height: 640px;
    box-sizing: border-box;
    height: var(--domino-main-menu-hero-height);
    min-height: var(--domino-main-menu-hero-height);
    padding-bottom: 0;
    background-image: var(--hero-bg-image, none);
}

.theme-domino .home-breadcrumb-layout {
    display: flex;
    align-items: flex-start;
}

.theme-domino .home-hero-card {
    max-width: 760px;
}

.theme-domino .contact-page-hero .home-hero-card {
    width: min(100%, 760px);
}

.theme-domino .breadcrumb-card .home-breadcrumb-highlight {
    margin: 10px 0 0;
    font-weight: 300;
    font-size: 1.34rem;
    line-height: 1.44;
    color: #ffb81d;
}

.theme-domino .home-hero-actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.theme-domino .home-intro-section {
    padding-bottom: 8px;
}

.theme-domino .home-intro-card {
    max-width: 980px;
    font-weight: 300;
}

.theme-domino .home-intro-card h2 {
    margin: 0 0 16px;
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    font-weight: 300;
    color: #142c4d;
    line-height: 1.25;
}

.theme-domino .home-intro-card .home-intro-title-accent {
    color: #ffb81d;
    font-weight: 300;
}

.theme-domino .home-intro-card p {
    font-weight: 300;
    color: #2f496c;
    margin-bottom: 12px;
    line-height: 1.6;
}

.theme-domino .home-intro-feature-grid {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.theme-domino .home-intro-feature {
    border: 1px solid rgba(20, 44, 77, 0.12);
    border-radius: 14px;
    background: #fbfdff;
    padding: 12px 14px;
}

.theme-domino .home-intro-feature h3 {
    margin: 0 0 6px;
    font-size: 1.2rem;
    font-weight: 300;
    color: #ffb81d;
}

.theme-domino .home-intro-feature p {
    margin: 0;
    font-size: 0.92rem;
}

.theme-domino .home-intro-feature-heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-domino .home-intro-feature-heading i {
    width: 24px;
    height: 24px;
    color: #ffb81d;
    flex: 0 0 auto;
}

.theme-domino .home-product-highlight-grid {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.theme-domino .home-product-highlight {
    border: 1px solid rgba(20, 44, 77, 0.11);
    border-radius: 12px;
    padding: 10px 10px 11px;
    background: #fff;
}

.theme-domino .home-product-highlight h4 {
    margin: 0 0 5px;
    color: #142c4d;
    font-size: 0.9rem;
    font-weight: 400;
}

.theme-domino .home-product-highlight p {
    margin: 0;
    color: #607a9a;
    font-size: 0.82rem;
    font-weight: 300;
}

.theme-domino .home-thin-title-wrap {
    margin-bottom: 16px;
}

.theme-domino .home-print-house-section {
    padding-bottom: 22px;
}

.theme-domino .home-services-section {
    padding-top: 18px;
    padding-bottom: 22px;
}

.theme-domino .home-print-production-section {
    padding-top: 18px;
    padding-bottom: 22px;
}

.theme-domino .home-production-section {
    padding-top: 18px;
    padding-bottom: 18px;
}

.theme-domino .home-services-section .uretim-process-section {
    margin-top: 0;
    padding-top: 0;
}

.theme-domino .home-benefits-section {
    padding-top: 22px;
    padding-bottom: 22px;
}

.theme-domino .home-products-section {
    padding-top: 18px;
    padding-bottom: 34px;
}

.theme-domino .home-thin-title {
    margin: 0;
    font-weight: 300;
    color: #ffb81d;
    font-size: clamp(1.35rem, 2.8vw, 2rem);
}

.theme-domino .home-service-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 34px);
}

.theme-domino .home-service-card h3 {
    color: #0f2236;
    font-weight: 300;
    letter-spacing: 0.12em;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    line-height: 1.45;
    font-family: var(--font-base);
    text-align: center;
    min-height: 2.9em;
}

.theme-domino .home-service-card i {
    color: #ffb81d;
    width: 26px;
    height: 26px;
}

.theme-domino .home-services-section .home-thin-title {
    letter-spacing: 0.16em;
}

.theme-domino .home-service-icon-wrap {
    width: min(100%, 124px);
    aspect-ratio: 1;
    margin: 0 auto 16px;
    display: block;
    padding: 10px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(20, 44, 77, 0.12);
    background: transparent;
    box-shadow: none;
    transition: transform 0.25s ease;
}

.theme-domino .home-service-sprite {
    width: 100%;
    max-width: none;
    height: calc(var(--sprite-frames, 9) * 100%);
    display: block;
    border-radius: 12px;
    object-fit: cover;
    object-position: top center;
    filter: drop-shadow(0 10px 16px rgba(15, 34, 54, 0.12));
    animation-name: homeServiceSprite;
    animation-duration: 3.2s;
    animation-timing-function: steps(8, end);
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    animation-play-state: paused;
    will-change: transform;
    transition: filter 0.25s ease;
}

.theme-domino .home-service-card {
    border: 1px solid rgba(20, 44, 77, 0.08);
    background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(20, 44, 77, 0.05);
    padding: 20px 14px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.theme-domino .home-service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(20, 44, 77, 0.18);
    box-shadow: 0 16px 30px rgba(20, 44, 77, 0.1);
}

.theme-domino .home-service-card:hover .home-service-icon-wrap {
    transform: translateY(-2px);
}

.theme-domino .home-service-card:hover .home-service-sprite,
.theme-domino .home-service-card:focus-within .home-service-sprite {
    animation-play-state: running;
    filter: drop-shadow(0 14px 24px rgba(15, 34, 54, 0.18));
}

.theme-domino .home-benefits-section .uretim-process-section {
    margin-top: 0;
    padding-top: 0;
}

.theme-domino .home-benefits-section .uretim-process-card {
    text-align: left;
}

.theme-domino .home-benefits-section .home-process-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.theme-domino .home-benefits-section .home-process-head .uretim-process-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 0;
    flex: 0 0 auto;
}

.theme-domino .home-benefits-section .home-process-head .uretim-process-icon svg {
    width: 28px;
    height: 28px;
}

.theme-domino .home-benefits-section .home-process-head h3 {
    margin: 0;
}

.theme-domino .home-step-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.theme-domino .domino-card-flow-grid {
    grid-auto-flow: row;
    grid-auto-rows: 1fr;
    align-items: stretch;
    flex-wrap: wrap;
}

.theme-domino .domino-card-flow-grid > * {
    min-width: 0;
}

.theme-domino .home-step-card {
    position: relative;
    padding-top: 28px;
}

.theme-domino .home-step-icon {
    width: 38px;
    height: 38px;
    color: #ffb81d;
    margin-bottom: 10px;
}

.theme-domino .home-step-card h3 {
    font-weight: 400;
}

.theme-domino .home-step-card p {
    font-weight: 300;
}

.theme-domino .home-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.theme-domino .home-metric-card {
    background: #fff;
    border: 1px solid rgba(20, 44, 77, 0.12);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(20, 44, 77, 0.08);
    padding: 18px 16px;
    text-align: center;
}

.theme-domino .home-metric-icon {
    display: block;
    width: 38px;
    height: 38px;
    color: #ffb81d;
    margin: 0 auto 10px;
}

.theme-domino .home-metric-card h3 {
    margin: 0 0 8px;
    font-size: 0.95rem;
    color: #142c4d;
    font-weight: 300;
}

.theme-domino .home-metric-value {
    margin: 0;
    font-size: 2.05rem;
    line-height: 1;
    color: #142c4d;
    font-weight: 300;
}

.theme-domino .home-metrics-section {
    padding-bottom: 28px;
}

.theme-domino .home-metrics-section + .home-contact-short-section {
    padding-top: 34px;
}

.theme-domino .home-contact-short-section {
    padding-top: 34px;
    padding-bottom: 10px;
}

.theme-domino .home-contact-short-section .contact-info-card a {
    color: #142c4d;
    text-decoration: underline;
    text-decoration-color: rgba(20, 44, 77, 0.35);
    text-underline-offset: 3px;
}

.theme-domino .home-contact-short-section .contact-info-card a:hover {
    color: #0f2340;
    text-decoration-color: #ffb81d;
}

.theme-domino .home-contact-short-section + .site-footer {
    margin-top: 0;
}

.theme-domino .contact-breadcrumb-layout {
    position: relative;
    min-height: 132px;
    display: block;
}

.theme-domino .contact-breadcrumb-layout .breadcrumb-card {
    position: relative;
    z-index: 2;
}

.theme-domino .contact-breadcrumb-highlight {
    position: absolute;
    inset: 0;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: min(100%, 840px);
    color: #ffb81d;
    font-size: clamp(1.05rem, 2.4vw, 1.5rem);
    line-height: 1.35;
    font-weight: 300;
    z-index: 1;
    pointer-events: none;
}

.theme-domino .step-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.theme-domino .step-card {
    background: #fff;
    border: 1px solid rgba(20, 44, 77, 0.1);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(20, 44, 77, 0.08);
    padding: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.theme-domino .step-card .step-no {
    display: inline-block;
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
    color: #ffb81d;
    margin-bottom: 14px;
}

.theme-domino .step-card h3 {
    font-size: 1.14rem;
    margin-bottom: 10px;
}

.theme-domino .step-card p {
    margin: 0;
    color: #3b5373;
}

.theme-domino .service-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 36px;
}

.theme-domino .service-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(20, 44, 77, 0.12);
    box-shadow: 0 10px 20px rgba(20, 44, 77, 0.08);
    padding: 18px 14px;
    text-align: center;
}

.theme-domino .service-card i {
    width: 22px;
    height: 22px;
    color: #142c4d;
    margin-bottom: 10px;
}

.theme-domino .service-card h3 {
    margin: 0;
    font-size: 0.96rem;
}

.theme-domino .print-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.theme-domino .print-category-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(20, 44, 77, 0.1);
    box-shadow: 0 12px 28px rgba(20, 44, 77, 0.08);
    padding: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.theme-domino .print-category-media {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    background: linear-gradient(120deg, rgba(20, 44, 77, 0.16), rgba(255, 184, 29, 0.22));
}

.theme-domino .print-category-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.theme-domino .print-category-card h3 {
    margin: 0 0 8px;
    font-size: 1.03rem;
    color: var(--secondary);
}

.theme-domino .print-category-card p {
    margin: 0 0 14px;
    color: #3f5879;
    min-height: 2.9em;
}

.theme-domino .print-category-card .btn,
.theme-domino .category-product-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

.theme-domino .products-intro-card {
    max-width: 960px;
    text-align: center;
}

.theme-domino .products-intro-card h2 {
    color: #142c4d;
    letter-spacing: 0;
}

.theme-domino .products-category-section {
    padding-bottom: 18px;
}

.theme-domino .products-category-section .home-thin-title-wrap {
    margin-bottom: 18px;
}

.theme-domino .products-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.theme-domino .product-category-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(20, 44, 77, 0.1);
    box-shadow: 0 12px 28px rgba(20, 44, 77, 0.08);
    padding: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.theme-domino .product-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 28px rgba(20, 44, 77, 0.14);
    border-color: rgba(255, 184, 29, 0.55);
}

.theme-domino .product-category-card-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.theme-domino .product-category-media {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    background: linear-gradient(120deg, rgba(20, 44, 77, 0.2), rgba(255, 184, 29, 0.25));
}

.theme-domino .product-category-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.theme-domino .product-category-body {
    padding: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.theme-domino .product-category-body h3 {
    margin: 0 0 8px;
    font-size: 1.03rem;
    color: var(--secondary);
}

.theme-domino .product-category-body p {
    margin: 0 0 14px;
    color: #3f5879;
    font-size: 0.9rem;
    min-height: 2.9em;
}

.theme-domino .product-category-body .btn {
    align-self: flex-start;
    margin-top: auto;
}

.theme-domino .products-gallery-section {
    padding-top: 32px;
    padding-bottom: 28px;
}

.theme-domino .products-gallery-section .section-title {
    max-width: 860px;
}

.theme-domino .products-gallery-section .section-title h2 {
    color: #ffb81d;
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    font-weight: 300;
}

.theme-domino .print-pack-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 8px 0 10px;
}

.theme-domino .print-pack-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(20, 44, 77, 0.1);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(20, 44, 77, 0.08);
    padding: 16px;
    height: 100%;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.theme-domino .print-pack-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(20, 44, 77, 0.14);
}

.theme-domino .print-pack-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    object-fit: cover;
}

.theme-domino .print-pack-card h4 {
    margin: 0 0 8px;
    font-size: 1.03rem;
    line-height: 1.35;
    color: var(--secondary);
}

.theme-domino .print-pack-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding-top: 15px;
}

.theme-domino .print-pack-card-body p {
    margin: 0 0 18px;
    color: #3f5879;
    font-size: 0.94rem;
    line-height: 1.5;
}

.theme-domino .print-pack-card-body .btn {
    align-self: flex-start;
    margin-top: auto;
}

.theme-domino .products-contact-card-section {
    padding-top: 34px;
}

.theme-domino .products-contact-card-section .contact-info-grid {
    margin-bottom: 0;
}

.theme-domino .category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.theme-domino .category-filter-chip {
    border: 1px solid rgba(20, 44, 77, 0.2);
    background: #fff;
    color: #142c4d;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 600;
}

.theme-domino .category-filter-chip.is-active,
.theme-domino .category-filter-chip:hover {
    background: #142c4d;
    color: #fff;
    border-color: #142c4d;
}

.theme-domino .category-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.theme-domino .category-product-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(20, 44, 77, 0.1);
    box-shadow: 0 12px 28px rgba(20, 44, 77, 0.08);
    padding: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.theme-domino .category-product-media {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    background: linear-gradient(120deg, rgba(20, 44, 77, 0.16), rgba(255, 184, 29, 0.22));
}

.theme-domino .product-image-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(120deg, rgba(20, 44, 77, 0.16), rgba(255, 184, 29, 0.22));
}

.theme-domino .product-image-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: auto;
}

.theme-domino .product-image-carousel-preview-button {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: transparent;
    cursor: zoom-in;
}

.theme-domino .product-image-carousel-preview-button img {
    display: block;
}

.theme-domino .product-image-carousel.is-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    color: rgba(20, 44, 77, 0.72);
    font-size: 0.88rem;
    font-weight: 600;
}

.theme-domino .product-image-carousel-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    display: inline-flex;
    justify-content: center;
    gap: 7px;
    z-index: 2;
}

.theme-domino .product-image-carousel-dot {
    width: 9px;
    height: 9px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 2px 8px rgba(20, 44, 77, 0.25);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.theme-domino .product-image-carousel-dot.is-active {
    transform: scale(1.2);
    background: #ffb81d;
}

.theme-domino .product-image-carousel-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 38px;
    height: 46px;
    border: 0;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.92);
    color: #142c4d;
    font-size: 1.8rem;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(8, 18, 32, 0.22);
    transform: translateY(-50%);
}

.theme-domino .product-image-carousel-nav--prev {
    left: 10px;
}

.theme-domino .product-image-carousel-nav--next {
    right: 10px;
}

.theme-domino .product-image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(8, 18, 32, 0.82);
}

.theme-domino .product-image-lightbox-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(1040px, 100%);
    max-height: calc(100vh - 56px);
}

.theme-domino .product-image-lightbox-figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    max-height: calc(100vh - 56px);
    margin: 0;
}

.theme-domino .product-image-lightbox-panel img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 122px);
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

.theme-domino .product-image-lightbox-figure figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(100%, 760px);
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(20, 44, 77, 0.94);
    color: #fff;
    line-height: 1.3;
}

.theme-domino .product-image-lightbox-figure figcaption strong {
    font-size: 0.98rem;
}

.theme-domino .product-image-lightbox-figure figcaption span {
    flex: 0 0 auto;
    color: #ffb81d;
    font-size: 0.86rem;
}

.theme-domino .product-image-lightbox-close,
.theme-domino .product-image-lightbox-nav {
    position: absolute;
    z-index: 2;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: #142c4d;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.theme-domino .product-image-lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    font-size: 1.2rem;
    line-height: 1;
}

.theme-domino .product-image-lightbox-nav {
    top: 50%;
    width: 44px;
    height: 52px;
    border-radius: 8px;
    font-size: 2rem;
    transform: translateY(-50%);
}

.theme-domino .product-image-lightbox-nav--prev {
    left: 12px;
}

.theme-domino .product-image-lightbox-nav--next {
    right: 12px;
}

.theme-domino .category-product-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.theme-domino .category-product-card h3 {
    margin: 0 0 8px;
    font-size: 1.03rem;
    color: var(--secondary);
}

.theme-domino .category-product-card p {
    margin: 0 0 14px;
    color: #3f5879;
    min-height: 2.9em;
}

.theme-domino .category-intro-card {
    max-width: 820px;
    text-align: center;
}

.theme-domino .category-intro-card h2 {
    margin: 0 0 8px;
    color: #142C4D;
    font-size: clamp(1.35rem, 3vw, 2.05rem);
}

.theme-domino .category-intro-card p {
    margin: 0;
    color: #3f5879;
}

.theme-domino .category-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 28px;
    align-items: start;
}

.theme-domino .category-detail-section {
    padding-bottom: 28px;
}

.theme-domino .category-main-panel {
    min-width: 0;
}

.theme-domino .category-print-pack-section {
    margin-top: 34px;
}

.theme-domino .category-print-pack-section .section-title {
    margin-bottom: 12px;
}

.theme-domino .category-print-pack-section .section-title h2 {
    color: #FFB81D;
    font-size: 1.24rem;
}

.theme-domino .category-filter-head {
    margin-bottom: 24px;
}

.theme-domino .category-detail-toolbar {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 18px;
}

.theme-domino .category-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid rgba(20, 44, 77, 0.18);
    border-radius: 999px;
    background: #142c4d;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(20, 44, 77, 0.12);
}

.theme-domino .category-back-link:hover {
    border-color: #ffb81d;
    background: #ffb81d;
    color: #142c4d;
}

.theme-domino .category-filter-head h3 {
    margin: 0 0 14px;
    color: #142c4d;
    font-size: 1.14rem;
}

.theme-domino .category-side-nav {
    position: sticky;
    top: 110px;
    background: #fff;
    border: 1px solid rgba(20, 44, 77, 0.12);
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(20, 44, 77, 0.08);
    padding: 16px;
}

.theme-domino .category-side-nav h4 {
    margin: 0 0 12px;
    color: #142c4d;
    font-size: 1rem;
}

.theme-domino .category-side-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 7px;
}

.theme-domino .category-side-nav a {
    display: block;
    padding: 8px 10px;
    border-radius: 9px;
    color: #203c60;
    text-decoration: none;
    font-size: 0.89rem;
    border: 1px solid transparent;
}

.theme-domino .category-side-nav a:hover,
.theme-domino .category-side-nav a.is-active {
    background: rgba(255, 184, 29, 0.2);
    color: #142c4d;
    border-color: rgba(255, 184, 29, 0.5);
}

.theme-domino #matbaa-intro p,
.theme-domino #matbaa-services .services-heading h2,
.theme-domino #matbaa-services .service-item h3,
.theme-domino #matbaa-categories .print-category-card h3,
.theme-domino .matbaa-category-page-layout h3,
.theme-domino .matbaa-category-page-layout p,
.theme-domino .matbaa-category-page-layout .category-side-nav a,
.theme-domino .matbaa-category-page-layout .category-side-nav h4 {
    font-family: var(--font-base);
    font-weight: 300;
}

.theme-domino .matbaa-category-page-layout .matbaa-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.theme-domino .matbaa-category-page-layout .matbaa-category-card.is-active {
    border-color: rgba(255, 184, 29, 0.55);
    box-shadow: 0 14px 28px rgba(20, 44, 77, 0.12);
}

.theme-domino .matbaa-category-page-layout .matbaa-category-card h3 {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.45;
    color: var(--secondary);
}

@media (max-width: 900px) {
    .theme-domino .category-page-layout {
        grid-template-columns: 1fr;
    }

    .theme-domino .category-side-nav {
        position: static;
    }
}

@media (max-width: 900px) {
    .theme-domino .category-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .theme-domino .category-product-grid {
        grid-template-columns: 1fr;
    }

    .theme-domino .matbaa-category-page-layout .matbaa-category-grid {
        grid-template-columns: 1fr;
    }

    .theme-domino .product-image-lightbox {
        padding: 12px;
    }

    .theme-domino .product-image-lightbox-panel,
    .theme-domino .product-image-lightbox-figure {
        max-height: calc(100dvh - 24px);
    }

    .theme-domino .product-image-lightbox-panel img {
        max-height: calc(100dvh - 102px);
    }

    .theme-domino .product-image-lightbox-nav {
        width: 42px;
        height: 54px;
    }

    .theme-domino .product-image-lightbox-nav--prev {
        left: 4px;
    }

    .theme-domino .product-image-lightbox-nav--next {
        right: 4px;
    }

    .theme-domino .product-image-lightbox-figure figcaption {
        gap: 10px;
        margin-top: 8px;
        padding: 9px 11px;
    }
}

.theme-domino .site-footer {
    background: #142c4d;
    color: #fff;
}

.theme-domino .site-footer h4,
.theme-domino .site-footer h5,
.theme-domino .site-footer p,
.theme-domino .site-footer a,
.theme-domino .footer-bottom {
    color: #fff;
}

.theme-domino .site-footer h4,
.theme-domino .site-footer h5 {
    color: #ffb81d;
}

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

.theme-domino .site-footer h5 {
    margin: 0 0 7px;
    font-size: 0.92rem;
    line-height: 1.24;
}

.theme-domino .footer-links a {
    font-size: 0.86rem;
    line-height: 1.34;
}

.theme-domino .footer-slogan {
    margin-top: 12px;
    font-weight: 600;
}

.theme-domino .footer-brand-note {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.82rem;
    line-height: 1.42;
    font-weight: 300;
    max-width: 280px;
}

.theme-domino .footer-address-list p {
    margin: 0 0 4px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.84rem;
    line-height: 1.42;
}

.theme-domino .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.28);
}

.theme-domino .cookie-manage-link {
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 0.86rem;
    font-weight: 300;
    padding: 0;
}

.theme-domino .cookie-manage-link:hover {
    color: #ffb81d;
}

.theme-domino .cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    padding: 14px 18px;
    background: rgba(20, 44, 77, 0.96);
    border-top: 1px solid rgba(255, 184, 29, 0.35);
    backdrop-filter: blur(6px);
}

.theme-domino .cookie-consent-shell {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.theme-domino .cookie-consent-copy h5 {
    margin: 0 0 4px;
    color: #ffb81d;
    font-weight: 400;
    font-size: 1rem;
}

.theme-domino .cookie-consent-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    line-height: 1.45;
}

.theme-domino .cookie-consent-actions {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.theme-domino .cookie-consent-actions .btn {
    min-height: 36px;
    font-size: 0.84rem;
    padding: 8px 12px;
}

.theme-domino .cookie-preferences {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: grid;
    place-items: center;
    background: rgba(7, 17, 28, 0.54);
    padding: 16px;
}

.theme-domino .cookie-preferences-panel {
    width: min(100%, 720px);
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(20, 44, 77, 0.14);
    box-shadow: 0 18px 40px rgba(10, 20, 35, 0.24);
    padding: 18px;
}

.theme-domino .cookie-preferences-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.theme-domino .cookie-preferences-head h5 {
    margin: 0;
    color: #142c4d;
    font-size: 1.08rem;
    font-weight: 400;
}

.theme-domino .cookie-close-btn {
    border: 0;
    background: transparent;
    color: #142c4d;
    font-size: 1.35rem;
    line-height: 1;
    padding: 0 4px;
}

.theme-domino .cookie-preferences-text {
    margin: 0 0 12px;
    color: #345474;
    font-size: 0.9rem;
}

.theme-domino .cookie-options {
    display: grid;
    gap: 10px;
}

.theme-domino .cookie-option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(20, 44, 77, 0.12);
    border-radius: 12px;
    padding: 11px 12px;
}

.theme-domino .cookie-option strong {
    display: block;
    color: #142c4d;
    font-size: 0.94rem;
    font-weight: 400;
}

.theme-domino .cookie-option small {
    display: block;
    margin-top: 3px;
    color: #4a6685;
    font-size: 0.82rem;
    line-height: 1.4;
}

.theme-domino .cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: #ffb81d;
}

.theme-domino .cookie-preferences-actions {
    margin-top: 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.theme-domino .cookie-preferences-actions .btn {
    min-height: 36px;
    font-size: 0.84rem;
    padding: 8px 12px;
}

@media (max-width: 768px) {
    .theme-domino .cookie-consent-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .theme-domino .cookie-consent-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .theme-domino .cookie-preferences-actions {
        justify-content: flex-start;
    }

    .theme-domino .cookie-consent-actions .btn,
    .theme-domino .cookie-preferences-actions .btn {
        width: 100%;
    }
}

.theme-cb .header-shell {
    background: rgba(0, 0, 0, 0.34);
    border-color: rgba(255, 255, 255, 0.4);
}

.theme-cb .site-header.is-scrolled .header-shell {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(17, 17, 17, 0.14);
}

.theme-cb .hero-overlay {
    background: linear-gradient(115deg, rgba(0, 0, 0, 0.84), rgba(17, 17, 17, 0.56));
}

.theme-cb .btn-premium {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

.theme-cb .btn-ghost {
    border-color: rgba(255, 255, 255, 0.58);
}

.theme-cb .logo-mark {
    color: var(--secondary);
}

.theme-cb .icon-card {
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.theme-cb .icon-ring {
    border-color: rgba(174, 34, 32, 0.45);
}

.theme-cb .process-steps .icon-card {
    border-top-color: var(--secondary);
}

.theme-cb .right-nav-anchors a.is-active,
.theme-cb .right-nav-anchors a:hover {
    background: rgba(174, 34, 32, 0.12);
}

.theme-cb .cross-link .panel {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.97), rgba(45, 45, 45, 0.94));
}

.theme-cb .cta-shell {
    background: #111111;
}

.theme-cb .site-footer {
    background: #111111;
}

.theme-cb .site-footer,
.theme-cb .site-footer h4,
.theme-cb .site-footer h5,
.theme-cb .site-footer p,
.theme-cb .site-footer a {
    color: #fff;
}

.product-search-wrap {
    max-width: 460px;
}

.product-search-input {
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 17, 0.18);
    padding: 12px 18px;
}

.product-search-empty {
    color: #7f1d1d;
    margin-top: 16px;
    font-weight: 600;
}

.public-pagination-stable-grid {
    align-content: start;
    min-height: var(--public-pagination-grid-min-height, auto);
}

.theme-domino .products-category-grid.public-pagination-stable-grid,
.theme-domino .category-product-grid.public-pagination-stable-grid,
.theme-domino .print-pack-track.public-pagination-stable-grid {
    --public-pagination-grid-min-height: 1080px;
}

.theme-domino .print-category-grid.public-pagination-stable-grid {
    --public-pagination-grid-min-height: 960px;
}

.theme-domino .products-category-grid.public-pagination-stable-grid--matbaa-categories {
    --public-pagination-grid-min-height: 1080px;
}

.public-pagination-stable-grid--bootstrap-product {
    --public-pagination-grid-min-height: 1120px;
}

.public-pagination-stable-grid--feature {
    --public-pagination-grid-min-height: 920px;
}

.public-pagination-stable-grid--gallery {
    --public-pagination-grid-min-height: 980px;
}

.public-pagination-stable-grid--process {
    --public-pagination-grid-min-height: 760px;
}

@media (max-width: 991px) and (min-width: 769px) {
    .public-pagination-stable-grid--bootstrap-product {
        --public-pagination-grid-min-height: 2160px;
    }

    .public-pagination-stable-grid--feature,
    .public-pagination-stable-grid--process {
        --public-pagination-grid-min-height: 1500px;
    }

    .public-pagination-stable-grid--gallery {
        --public-pagination-grid-min-height: 1860px;
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    .theme-domino .category-product-grid.public-pagination-stable-grid {
        --public-pagination-grid-min-height: 2040px;
    }
}

.public-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px;
}

.public-pagination-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(20, 44, 77, 0.18);
    border-radius: 999px;
    background: #fff;
    color: #142c4d;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.public-pagination-button:not(:disabled):hover,
.public-pagination-button.is-active {
    background: #142c4d;
    border-color: #142c4d;
    color: #fff;
}

.public-pagination-button:not(:disabled):hover {
    transform: translateY(-1px);
}

.public-pagination-button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.public-pagination-arrow svg {
    stroke-width: 2.4;
}

.theme-domino .public-loading-text {
    grid-column: 1 / -1;
    width: 100%;
    margin: 0;
    color: #3b5373;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
}

.product-specs {
    margin-top: 16px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    padding-top: 12px;
}

.product-spec-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.86rem;
    line-height: 1.5;
    padding: 4px 0;
}

.product-spec-row span {
    color: var(--muted);
}

.product-spec-row strong {
    color: var(--ink);
    text-align: right;
}

.related-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 8px;
}

.related-track::-webkit-scrollbar {
    height: 8px;
}

.related-track::-webkit-scrollbar-thumb {
    background: rgba(17, 17, 17, 0.18);
    border-radius: 999px;
}

.related-square {
    flex: 0 0 200px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.1);
    box-shadow: var(--shadow-card);
    padding: 12px;
}

.related-square img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 12px;
}

.related-square h4 {
    margin: 10px 0 0;
    font-size: 0.96rem;
}

.gallery-tile,
.gift-card {
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 16px;
    height: 100%;
}

.gallery-tile img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
}

.gallery-tile h4 {
    margin: 12px 0 0;
    font-size: 1rem;
}

.gift-card i {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.gift-card h3 {
    margin: 12px 0 8px;
    font-size: 1.05rem;
}

.gift-card p {
    margin: 0;
    color: var(--muted);
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

.admin-wrap {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 300px 1fr;
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 184, 29, 0.22), transparent 45%),
        linear-gradient(180deg, #f7f9fc 0%, #eef2f7 100%);
}

.admin-sidebar {
    background: linear-gradient(180deg, #142c4d 0%, #1c3d68 100%);
    color: rgba(255, 255, 255, 0.92);
    padding: 26px 18px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    height: 100vh;
    position: sticky;
    top: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.admin-brand-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #ffb81d;
    color: #142c4d;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 10px 18px rgba(8, 16, 30, 0.26);
}

.admin-brand-title {
    color: #fff;
    margin: 0;
    font-family: var(--font-base);
    font-size: 1.05rem;
    font-weight: 700;
}

.admin-brand-subtitle {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
}

.admin-sidebar .form-select {
    background-color: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.admin-sidebar .form-select option {
    color: #142c4d;
}

.admin-sidebar .form-select:focus {
    border-color: #ffb81d;
    box-shadow: 0 0 0 0.2rem rgba(255, 184, 29, 0.28);
}

.admin-preview-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 8px;
    border-radius: 12px;
    padding: 9px 12px;
    font-size: 0.84rem;
    font-weight: 700;
    background: #ffb81d;
    color: #142c4d;
    border: 1px solid rgba(255, 184, 29, 0.9);
    transition: 0.2s ease;
}

.admin-preview-link:hover {
    background: #ffd068;
    color: #10233e;
}

.admin-nav-heading {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.58);
    margin: 16px 0 10px;
}

.admin-nav-section {
    margin-bottom: 6px;
}

.admin-nav-section-toggle {
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    padding: 7px 8px;
    margin: 10px 0 6px;
    text-transform: none;
    letter-spacing: 0.03em;
    font-size: 0.78rem;
}

.admin-nav-section-toggle:hover {
    background: rgba(255, 255, 255, 0.07);
}

.admin-nav-heading-main {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.admin-nav-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.92);
}

.admin-nav-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.admin-nav-section-toggle[aria-expanded="true"] .admin-nav-chevron,
.admin-nav-section-toggle.is-open .admin-nav-chevron {
    transform: rotate(180deg);
}

.admin-menu {
    margin-bottom: 4px;
}

.admin-menu-dashboard {
    margin-bottom: 8px;
}

.admin-menu a {
    display: block;
    padding: 9px 10px;
    border-radius: 12px;
    margin-bottom: 5px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid transparent;
    transition: 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-menu a.is-active,
.admin-menu a:hover {
    background: rgba(255, 184, 29, 0.18);
    border-color: rgba(255, 184, 29, 0.56);
    color: #fffdf7;
}

.admin-sidebar-logout {
    margin-top: auto;
    width: 100%;
    border: 1px solid rgba(239, 68, 68, 0.72);
    background: rgba(239, 68, 68, 0.18);
    color: #ffe4e6;
    border-radius: 12px;
    padding: 10px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    transition: 0.2s ease;
}

.admin-sidebar-logout:hover {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
}

.admin-main {
    padding: 28px 30px 34px;
}

.admin-topbar {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(20, 44, 77, 0.1);
    box-shadow: 0 12px 28px rgba(20, 44, 77, 0.08);
    padding: 16px 18px;
    margin-bottom: 22px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.admin-page-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 800;
    color: #142c4d;
}

.admin-page-note {
    margin: 2px 0 0;
    color: #4d617e;
    font-size: 0.9rem;
}

.admin-status-pill {
    background: rgba(20, 44, 77, 0.08);
    color: #193862;
    border: 1px solid rgba(20, 44, 77, 0.24);
    border-radius: 999px;
    font-size: 0.78rem;
    padding: 6px 11px;
    font-weight: 700;
}

.admin-grid-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.admin-stat-card {
    background: #fff;
    border: 1px solid rgba(20, 44, 77, 0.1);
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(20, 44, 77, 0.07);
    padding: 17px;
}

.admin-stat-card h4 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: #142c4d;
}

.admin-stat-card p {
    margin: 4px 0 0;
    color: #4e6380;
    font-size: 0.9rem;
}

.admin-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.admin-checklist li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 22px;
    color: #1b2e49;
}

.admin-checklist li::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ffb81d;
    position: absolute;
    left: 0;
    top: 0.55em;
}

.admin-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(20, 44, 77, 0.1);
    box-shadow: 0 12px 26px rgba(20, 44, 77, 0.07);
    padding: 20px 22px;
    margin-bottom: 20px;
}

.admin-help-text {
    color: #4e6380;
    font-size: 0.92rem;
}

.admin-main .form-label {
    font-weight: 700;
    color: #193862;
    font-size: 0.88rem;
}

.admin-main .form-control,
.admin-main .form-select {
    border-radius: 12px;
    border-color: rgba(20, 44, 77, 0.18);
    color: #142c4d;
}

.admin-main .form-control:focus,
.admin-main .form-select:focus {
    border-color: #ffb81d;
    box-shadow: 0 0 0 0.2rem rgba(255, 184, 29, 0.24);
}

.admin-table {
    margin-bottom: 0;
}

.admin-table thead th {
    border-bottom-width: 1px;
    border-bottom-color: rgba(20, 44, 77, 0.2);
    font-size: 0.86rem;
    color: #4b5f7c;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.admin-table td {
    vertical-align: middle;
    color: #1a2f4a;
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}

.admin-badge-ok {
    background: rgba(5, 150, 105, 0.12);
    color: #047857;
    border: 1px solid rgba(5, 150, 105, 0.26);
}

.admin-badge-info {
    background: rgba(20, 44, 77, 0.12);
    color: #1e3c64;
    border: 1px solid rgba(20, 44, 77, 0.26);
}

.admin-badge-warn {
    background: rgba(255, 184, 29, 0.18);
    color: #7a5700;
    border: 1px solid rgba(255, 184, 29, 0.38);
}

.admin-actions-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.admin-action-link {
    border: 1px solid rgba(20, 44, 77, 0.18);
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #16365f;
    transition: 0.2s ease;
    background: #fff;
}

.admin-action-link:hover {
    border-color: rgba(20, 44, 77, 0.34);
    background: rgba(20, 44, 77, 0.05);
    color: #102748;
}

.admin-palette {
    display: grid;
    gap: 10px;
}

.admin-palette-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(20, 44, 77, 0.12);
    border-radius: 12px;
    padding: 9px 10px;
}

.admin-swatch {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    flex: 0 0 auto;
}

.admin-detail-grid {
    display: grid;
    gap: 10px;
}

.admin-json-input {
    font-family: "Consolas", "Courier New", monospace;
    font-size: 0.86rem;
    min-height: 420px;
}

.admin-drop-zone {
    border: 1px dashed rgba(20, 44, 77, 0.3);
    border-radius: 12px;
    padding: 10px;
    background: #f9fbff;
}

.admin-drop-zone.is-dragover {
    border-color: #ffb81d;
    background: rgba(255, 184, 29, 0.12);
}

.btn-admin-primary,
.btn-admin-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    padding: 10px 18px;
    border: 1px solid transparent;
}

.btn-admin-primary {
    background: #142c4d;
    color: #fff;
    border-color: #142c4d;
}

.btn-admin-primary:hover {
    background: #1e3e68;
    border-color: #1e3e68;
    color: #fff;
}

.btn-admin-secondary {
    background: #fff;
    color: #142c4d;
    border-color: rgba(20, 44, 77, 0.26);
}

.btn-admin-secondary:hover {
    border-color: #142c4d;
    color: #142c4d;
    background: rgba(20, 44, 77, 0.05);
}

@keyframes spinRing {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes floatIcon {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes homeServiceSprite {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(var(--sprite-end, -88.8889%));
    }
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }

    .header-shell {
        grid-template-columns: 1fr auto;
        min-height: 86px;
    }

    .brand-logo {
        position: absolute;
        left: 50%;
        transform: translate(-50%, 20px);
        width: 160px;
        min-height: 92px;
    }

    .site-header.is-scrolled .brand-logo {
        transform: translate(-50%, 12px) scale(0.84);
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-lang {
        display: none;
    }

    .mobile-panel {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .mobile-panel.is-open {
        max-height: 520px;
    }

    .mobile-inner {
        margin-top: 10px;
        background: rgba(255, 255, 255, 0.96);
        border-radius: 16px;
        padding: 16px;
        box-shadow: var(--shadow-card);
    }

    .mobile-link {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 9px 0;
        font-weight: 600;
        color: var(--ink);
        border-bottom: 1px solid rgba(15, 36, 51, 0.08);
    }

    .mobile-link:last-of-type {
        border-bottom: 0;
    }

    .mobile-submenu {
        margin: 2px 0 8px 14px;
        border-left: 2px solid rgba(17, 17, 17, 0.14);
        padding-left: 10px;
    }

    .mobile-submenu-link {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 0.9rem;
        color: var(--muted);
        padding: 6px 0;
    }

    .hero {
        min-height: 88vh;
    }

    .hero-content {
        padding-top: 96px;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .right-nav-anchors {
        position: static;
    }

    .admin-wrap {
        grid-template-columns: 1fr;
    }

    .admin-grid-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .machine-step {
        grid-template-columns: 58px 1fr;
    }

    .theme-domino .header-topbar {
        display: block;
    }

    .theme-domino .header-topbar-inner {
        min-height: 34px;
        padding-block: 5px;
        gap: 6px 12px;
        flex-wrap: wrap;
    }

    .theme-domino .header-contact-links {
        flex: 1 1 auto;
        min-width: 0;
        gap: 7px;
        flex-wrap: wrap;
        white-space: normal;
        font-size: 0.72rem;
        line-height: 1.2;
    }

    .theme-domino .header-contact-links .sep {
        display: none;
    }

    .theme-domino .header-topbar-lang {
        flex: 0 0 auto;
    }

    .theme-domino .header-topbar-lang .lang-chip {
        font-size: 0.72rem;
        padding: 0 7px;
    }

    .theme-domino .site-header {
        border-bottom-color: rgba(20, 44, 77, 0.14);
    }

    .theme-domino .header-shell {
        min-height: 74px;
        padding: 0 6px;
        grid-template-columns: 1fr auto;
    }

    .theme-domino .brand-logo {
        position: static;
        width: auto;
        min-height: auto;
        transform: none;
    }

    .theme-domino .logo-image {
        width: 158px;
        height: 64px;
        max-width: 158px;
        max-height: 64px;
        object-fit: cover;
        object-position: center 60%;
    }

    .theme-domino .site-header.is-scrolled .brand-logo {
        transform: none;
    }

    .theme-domino .mobile-inner {
        margin-top: 0;
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid rgba(20, 44, 77, 0.08);
    }

    .theme-domino .service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .theme-domino .category-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .theme-domino .references-visual-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .theme-domino .contact-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .theme-domino .contact-breadcrumb-layout {
        min-height: 128px;
    }

    .theme-domino .contact-breadcrumb-highlight {
        width: min(100%, 720px);
    }

    .theme-domino .home-product-highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .theme-domino .home-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .theme-domino .home-step-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .theme-domino .home-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .theme-domino .domino-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .theme-domino .page-anchor-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-video-media {
        display: none;
    }

    .hero-fallback {
        display: block;
    }

    .section {
        padding: 76px 0;
    }

    .cta-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-main {
        padding: 20px 14px;
    }

    .admin-grid-stats {
        grid-template-columns: 1fr;
    }

    .admin-actions-row {
        grid-template-columns: 1fr;
    }

    .machine-step {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .theme-domino .page-breadcrumb-hero {
        padding-top: 148px;
        padding-bottom: 76px;
    }

    .theme-domino .center-intro-card {
        max-width: 100%;
        margin: -46px auto 22px;
    }

    .theme-domino .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .theme-domino .products-category-grid,
    .theme-domino .print-category-grid,
    .theme-domino .print-pack-track,
    .theme-domino .category-product-grid,
    .theme-domino .step-grid,
    .theme-domino .domino-footer-grid {
        grid-template-columns: 1fr;
    }

    .theme-domino .references-visual-grid {
        grid-template-columns: 1fr;
    }

    .public-pagination-stable-grid {
        min-height: auto;
    }

    .theme-domino .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .theme-domino .contact-map-grid {
        grid-template-columns: 1fr;
    }

    .theme-domino .contact-map-embed {
        height: 260px;
    }

    .theme-domino .contact-breadcrumb-highlight {
        position: static;
        inset: auto;
        display: block;
        padding: 0;
        margin-top: 10px;
        font-size: 1rem;
    }

    .theme-domino .home-breadcrumb-hero {
        --domino-main-menu-hero-height: 520px;
    }

    .theme-domino .home-intro-card h2 {
        font-size: 1.45rem;
    }

    .theme-domino .home-intro-feature-grid,
    .theme-domino .home-product-highlight-grid,
    .theme-domino .home-service-grid,
    .theme-domino .home-step-grid,
    .theme-domino .home-metric-grid {
        grid-template-columns: 1fr;
    }
}

.domino-services-section {
    padding: 90px 20px 75px;
    background: #ffffff;
}

.domino-services-section .services-container {
    max-width: 1240px;
    margin: 0 auto;
}

.domino-services-section .services-heading {
    text-align: center;
    margin-bottom: 80px;
}

.domino-services-section .services-heading h2 {
    margin: 0;
    font-family: "Elms Sans", sans-serif;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 500;
    letter-spacing: 8px;
    color: #142C4D;
}

.domino-services-section .services-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin-top: 42px;
}

.domino-services-section .services-divider span {
    display: block;
    width: 185px;
    height: 2px;
    background: #2f3b3b;
}

.domino-services-section .services-divider i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2f3b3b;
    display: block;
}

.domino-services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: start;
    gap: 38px;
}

.domino-services-section .service-item {
    text-align: center;
}

.domino-services-section .service-icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 34px;
    color: #4b5a57;
    display: flex;
    align-items: center;
    justify-content: center;
}

.domino-services-section .service-icon svg {
    width: 100%;
    height: 100%;
}

.domino-services-section .service-item h3 {
    margin: 0;
    font-family: "Elms Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 5px;
    color: #111111;
    line-height: 1.5;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .domino-services-section .services-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 60px;
    }

    .domino-services-section .service-item h3 {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .domino-services-section {
        padding: 70px 18px 60px;
    }

    .domino-services-section .services-heading {
        margin-bottom: 55px;
    }

    .domino-services-section .services-heading h2 {
        letter-spacing: 5px;
        font-size: 34px;
    }

    .domino-services-section .services-divider {
        gap: 20px;
        margin-top: 30px;
    }

    .domino-services-section .services-divider span {
        width: 95px;
    }

    .domino-services-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 28px;
    }

    .domino-services-section .service-icon {
        width: 76px;
        height: 76px;
        margin-bottom: 24px;
    }

    .domino-services-section .service-item h3 {
        font-size: 13px;
        letter-spacing: 3px;
    }
}

@media (max-width: 480px) {
    .domino-services-section .services-grid {
        grid-template-columns: 1fr;
    }

    .domino-services-section .services-divider span {
        width: 70px;
    }
}

.theme-domino .uretim-intro-card {
    max-width: 900px;
    text-align: center;
}

.theme-domino .uretim-intro-card h2 {
    margin: 0 0 14px;
    color: #142c4d;
    font-size: clamp(1.35rem, 2.9vw, 2.25rem);
    line-height: 1.28;
    font-weight: 300;
}

.theme-domino .uretim-intro-card .home-intro-title-accent {
    color: #ffb81d;
    font-weight: 300;
}

.theme-domino .uretim-intro-card p + p {
    margin-top: 12px;
}

.theme-domino .matbaa-content-section,
.theme-domino .uretim-content-section {
    padding-bottom: 0;
}

.theme-domino .uretim-step-card {
    padding: 16px;
    overflow: visible;
}

.theme-domino .uretim-step-media {
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.theme-domino .uretim-step-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.theme-domino .uretim-step-content {
    padding: 0 0 8px;
}

.theme-domino .home-card-skeleton {
    pointer-events: none;
}

.theme-domino .home-skeleton-block,
.theme-domino .home-skeleton-icon,
.theme-domino .home-skeleton-line {
    display: block;
    background: linear-gradient(100deg, rgba(20, 44, 77, 0.08) 20%, rgba(20, 44, 77, 0.16) 40%, rgba(20, 44, 77, 0.08) 60%);
    background-size: 220% 100%;
    animation: domino-skeleton-shimmer 1.4s ease-in-out infinite;
}

.theme-domino .home-skeleton-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 14px;
    border-radius: 12px;
}

.theme-domino .home-skeleton-line {
    width: 100%;
    height: 12px;
    margin: 10px 0 0;
    border-radius: 999px;
}

.theme-domino .home-skeleton-line--title {
    width: 72%;
    height: 16px;
}

.theme-domino .home-skeleton-line--short {
    width: 48%;
}

@keyframes domino-skeleton-shimmer {
    to {
        background-position-x: -220%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .theme-domino .home-skeleton-block,
    .theme-domino .home-skeleton-icon,
    .theme-domino .home-skeleton-line {
        animation: none;
    }
}

.theme-domino .uretim-step-card .step-no {
    margin-bottom: 10px;
    font-size: 1.55rem;
    font-weight: 300;
    color: #ffb81d;
}

.theme-domino .matbaa-top-cards {
    margin-top: 34px;
}

.theme-domino #matbaa-categories {
    margin-bottom: 42px;
}

.theme-domino #matbaa-categories .home-thin-title-wrap {
    margin-bottom: 18px;
}

.theme-domino #uretim-steps .uretim-step-content h3,
.theme-domino .matbaa-top-cards .uretim-step-content h3,
.theme-domino .matbaa-machine-visual-card .uretim-step-content h3,
.theme-domino .home-print-house-section .uretim-step-content h3,
.theme-domino .home-production-section .uretim-step-content h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
    font-weight: 300;
    color: var(--secondary);
    line-height: 1.4;
}

.theme-domino .matbaa-top-cards .uretim-step-content p,
.theme-domino .matbaa-machine-visual-card .uretim-step-content p,
.theme-domino .home-print-house-section .uretim-step-content p {
    margin: 0;
    font-weight: 300;
    color: #3b5373;
    font-size: 1.02rem;
    line-height: 1.66;
}

.theme-domino .home-production-section .uretim-step-content p {
    margin: 0;
    font-weight: 300;
    color: #3b5373;
    font-size: 1.02rem;
    line-height: 1.66;
}

.theme-domino .uretim-process-section {
    margin-top: 34px;
    padding-top: 36px;
}

.theme-domino .process-strip {
    padding-bottom: 28px;
}

.theme-domino .uretim-process-shell {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.theme-domino .uretim-process-heading {
    margin-bottom: 16px;
}

.theme-domino .uretim-process-section .uretim-process-heading h2 {
    margin: 0;
    color: var(--secondary);
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    font-weight: 300;
    letter-spacing: 0;
    text-transform: none;
}

.theme-domino .uretim-process-section .services-divider {
    display: none;
}

.theme-domino .uretim-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.theme-domino .uretim-process-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(20, 44, 77, 0.12);
    box-shadow: 0 12px 26px rgba(20, 44, 77, 0.08);
    padding: 22px 20px 20px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.theme-domino .uretim-process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 184, 29, 0.55);
    box-shadow: 0 18px 34px rgba(20, 44, 77, 0.14);
}

.theme-domino .uretim-process-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #ffd56d 0%, #ffb81d 60%, #f09b00 100%);
    color: #142C4D;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 10px 20px rgba(255, 184, 29, 0.28);
    animation: uretimIconPulse 3.4s ease-in-out infinite;
}

.theme-domino .uretim-process-icon svg {
    width: 34px;
    height: 34px;
}

.theme-domino .uretim-process-icon .process-icon-image {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.feature-card i .feature-card-icon-image {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.theme-domino .uretim-process-card h3 {
    margin: 0 0 11px;
    color: var(--secondary);
    font-size: 1.08rem;
    line-height: 1.32;
}

.theme-domino .uretim-process-card p {
    margin: 0;
    color: #365574;
    font-size: 1rem;
    line-height: 1.66;
}

.theme-domino .domino-services-section .services-heading h2 {
    color: #FFB81D;
    font-family: "Elms Sans", sans-serif;
    font-weight: 300;
    letter-spacing: 9px;
}

.theme-domino .domino-services-section .services-divider span,
.theme-domino .domino-services-section .services-divider i {
    background: #142C4D;
}

.theme-domino .domino-services-section .service-icon {
    color: #142C4D;
    transform-origin: center;
}

.theme-domino .domino-services-section .service-item:nth-child(2) .service-icon {
    animation-delay: 0.2s;
}

.theme-domino .domino-services-section .service-item:nth-child(3) .service-icon {
    animation-delay: 0.4s;
}

.theme-domino .domino-services-section .service-item:nth-child(4) .service-icon {
    animation-delay: 0.6s;
}

.theme-domino .domino-services-section .service-item:nth-child(5) .service-icon {
    animation-delay: 0.8s;
}

.theme-domino .domino-services-section .service-item:hover .service-icon {
    transform: translateY(-4px) scale(1.04);
}

.domino-services-section .service-icon.service-icon-sprite {
    display: block;
    position: relative;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid rgba(20, 44, 77, 0.12);
    overflow: hidden;
}

.domino-services-section .service-icon-sprite .service-icon-sprite-strip {
    width: 100%;
    max-width: none;
    height: calc(var(--sprite-frames, 9) * 100%);
    display: block;
    object-fit: cover;
    object-position: top center;
    animation-name: homeServiceSprite;
    animation-duration: 3.2s;
    animation-timing-function: steps(8, end);
    animation-iteration-count: infinite;
    animation-play-state: paused;
    will-change: transform;
}

.domino-services-section .service-item:hover .service-icon-sprite .service-icon-sprite-strip,
.domino-services-section .service-item:focus-within .service-icon-sprite .service-icon-sprite-strip {
    animation-play-state: running;
}

.theme-domino .domino-services-section .service-item h3 {
    color: #142C4D;
    font-family: "Elms Sans", sans-serif;
    font-weight: 300;
    letter-spacing: 4px;
}

.theme-domino #matbaa-categories .section-title {
    text-align: center;
}

.theme-domino #matbaa-categories .section-title h2 {
    color: #FFB81D;
    font-family: "Elms Sans", sans-serif;
    font-weight: 300;
    letter-spacing: 7px;
}

.theme-domino .matbaa-machine-park {
    margin-top: 42px;
    padding: 0 0 34px;
}

.theme-domino .matbaa-machine-park-shell {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.theme-domino .matbaa-machine-park .section-title {
    max-width: 860px;
    margin: 0 0 24px;
    text-align: left;
}

.theme-domino #uretim-machine-park .section-title {
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.theme-domino .matbaa-machine-park .section-title h2 {
    margin: 0;
    color: #FFB81D;
    font-family: "Elms Sans", sans-serif;
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.15;
    text-align: left;
}

.theme-domino .matbaa-machine-park .section-title p {
    margin: 0;
    max-width: 760px;
    color: #3b5373;
    text-align: left;
    font-size: 1.03rem;
    line-height: 1.64;
}

.theme-domino .matbaa-machine-card-grid {
    align-items: stretch;
}

.theme-domino .matbaa-machine-layout {
    max-width: 100%;
    margin: 0 auto;
}

.theme-domino .matbaa-machine-layout.no-gallery {
    max-width: 860px;
}

.theme-domino .matbaa-machine-stage-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.theme-domino .matbaa-machine-flow {
    min-width: 0;
}

.theme-domino .matbaa-machine-flow-main {
    min-width: 0;
}

.theme-domino .matbaa-machine-flow-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
    gap: clamp(18px, 3vw, 32px);
    align-items: start;
    padding: 0 0 24px;
    margin: 0 0 24px;
    border-bottom: 1px solid rgba(20, 44, 77, 0.12);
}

.theme-domino .matbaa-machine-flow-section.no-gallery {
    grid-template-columns: minmax(0, 1fr);
}

.theme-domino .matbaa-machine-flow-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.theme-domino .matbaa-machine-flow-head {
    margin-bottom: 14px;
}

.theme-domino .matbaa-machine-flow-head h3 {
    margin: 0 0 8px;
    color: #142C4D;
    font-size: clamp(1.2rem, 1.7vw, 1.55rem);
    line-height: 1.25;
    font-weight: 500;
}

.theme-domino .matbaa-machine-flow-head p,
.theme-domino .matbaa-machine-flow-description,
.theme-domino .matbaa-machine-flow-step p,
.theme-domino .matbaa-machine-flow-empty {
    margin: 0;
    color: #3f5a7d;
    font-size: 1.03rem;
    line-height: 1.72;
}

.theme-domino .matbaa-machine-flow-groups,
.theme-domino .matbaa-machine-flow-dispatch-list {
    display: grid;
    gap: 18px;
}

.theme-domino .matbaa-machine-flow-group h4,
.theme-domino .matbaa-machine-flow-step h4 {
    margin: 0 0 8px;
    color: #142C4D;
    font-size: 1.03rem;
    line-height: 1.36;
    font-weight: 600;
}

.theme-domino .matbaa-machine-flow-description {
    margin-bottom: 8px;
}

.theme-domino .matbaa-machine-equipment-list {
    display: grid;
    gap: 5px;
    margin: 0;
    padding-left: 20px;
}

.theme-domino .matbaa-machine-equipment-list li {
    color: #2f4f74;
    font-size: 1.02rem;
    line-height: 1.65;
    padding-left: 2px;
}

.theme-domino .matbaa-machine-equipment-list li::marker {
    color: #FFB81D;
}

.theme-domino .matbaa-machine-tab-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.theme-domino .matbaa-machine-tab {
    appearance: none;
    border: 1px solid rgba(20, 44, 77, 0.16);
    background: #fff;
    border-radius: 14px;
    padding: 12px 12px 11px;
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 10px;
    align-items: center;
    box-shadow: 0 8px 18px rgba(20, 44, 77, 0.06);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.theme-domino .matbaa-machine-tab:hover {
    border-color: rgba(20, 44, 77, 0.3);
    transform: translateX(2px);
}

.theme-domino .matbaa-machine-tab.is-active {
    border-color: rgba(20, 44, 77, 0.44);
    background: linear-gradient(140deg, rgba(20, 44, 77, 0.05), rgba(255, 184, 29, 0.12));
    box-shadow: 0 14px 28px rgba(20, 44, 77, 0.12);
}

.theme-domino .matbaa-machine-tab-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #142C4D;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.theme-domino .matbaa-machine-stage-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #142C4D;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    flex: 0 0 auto;
}

.theme-domino .matbaa-machine-tab-copy {
    min-width: 0;
}

.theme-domino .matbaa-machine-tab-title {
    display: block;
    color: #142C4D;
    font-size: 0.94rem;
    line-height: 1.3;
    font-weight: 500;
}

.theme-domino .matbaa-machine-tab-copy small {
    display: block;
    margin-top: 3px;
    color: #436083;
    font-size: 0.78rem;
    line-height: 1.35;
}

.theme-domino .matbaa-machine-tab-meta {
    grid-column: 2;
    display: inline-flex;
    width: fit-content;
    margin-top: 2px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255, 184, 29, 0.24);
    color: #1f446f;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.theme-domino .matbaa-machine-content {
    min-width: 0;
}

.theme-domino .matbaa-machine-panel {
    background: linear-gradient(145deg, #ffffff 0%, #f7faff 100%);
    border: 1px solid rgba(20, 44, 77, 0.12);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 12px 30px rgba(20, 44, 77, 0.08);
}

.theme-domino .matbaa-machine-panel[hidden] {
    display: none;
}

.theme-domino .matbaa-machine-accordion-trigger {
    display: none;
}

.theme-domino .matbaa-machine-stage-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.theme-domino .matbaa-machine-stage-copy h3 {
    margin: 0 0 4px;
    color: #142C4D;
    font-size: 1.16rem;
    font-weight: 500;
}

.theme-domino .matbaa-machine-stage-copy p {
    margin: 0;
    color: #3f5a7d;
    font-size: 0.9rem;
}

.theme-domino .matbaa-machine-park-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.theme-domino .matbaa-machine-card-description {
    margin: -2px 0 10px;
    color: #415f84;
    font-size: 0.88rem;
    line-height: 1.55;
}

.theme-domino .matbaa-dispatch-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.theme-domino .matbaa-dispatch-step {
    border: 1px solid rgba(20, 44, 77, 0.14);
    border-radius: 12px;
    padding: 12px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(20, 44, 77, 0.07);
}

.theme-domino .matbaa-dispatch-step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #142C4D;
    color: #fff;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.theme-domino .matbaa-dispatch-step h4 {
    margin: 10px 0 6px;
    color: #142C4D;
    font-size: 0.95rem;
    font-weight: 500;
}

.theme-domino .matbaa-dispatch-step p {
    margin: 0;
    color: #415f84;
    font-size: 0.85rem;
    line-height: 1.55;
}

.theme-domino .matbaa-machine-card {
    --machine-accent: #ffb81d;
    --machine-accent-soft: rgba(255, 184, 29, 0.2);
    position: relative;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(20, 44, 77, 0.1);
    box-shadow: 0 10px 24px rgba(20, 44, 77, 0.08);
    padding: 18px 18px 16px;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.theme-domino .matbaa-machine-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--machine-accent) 0%, #ffd66f 55%, #ffe9b5 100%);
}

.theme-domino .matbaa-machine-card:hover {
    transform: translateY(-5px);
    border-color: rgba(20, 44, 77, 0.22);
    box-shadow: 0 18px 34px rgba(20, 44, 77, 0.13);
}

.theme-domino .matbaa-machine-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.theme-domino .matbaa-machine-head-copy {
    min-width: 0;
    width: 100%;
}

.theme-domino .matbaa-machine-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(140deg, #ffffff 0%, #f6f9ff 100%);
    border: 1px solid rgba(20, 44, 77, 0.12);
    color: #142C4D;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px var(--machine-accent-soft);
    flex: 0 0 auto;
    transition: transform 0.25s ease;
}

.theme-domino .matbaa-machine-icon svg {
    width: 26px;
    height: 26px;
}

.theme-domino .matbaa-machine-card:hover .matbaa-machine-icon {
    transform: translateY(-2px);
}

.theme-domino .matbaa-machine-card.machine-icon-offset {
    --machine-accent: #ffb81d;
    --machine-accent-soft: rgba(255, 184, 29, 0.24);
}

.theme-domino .matbaa-machine-card.machine-icon-lamination {
    --machine-accent: #2c7be5;
    --machine-accent-soft: rgba(44, 123, 229, 0.2);
}

.theme-domino .matbaa-machine-card.machine-icon-cutting {
    --machine-accent: #00a57a;
    --machine-accent-soft: rgba(0, 165, 122, 0.2);
}

.theme-domino .matbaa-machine-card.machine-icon-gluing {
    --machine-accent: #3f6ea8;
    --machine-accent-soft: rgba(63, 110, 168, 0.2);
}

.theme-domino .matbaa-machine-card.machine-icon-ctp {
    --machine-accent: #f06c3e;
    --machine-accent-soft: rgba(240, 108, 62, 0.2);
}

.theme-domino .matbaa-machine-card h4 {
    margin: 3px 0 8px;
    color: #142C4D;
    font-size: 1rem;
    line-height: 1.36;
    font-weight: 500;
}

.theme-domino .matbaa-machine-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.theme-domino .matbaa-machine-meta {
    display: inline-flex;
    margin: 0;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--machine-accent-soft);
    color: #1f446f;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.theme-domino .matbaa-machine-badge {
    display: inline-flex;
    margin: 0;
    padding: 3px 9px;
    border-radius: 999px;
    border: 1px solid rgba(20, 44, 77, 0.14);
    color: #2a4c73;
    background: #fff;
    font-size: 0.71rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.theme-domino .matbaa-machine-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.theme-domino .matbaa-machine-card li {
    position: relative;
    color: #2f4f74;
    line-height: 1.6;
    font-size: 0.94rem;
    padding-left: 17px;
}

.theme-domino .matbaa-machine-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--machine-accent);
    box-shadow: 0 0 0 3px var(--machine-accent-soft);
}

.theme-domino .matbaa-machine-gallery {
    min-width: 0;
    width: min(100%, 460px);
    justify-self: end;
    align-self: end;
}

.theme-domino .matbaa-machine-gallery-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.theme-domino .matbaa-machine-gallery-card {
    margin: 0;
    border: 1px solid rgba(20, 44, 77, 0.1);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(20, 44, 77, 0.08);
    padding: 14px;
    min-width: 0;
}

.theme-domino .matbaa-machine-gallery-card.is-image-only {
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.theme-domino .matbaa-machine-gallery-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    object-fit: cover;
}

.theme-domino .matbaa-machine-gallery-card.is-image-only img {
    border-radius: 22px;
}

.theme-domino .matbaa-machine-gallery-card figcaption {
    display: grid;
    gap: 5px;
    padding: 12px 2px 2px;
}

.theme-domino .matbaa-machine-gallery-card figcaption strong {
    color: #142C4D;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.35;
}

.theme-domino .matbaa-machine-gallery-card figcaption span {
    color: #476487;
    font-size: 0.84rem;
    line-height: 1.5;
}

@keyframes dominoIconFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes uretimIconPulse {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-3px) scale(1.03);
    }
}

@media (prefers-reduced-motion: reduce) {
    .theme-domino .domino-services-section .service-icon {
        animation: none;
        transform: none;
    }

    .theme-domino .uretim-process-icon {
        animation: none;
    }

    .theme-domino .uretim-process-card {
        transition: none;
    }

    .theme-domino .uretim-process-card:hover {
        transform: none;
    }

    .theme-domino .home-service-card:hover .home-service-icon-wrap,
    .theme-domino .home-service-card:hover .home-service-sprite {
        transform: none;
    }

    .theme-domino .matbaa-machine-card,
    .theme-domino .matbaa-machine-icon {
        transition: none;
    }

    .theme-domino .matbaa-machine-card:hover {
        transform: none;
    }

    .theme-domino .matbaa-machine-card:hover .matbaa-machine-icon {
        transform: none;
    }
}

@media (max-width: 1024px) {
    .theme-domino .matbaa-machine-flow-section {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
        gap: 16px;
    }

    .theme-domino .matbaa-machine-park-grid,
    .theme-domino .matbaa-dispatch-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .theme-domino .uretim-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .theme-domino .uretim-process-icon {
        width: 62px;
        height: 62px;
    }

    .theme-domino .uretim-process-icon svg {
        width: 32px;
        height: 32px;
    }

    .theme-domino .domino-services-section .services-heading h2,
    .theme-domino #matbaa-categories .section-title h2 {
        letter-spacing: 4px;
    }

    .theme-domino .matbaa-machine-flow-section,
    .theme-domino .matbaa-machine-flow-section.has-gallery {
        grid-template-columns: 1fr;
    }

    .theme-domino .matbaa-machine-gallery-stack {
        display: grid;
        grid-template-columns: 1fr;
    }

    .theme-domino .matbaa-machine-gallery {
        width: 100%;
        justify-self: stretch;
        align-self: start;
    }

    .theme-domino .matbaa-machine-panel {
        padding: 0;
        border-radius: 14px;
        box-shadow: none;
        background: #fff;
        margin-bottom: 10px;
    }

    .theme-domino .matbaa-machine-layout.is-mobile .matbaa-machine-panel[hidden] {
        display: block;
    }

    .theme-domino .matbaa-machine-accordion-trigger {
        display: flex;
        width: 100%;
        align-items: center;
        gap: 10px;
        border: 0;
        border-radius: 14px;
        background: #fff;
        border: 1px solid rgba(20, 44, 77, 0.16);
        padding: 11px 12px;
        text-align: left;
    }

    .theme-domino .matbaa-machine-accordion-copy {
        display: grid;
        gap: 2px;
    }

    .theme-domino .matbaa-machine-accordion-title {
        color: #142C4D;
        font-size: 0.94rem;
        font-weight: 500;
        line-height: 1.3;
    }

    .theme-domino .matbaa-machine-accordion-meta {
        color: #3f5c81;
        font-size: 0.77rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        font-weight: 600;
    }

    .theme-domino .matbaa-machine-panel-body {
        padding: 12px;
    }

    .theme-domino .matbaa-machine-panel-body[hidden] {
        display: none;
    }

    .theme-domino .matbaa-machine-stage-head {
        margin-bottom: 10px;
    }

    .theme-domino .matbaa-machine-stage-copy h3 {
        font-size: 1.02rem;
    }
}

@media (max-width: 640px) {
    .theme-domino .matbaa-machine-gallery-stack {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .theme-domino .uretim-step-content {
        padding: 18px 18px 20px;
    }

    .theme-domino .uretim-process-grid {
        grid-template-columns: 1fr;
    }

    .theme-domino .uretim-process-card {
        padding: 20px 16px 18px;
    }

    .theme-domino .matbaa-machine-park-shell {
        border-radius: 0;
        padding: 0;
    }

    .theme-domino .matbaa-machine-card {
        padding: 16px 14px 14px;
    }

    .theme-domino .matbaa-machine-accordion-trigger {
        padding: 10px 11px;
    }

    .theme-domino .matbaa-machine-panel-body {
        padding: 11px;
    }
}

/* =======================
   Admin UI (Domino only)
   UI-only mock screens
======================= */
.admin-app {
    background: #f3f6fb;
    color: #142c4d;
}

body.admin-app {
    scrollbar-width: thin;
    scrollbar-color: rgba(20, 44, 77, 0.38) transparent;
}

body.admin-app::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

body.admin-app::-webkit-scrollbar-track {
    background: transparent;
}

body.admin-app::-webkit-scrollbar-thumb {
    background: rgba(20, 44, 77, 0.34);
    border-radius: 999px;
}

body.admin-app::-webkit-scrollbar-thumb:hover {
    background: rgba(20, 44, 77, 0.5);
}

.admin-sidebar {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 184, 29, 0.72) rgba(255, 255, 255, 0.08);
}

.admin-sidebar::-webkit-scrollbar {
    width: 6px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 184, 29, 0.72);
    border-radius: 999px;
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
    background: #ffb81d;
}

.admin-table-wrap {
    scrollbar-width: thin;
    scrollbar-color: rgba(20, 44, 77, 0.36) rgba(20, 44, 77, 0.08);
}

.admin-table-wrap::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

.admin-table-wrap::-webkit-scrollbar-track {
    background: rgba(20, 44, 77, 0.08);
    border-radius: 999px;
}

.admin-table-wrap::-webkit-scrollbar-thumb {
    background: rgba(20, 44, 77, 0.36);
    border-radius: 999px;
}

.admin-table-wrap::-webkit-scrollbar-thumb:hover {
    background: rgba(20, 44, 77, 0.52);
}


.admin-topbar-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-status-pill-secondary {
    background: #fff;
    color: #28486f;
    border: 1px solid rgba(20, 44, 77, 0.16);
}

.admin-meta-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.admin-meta-pill {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(20, 44, 77, 0.12);
    font-size: 0.76rem;
    color: #36587f;
}

.admin-demo-note {
    border-left: 4px solid #ffb81d;
    background: #fffdf8;
}

.admin-form-grid {
    display: grid;
    gap: 10px;
}

.admin-gallery-input-list {
    display: grid;
    gap: 10px;
}

.admin-gallery-input-row {
    display: grid;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(20, 44, 77, 0.12);
    border-radius: 12px;
    background: #fff;
}

.admin-gallery-remove-btn {
    justify-self: end;
}

.admin-form-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-form-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-form-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-form-block {
    border: 1px solid rgba(20, 44, 77, 0.12);
    border-radius: 12px;
    padding: 10px;
    background: #fff;
}

.admin-form-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.admin-lang-tabs {
    display: inline-flex;
    gap: 4px;
}

.admin-lang-tab {
    border: 1px solid rgba(20, 44, 77, 0.15);
    background: #fff;
    color: #375a82;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 8px;
}

.admin-lang-tab.is-active {
    background: #142c4d;
    border-color: #142c4d;
    color: #fff;
}

.admin-lang-panel[hidden] {
    display: none;
}

.admin-section-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 6px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: rgba(20, 44, 77, 0.05);
    border: 1px solid rgba(20, 44, 77, 0.08);
}

.admin-section-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: #36587f;
    font-size: 0.86rem;
    font-weight: 700;
    transition: 0.18s ease;
}

.admin-section-tab:hover {
    background: rgba(255, 255, 255, 0.72);
    color: #142c4d;
}

.admin-section-tab.is-active {
    background: #fff;
    color: #142c4d;
    border-color: rgba(20, 44, 77, 0.12);
    box-shadow: 0 8px 18px rgba(20, 44, 77, 0.08);
}

.admin-section-tab em {
    min-width: 22px;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(255, 184, 29, 0.2);
    color: #6d4d00;
    font-style: normal;
    font-size: 0.72rem;
    line-height: 1.35;
}

.admin-tab-panel[hidden] {
    display: none;
}

.admin-tab-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.admin-tab-panel-head h4 {
    margin-bottom: 0;
}

.admin-tab-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.admin-tab-actions .btn,
.admin-form-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.admin-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(20, 44, 77, 0.1);
}

.admin-table-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 14px;
    padding: 12px;
    border: 1px solid rgba(20, 44, 77, 0.1);
    border-radius: 14px;
    background: #fff;
}

.admin-table-pagination-info {
    color: #4e6380;
    font-size: 0.88rem;
}

.admin-table-pagination-info strong {
    color: #142c4d;
}

.admin-table-pagination-controls,
.admin-pagination-buttons {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.admin-page-size-select {
    width: auto;
    min-width: 112px;
    min-height: 36px;
    font-size: 0.84rem;
}

.admin-pagination-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(20, 44, 77, 0.14);
    background: #fff;
    color: #28486f;
    transition: 0.18s ease;
}

.admin-pagination-button:not(:disabled):hover {
    background: rgba(255, 184, 29, 0.18);
    border-color: rgba(255, 184, 29, 0.42);
    color: #142c4d;
}

.admin-pagination-button:disabled {
    opacity: 0.42;
    cursor: not-allowed;
}

.admin-pagination-current {
    min-width: 58px;
    color: #28486f;
    font-size: 0.84rem;
    font-weight: 700;
    text-align: center;
}

.admin-switch {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: #2f4f74;
    font-weight: 600;
}

.admin-switch input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.admin-split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(300px, 1fr);
    gap: 14px;
    align-items: start;
}

.admin-split-list,
.admin-split-form {
    min-width: 0;
}

.admin-inline-actions {
    display: inline-flex;
    gap: 6px;
    flex-wrap: wrap;
}

.admin-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.admin-chip {
    display: inline-flex;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(20, 44, 77, 0.08);
    color: #2f5178;
    font-size: 0.72rem;
    font-weight: 700;
}

.admin-thumb {
    display: inline-flex;
    width: 44px;
    height: 30px;
    border-radius: 7px;
    background: linear-gradient(140deg, #ffe7a8, #ffd369);
}

.admin-repeat-list {
    display: grid;
    gap: 10px;
}

.admin-repeat-item {
    border: 1px solid rgba(20, 44, 77, 0.12);
    border-radius: 12px;
    background: #fff;
    padding: 10px;
}

.admin-repeat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.admin-tag-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.admin-tag {
    display: inline-flex;
    background: rgba(255, 184, 29, 0.22);
    color: #1f446f;
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 0.73rem;
}

.admin-mini-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-mini-card {
    border: 1px solid rgba(20, 44, 77, 0.12);
    border-radius: 12px;
    background: #fff;
    padding: 11px;
}

.admin-mini-add-card {
    min-height: 280px;
    width: 100%;
    border-style: dashed;
    color: #48668a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.admin-mini-add-card:hover,
.admin-mini-add-card:focus-visible {
    border-color: rgba(31, 68, 111, 0.36);
    background: #f8fbff;
    color: #1f446f;
}

.admin-mini-add-card strong {
    color: #142c4d;
    font-size: 0.95rem;
}

.admin-mini-add-card small {
    color: #6680a0;
    font-size: 0.78rem;
}

.admin-mini-add-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #eef5ff;
    color: #1f446f;
    display: grid;
    place-items: center;
}

.admin-mini-card h5 {
    margin: 8px 0 5px;
    font-size: 0.95rem;
    color: #142c4d;
}

.admin-mini-card p {
    margin: 0;
    color: #48668a;
    font-size: 0.83rem;
}

.admin-preview-stack {
    display: grid;
    gap: 10px;
}

.admin-preview-card {
    border: 1px solid rgba(20, 44, 77, 0.12);
    border-radius: 12px;
    padding: 10px;
    background: #fff;
}

.admin-preview-card h5 {
    margin: 0 0 4px;
    color: #142c4d;
    font-size: 0.9rem;
}

.admin-preview-card p {
    margin: 0;
    color: #48688d;
    font-size: 0.82rem;
}

.admin-empty-state {
    border: 1px dashed rgba(20, 44, 77, 0.2);
    border-radius: 12px;
    padding: 12px;
    background: #fafdff;
}

.admin-empty-state p {
    margin: 0 0 6px;
    color: #446386;
}

.admin-warning-list {
    display: grid;
    gap: 8px;
}

.admin-warning-list article {
    border: 1px solid rgba(255, 184, 29, 0.45);
    border-radius: 10px;
    background: #fffdf6;
    padding: 9px 10px;
    color: #7a5a18;
    font-size: 0.85rem;
}

.admin-sortable-list {
    display: grid;
    gap: 8px;
}

.admin-sortable-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto auto auto;
    gap: 8px;
    align-items: center;
    border: 1px solid rgba(20, 44, 77, 0.12);
    border-radius: 11px;
    background: #fff;
    padding: 9px;
}

.admin-drag-handle {
    color: #5a789a;
    font-size: 1rem;
}

.admin-sortable-main {
    min-width: 0;
    display: grid;
}

.admin-sortable-main strong {
    color: #142c4d;
    font-size: 0.86rem;
}

.admin-sortable-main small {
    color: #537294;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.admin-check-card {
    border: 1px solid rgba(20, 44, 77, 0.12);
    border-radius: 12px;
    padding: 11px;
    background: #fff;
}

.admin-check-card h5 {
    margin: 0 0 6px;
    font-size: 0.88rem;
    color: #1f446f;
}

.admin-check-card p {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #142c4d;
}

.admin-option-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-option-check-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    cursor: pointer;
}

.admin-option-check-card input {
    margin-top: 3px;
}

.admin-option-check-card strong,
.admin-option-check-card small {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-option-check-card strong {
    color: #142c4d;
    font-size: 0.86rem;
}

.admin-option-check-card small {
    color: #5a789a;
    font-size: 0.74rem;
}

.admin-search-input {
    max-width: 360px;
}

.admin-media-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.admin-media-card {
    border: 1px solid rgba(20, 44, 77, 0.13);
    border-radius: 12px;
    background: #fff;
    padding: 10px;
}

.admin-media-card-preview {
    height: 100px;
    border-radius: 8px;
    background: linear-gradient(140deg, rgba(20, 44, 77, 0.16), rgba(255, 184, 29, 0.3));
    margin-bottom: 8px;
}

.admin-media-card h5 {
    font-size: 0.89rem;
    margin: 0 0 6px;
    color: #142c4d;
}

.admin-media-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
}

.admin-media-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 35, 0.45);
}

.admin-media-modal__panel {
    position: relative;
    z-index: 1;
    width: min(860px, calc(100% - 24px));
    margin: 28px auto;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(20, 44, 77, 0.16);
    box-shadow: 0 20px 60px rgba(20, 44, 77, 0.26);
    padding: 12px;
}

.admin-media-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(20, 44, 77, 0.12);
}

.admin-media-modal__head h3 {
    margin: 0;
    font-size: 1rem;
    color: #142c4d;
}

.admin-media-modal__body {
    padding-top: 10px;
}

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

.admin-media-item {
    border: 1px solid rgba(20, 44, 77, 0.12);
    border-radius: 10px;
    background: #fff;
    padding: 8px;
    text-align: left;
    display: grid;
    gap: 6px;
}

.admin-media-item img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}

.admin-media-item span {
    color: #2d5079;
    font-size: 0.78rem;
}

.admin-toast {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 500;
    background: #142c4d;
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    box-shadow: 0 14px 30px rgba(20, 44, 77, 0.22);
    transform: translateY(8px);
    opacity: 0;
    transition: 0.18s ease;
    font-size: 0.82rem;
}

.admin-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.admin-modal-open {
    overflow: hidden;
}

@media (max-width: 1200px) {
    .admin-split-layout {
        grid-template-columns: 1fr;
    }

    .admin-media-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-check-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .admin-form-grid-2,
    .admin-form-grid-3,
    .admin-form-grid-4,
    .admin-mini-grid,
    .admin-check-grid,
    .admin-media-cards,
    .admin-media-grid {
        grid-template-columns: 1fr;
    }

    .admin-section-tabs,
    .admin-tab-panel-head,
    .admin-table-footer,
    .admin-table-pagination-controls {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-section-tab,
    .admin-tab-actions,
    .admin-pagination-buttons,
    .admin-page-size-select {
        width: 100%;
    }

    .admin-pagination-buttons {
        justify-content: space-between;
    }

    .admin-pagination-current {
        flex: 1;
    }

    .admin-sortable-item {
        grid-template-columns: 1fr;
    }

    .admin-sortable-main small {
        white-space: normal;
    }
}

.admin-service-icon-input {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
}

.admin-service-icon-preview {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(20, 44, 77, 0.14);
    background: radial-gradient(circle at 35% 30%, #ffd56d 0%, #ffb81d 62%, #f09b00 100%);
    color: #142c4d;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 16px rgba(255, 184, 29, 0.22);
    overflow: hidden;
}

.admin-service-icon-preview.is-empty {
    background: rgba(20, 44, 77, 0.04);
    box-shadow: none;
}

.admin-service-icon-preview svg {
    width: 26px;
    height: 26px;
}

.admin-service-icon-preview .process-icon-image {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

.admin-service-icon-controls {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.admin-muted-text {
    color: #66809e;
    font-size: 0.76rem;
    font-weight: 600;
}

@media (max-width: 480px) {
    .admin-service-icon-input {
        grid-template-columns: 1fr;
    }

    .admin-service-icon-preview {
        width: 44px;
        height: 44px;
    }
}

/* Multi-site admin switcher */
.admin-site-switcher {
    margin: 10px 0 12px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.admin-site-switcher label {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.admin-app[data-admin-site="minimalist"] .admin-wrap {
    background:
        radial-gradient(circle at 9% 0%, rgba(243, 118, 47, 0.2), transparent 42%),
        linear-gradient(180deg, #f7f6f4 0%, #ece9e5 100%);
}

.admin-app[data-admin-site="minimalist"] .admin-sidebar {
    background: linear-gradient(180deg, #231f20 0%, #3a3435 100%);
    border-right-color: rgba(243, 118, 47, 0.2);
}

.admin-app[data-admin-site="minimalist"] .admin-brand-badge,
.admin-app[data-admin-site="minimalist"] .admin-preview-link,
.admin-app[data-admin-site="minimalist"] .btn-admin-primary {
    background: #f3762f;
    border-color: #f3762f;
    color: #ffffff;
}

.admin-app[data-admin-site="minimalist"] .admin-preview-link:hover,
.admin-app[data-admin-site="minimalist"] .btn-admin-primary:hover {
    background: #231f20;
    border-color: #231f20;
    color: #ffffff;
}

.admin-app[data-admin-site="minimalist"] .admin-sidebar .form-select:focus {
    border-color: #f3762f;
    box-shadow: 0 0 0 0.2rem rgba(243, 118, 47, 0.25);
}

.admin-app[data-admin-site="minimalist"] .admin-sidebar .form-select option {
    color: #231f20;
}

.admin-app[data-admin-site="minimalist"] .admin-menu a.is-active,
.admin-app[data-admin-site="minimalist"] .admin-menu a:hover {
    background: rgba(243, 118, 47, 0.18);
    border-color: rgba(243, 118, 47, 0.58);
    color: #ffffff;
}

.admin-app[data-admin-site="minimalist"] .admin-topbar,
.admin-app[data-admin-site="minimalist"] .admin-card,
.admin-app[data-admin-site="minimalist"] .admin-stat-card {
    border-color: rgba(35, 31, 32, 0.1);
    box-shadow: 0 12px 28px rgba(35, 31, 32, 0.08);
}

.admin-app[data-admin-site="minimalist"] .admin-page-title,
.admin-app[data-admin-site="minimalist"] .admin-card-title,
.admin-app[data-admin-site="minimalist"] .admin-stat-value {
    color: #231f20;
}

.admin-app[data-admin-site="minimalist"] .admin-status-pill,
.admin-app[data-admin-site="minimalist"] .admin-stat-icon {
    background: rgba(243, 118, 47, 0.12);
    border-color: rgba(243, 118, 47, 0.28);
    color: #c24f19;
}
