:root {
    --orange: #ff6a00;
    --anthracite: #2b2f33;
    --anthracite-dark: #2b2f33;
    --light: #f9f4ee;
    --white: #ffffff;
    --gray: #eef0ef;
    --ink: #2b2f33;
    --muted: #687074;
    --line: rgba(43, 47, 51, 0.12);
    --shadow: 0 24px 80px rgba(43, 47, 51, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --plum: var(--anthracite);
    --plum-dark: var(--anthracite-dark);
    --cream: var(--light);
    --warm: #fffaf2;
}

* {
    box-sizing: border-box;
}

html {
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    position: relative;
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--cream);
}

@supports (overflow: clip) {

    html,
    body {
        overflow-x: clip;
    }
}

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

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

.topbar {
    position: relative;
    display: grid;
    min-height: 38px;
    place-items: center;
    overflow: hidden;
    padding: 0 18px;
    color: var(--white);
    background: var(--plum);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.topbar span {
    position: absolute;
    text-align: center;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.topbar span.is-active {
    opacity: 1;
    transform: translateY(0);
}

.header {
    position: sticky;
    top: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
    background: transparent;
}

.header>* {
    position: relative;
    z-index: 1;
}

.header::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 0;
    width: 100vw;
    content: "";
    background: var(--cream);
    transform: translateX(-50%);
}

.header::after {
    position: absolute;
    right: auto;
    bottom: 0;
    left: 50%;
    z-index: 0;
    width: 100vw;
    height: 1px;
    content: "";
    background: var(--line);
    transform: translateX(-50%);
    pointer-events: none;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    min-width: max-content;
}

.brand-logo img {
    display: block;
    width: 300px;
    height: auto;
    object-fit: contain;
}

.footer-brand img {
    width: 230px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.logo-mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--anthracite), var(--orange));
    border-radius: 14px;
    font-weight: 900;
    letter-spacing: -0.06em;
    box-shadow: 0 16px 36px rgba(84, 25, 38, 0.25);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-text strong {
    font-size: 18px;
    letter-spacing: -0.04em;
}

.logo-text small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    color: var(--muted);
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
}

.nav>a,
.nav-dropdown-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    color: var(--muted);
    transition: color 0.2s ease;
}

.nav a:hover,
.nav>a.active,
.nav-dropdown.active>.nav-dropdown-toggle,
.nav-dropdown-toggle:hover {
    color: var(--plum);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    gap: 0;
    padding: 0;
    font: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.nav-dropdown-menu {
    position: absolute;
    z-index: 60;
    top: calc(100% + 12px);
    left: 50%;
    display: grid;
    min-width: 210px;
    gap: 4px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    color: var(--muted);
    border-radius: 10px;
    white-space: nowrap;
}

.customer-menu {
    position: relative;
    margin: 0;
}

.customer-menu-toggle {
    gap: 6px;
}

.customer-menu-toggle span {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.14);
    color: var(--plum);
    font-size: 12px;
    font-weight: 900;
}

.customer-menu-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 80;
    display: grid;
    min-width: 230px;
    gap: 4px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.customer-menu.open .customer-menu-dropdown,
.customer-menu:focus-within .customer-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.customer-menu-summary {
    padding: 8px 10px 12px;
    border-bottom: 1px solid var(--line);
}

.customer-menu-summary b,
.customer-menu-summary small {
    display: block;
}

.customer-menu-summary b {
    color: var(--anthracite-dark);
    font-size: 14px;
}

.customer-menu-summary small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.customer-menu-dropdown a,
.customer-menu-dropdown button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    min-height: 40px;
    padding: 9px 10px;
    color: var(--anthracite);
    background: transparent;
    border: 0;
    border-radius: 10px;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.customer-menu-dropdown a:hover,
.customer-menu-dropdown button:hover {
    color: var(--white);
    background: var(--anthracite);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    color: var(--plum);
    background: rgba(232, 117, 37, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 14px;
    color: var(--plum);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
}

.cart-button b {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
    font-size: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
}

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

.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--orange), #ff8a2a);
    box-shadow: 0 18px 44px rgba(255, 106, 0, 0.24);
}

.button-secondary {
    color: var(--white);
    background: var(--plum);
    box-shadow: 0 18px 44px rgba(84, 25, 38, 0.22);
}

.button-ghost {
    color: var(--plum);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
}

.menu-button {
    display: none;
    width: 46px;
    height: 46px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--plum);
    border-radius: 10px;
}

.hero {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    gap: 48px;
    align-items: stretch;
    min-height: calc(100vh - 128px);
    padding-top: 58px;
    padding-bottom: 72px;
    overflow: visible;
}

.hero-bg-objects {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    z-index: 0;
    overflow: hidden;
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-bg-object {
    position: absolute;
    display: block;
    opacity: 0.24;
    will-change: transform;
}

.hero-bg-cube {
    top: 12%;
    left: 36%;
    width: 118px;
    height: 118px;
    background:
        linear-gradient(135deg, rgba(255, 106, 0, 0.42), rgba(255, 106, 0, 0.18)) top / 100% 50% no-repeat,
        linear-gradient(135deg, rgba(43, 47, 51, 0.18), rgba(43, 47, 51, 0.06)) bottom left / 50% 50% no-repeat,
        linear-gradient(135deg, rgba(255, 106, 0, 0.24), rgba(255, 106, 0, 0.08)) bottom right / 50% 50% no-repeat;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    animation: heroObjectFloat 16s ease-in-out infinite;
}

.hero-bg-frame {
    right: 4%;
    bottom: 11%;
    width: 170px;
    height: 118px;
    border: 14px solid rgba(43, 47, 51, 0.12);
    border-top-width: 22px;
    border-radius: 22px;
    transform: rotate(-10deg);
    animation: heroObjectDrift 18s ease-in-out infinite;
}

.hero-bg-filament {
    top: 18%;
    right: 8%;
    width: 138px;
    height: 138px;
    border: 16px solid rgba(255, 106, 0, 0.16);
    border-right-color: rgba(43, 47, 51, 0.12);
    border-radius: 50%;
    animation: heroObjectSpin 22s linear infinite;
}

.hero-bg-filament::after {
    position: absolute;
    right: -34px;
    bottom: 18px;
    width: 54px;
    height: 10px;
    content: "";
    background: rgba(255, 106, 0, 0.2);
    border-radius: 999px;
    transform: rotate(18deg);
}

.hero-bg-chip {
    bottom: 17%;
    left: 7%;
    width: 96px;
    height: 96px;
    background:
        linear-gradient(90deg, rgba(43, 47, 51, 0.18) 2px, transparent 2px) 0 0 / 18px 18px,
        rgba(43, 47, 51, 0.08);
    border: 2px solid rgba(43, 47, 51, 0.14);
    border-radius: 18px;
    transform: rotate(12deg);
    animation: heroObjectFloat 20s ease-in-out infinite reverse;
}

.hero-bg-cube-small {
    right: 31%;
    bottom: 7%;
    width: 72px;
    height: 72px;
    background:
        linear-gradient(135deg, rgba(255, 106, 0, 0.34), rgba(255, 106, 0, 0.12)) top / 100% 50% no-repeat,
        linear-gradient(135deg, rgba(43, 47, 51, 0.14), rgba(43, 47, 51, 0.04)) bottom left / 50% 50% no-repeat,
        linear-gradient(135deg, rgba(255, 106, 0, 0.22), rgba(255, 106, 0, 0.06)) bottom right / 50% 50% no-repeat;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    animation: heroObjectDrift 14s ease-in-out infinite reverse;
}

.hero-bg-ring-small {
    top: 62%;
    right: 2%;
    width: 78px;
    height: 78px;
    border: 10px solid rgba(43, 47, 51, 0.1);
    border-left-color: rgba(255, 106, 0, 0.2);
    border-radius: 50%;
    animation: heroObjectSpin 18s linear infinite reverse;
}

.hero-bg-nozzle {
    top: 38%;
    left: 16%;
    width: 74px;
    height: 92px;
    background:
        linear-gradient(135deg, rgba(43, 47, 51, 0.16), rgba(43, 47, 51, 0.06)) top / 100% 62% no-repeat,
        linear-gradient(135deg, rgba(255, 106, 0, 0.3), rgba(255, 106, 0, 0.08)) bottom / 70% 44% no-repeat;
    clip-path: polygon(16% 0, 84% 0, 84% 58%, 64% 58%, 50% 100%, 36% 58%, 16% 58%);
    transform: rotate(16deg);
    animation: heroObjectFloat 17s ease-in-out infinite;
}

.hero-bg-corner {
    top: 6%;
    left: 3%;
    width: 84px;
    height: 84px;
    background:
        linear-gradient(90deg, rgba(255, 106, 0, 0.26) 2px, transparent 2px) 0 0 / 16px 16px,
        linear-gradient(rgba(255, 106, 0, 0.26) 2px, transparent 2px) 0 0 / 16px 16px,
        rgba(255, 106, 0, 0.08);
    border: 2px solid rgba(255, 106, 0, 0.22);
    border-radius: 18px;
    transform: rotate(-14deg);
    animation: heroObjectDrift 19s ease-in-out infinite;
}

.hero-content,
.hero-visual {
    z-index: 1;
}

.hero-content {
    position: relative;
    display: flex;
    align-self: stretch;
    flex-direction: column;
    justify-content: center;
    min-height: 560px;
    padding-bottom: 70px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 14px;
    color: var(--plum);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.hero h1,
.section-heading h2,
.workshop-content h2,
.register-copy h2,
.corporate-card h2 {
    margin: 18px 0;
    color: var(--plum-dark);
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.94;
    letter-spacing: -0.075em;
}

.hero h1 {
    margin-bottom: 28px;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1;
}

.hero p,
.section-heading p,
.workshop-content p,
.register-copy p,
.corporate-card p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-detail-button {
    width: fit-content;
    margin-top: 28px;
}

.hero-content {
    transition: opacity 0.32s ease, transform 0.32s ease, filter 0.32s ease;
}

.hero .hero-content.is-changing {
    opacity: 0.24;
    transform: translateX(-18px);
}

.hero-stats {
    display: flex;
    gap: 12px;
    margin-top: 34px;
}

.hero-stats div {
    min-width: 126px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.hero-stats strong {
    display: block;
    color: var(--plum);
    font-size: 28px;
    letter-spacing: -0.05em;
}

.hero-stats span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.hero-slider-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    padding-top: 0;
}

.hero-slider-button {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--plum);
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero-slider-button:hover {
    color: var(--white);
    background: var(--orange);
    transform: translateY(-2px);
}

.hero-slider-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-slider-dots {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.hero-slider-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    background: rgba(43, 47, 51, 0.2);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: width 0.22s ease, background 0.22s ease;
}

.hero-slider-dot.active {
    width: 26px;
    background: var(--orange);
    border-radius: 999px;
}

.hero-visual {
    position: relative;
    display: grid;
    min-height: 560px;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(84, 25, 38, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(84, 25, 38, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 50% 45%, rgba(242, 106, 27, 0.18), transparent 22rem),
        rgba(255, 255, 255, 0.42);
    background-size: 42px 42px, 42px 42px, auto, auto;
    border: 1px solid var(--line);
    border-radius: 42px;
    box-shadow: var(--shadow);
}

.hero-image {
    display: block;
    width: min(58%, 360px);
    height: auto;
    object-fit: contain;
}

.hero-video {
    display: block;
    width: min(78%, 560px);
    max-height: 460px;
    border-radius: 24px;
    object-fit: contain;
}

.hero-visual[data-slide-theme="workshops"] {
    background:
        linear-gradient(90deg, rgba(43, 47, 51, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(43, 47, 51, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 42% 42%, rgba(43, 47, 51, 0.12), transparent 20rem),
        rgba(255, 255, 255, 0.42);
    background-size: 38px 38px, 38px 38px, auto, auto;
}

.hero-visual[data-slide-theme="custom"] {
    background:
        linear-gradient(90deg, rgba(255, 106, 0, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(255, 106, 0, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 58% 48%, rgba(255, 106, 0, 0.2), transparent 21rem),
        rgba(255, 255, 255, 0.42);
    background-size: 46px 46px, 46px 46px, auto, auto;
}

.printer-card {
    position: relative;
    width: min(78%, 410px);
    padding: 26px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: 34px;
    box-shadow: 0 30px 70px rgba(84, 25, 38, 0.18);
}

.printer-top,
.printer-base {
    height: 42px;
    background: linear-gradient(135deg, var(--plum), #7a2436);
    border-radius: 18px;
}

.printer-body {
    position: relative;
    height: 260px;
    margin: 16px 24px;
    overflow: hidden;
    border: 14px solid var(--plum);
    border-top: 0;
    border-radius: 0 0 26px 26px;
}

.print-head {
    position: absolute;
    z-index: 3;
    top: 34px;
    left: 50%;
    width: 102px;
    height: 40px;
    background: linear-gradient(135deg, var(--orange), #ff9b4a);
    border-radius: 14px;
    transform: translateX(-50%);
    animation: printMove 6.4s ease-in-out infinite;
}

.print-object {
    position: absolute;
    z-index: 1;
    bottom: 6px;
    left: 50%;
    width: 132px;
    height: 132px;
    transform: translateX(-50%);
    animation: printObjectReveal 6.4s ease-in-out infinite;
    pointer-events: none;
}

.print-object span {
    position: absolute;
    inset: 0;
    display: block;
    filter: drop-shadow(0 12px 18px rgba(43, 47, 51, 0.12));
}

.print-object span:nth-child(1) {
    background: rgba(255, 106, 0, 0.76);
    clip-path: polygon(50% 0, 100% 25%, 50% 50%, 0 25%);
}

.print-object span:nth-child(2) {
    background: rgba(255, 106, 0, 0.92);
    clip-path: polygon(100% 25%, 50% 50%, 50% 100%, 100% 75%);
}

.print-object span:nth-child(3) {
    background: rgba(255, 106, 0, 0.56);
    clip-path: polygon(0 25%, 50% 50%, 50% 100%, 0 75%);
}

.floating-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(84, 25, 38, 0.16);
}

.floating-card span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.floating-card strong {
    color: var(--plum);
    font-size: 18px;
    letter-spacing: -0.04em;
}

.card-one {
    top: 54px;
    right: 42px;
}

.card-two {
    bottom: 76px;
    left: 38px;
}

.card-three {
    right: 58px;
    bottom: 40px;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding-bottom: 76px;
}

.quick-card,
.product-card,
.event-card,
.process-card,
.why-card,
.corporate-card,
.form {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.quick-card {
    padding: 28px;
    border-radius: var(--radius-lg);
}

.quick-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--white);
    background: var(--plum);
    border-radius: 16px;
    font-weight: 900;
}

.quick-card h2,
.product-info h3,
.event-card h3,
.process-card h3,
.why-card h3 {
    margin: 18px 0 10px;
    color: var(--plum-dark);
    font-size: 22px;
    letter-spacing: -0.04em;
}

.quick-card p,
.product-info p,
.event-card p,
.process-card p,
.why-card p,
.faq-item p,
.footer p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.quick-card a,
.event-card a {
    display: inline-flex;
    margin-top: 18px;
    color: var(--orange);
    font-weight: 900;
}

.section {
    padding-top: 32px;
    padding-bottom: 82px;
}

.section-heading {
    display: grid;
    justify-items: center;
    margin-bottom: 34px;
    text-align: center;
}

.section-heading h2,
.workshop-content h2,
.register-copy h2,
.corporate-card h2 {
    max-width: 820px;
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.category {
    min-height: 42px;
    padding: 0 16px;
    color: var(--plum);
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}

.category.active {
    color: var(--white);
    background: var(--plum);
}

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

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

.product-card.hidden {
    display: none;
}

.product-image {
    display: block;
    height: 238px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 a {
    color: inherit;
}

.product-info span {
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
}

.product-footer strong {
    color: var(--plum);
    font-size: 24px;
    letter-spacing: 0;
}

.product-price,
.product-detail-price,
.cart-item-price {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
}

.product-price {
    flex-direction: column;
    gap: 3px;
    align-items: flex-start;
    line-height: 1.05;
}

.product-price.has-discount {
    min-width: 112px;
}

.product-price del,
.product-detail-price del,
.cart-item-price del {
    color: rgba(43, 47, 51, 0.48);
    font-size: 14px;
    font-weight: 500;
    text-decoration-thickness: 2px;
}

.product-price span {
    color: var(--plum);
    font-size: 27px;
    font-weight: 950;
}

.product-price b,
.product-detail-price b {
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--orange);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
}

.product-detail-page {
    padding-top: 54px;
    padding-bottom: 96px;
}

.product-back-link {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.product-detail-gallery,
.product-detail-info,
.product-detail-extra,
.product-detail-empty {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 50px rgba(43, 47, 51, 0.08);
}

.product-detail-gallery {
    position: sticky;
    top: 126px;
    padding: 18px;
}

.product-detail-viewer {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.product-zoom-trigger {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 20px;
    cursor: zoom-in;
}

.product-detail-image {
    min-height: 520px;
    border-radius: 20px;
    transition: filter 0.18s ease;
}

.product-zoom-trigger:hover .product-detail-image {
    filter: saturate(1.04);
}

.product-zoom-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    min-height: 34px;
    padding: 8px 12px;
    color: var(--white);
    background: rgba(43, 47, 51, 0.72);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(8px);
}

.product-gallery-nav,
.product-zoom-nav,
.product-zoom-close {
    display: inline-grid;
    place-items: center;
    color: var(--anthracite);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.product-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
}

.product-gallery-prev {
    left: 14px;
}

.product-gallery-next {
    right: 14px;
}

.product-gallery-nav:hover,
.product-zoom-nav:hover,
.product-zoom-close:hover {
    color: var(--white);
    background: var(--orange);
}

.product-gallery-nav svg,
.product-zoom-nav svg,
.product-zoom-close svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-gallery-thumbs {
    display: grid;
    grid-auto-columns: 76px;
    grid-auto-flow: column;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.product-gallery-thumb {
    width: 76px;
    height: 64px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
}

.product-gallery-thumb.active {
    border-color: var(--orange);
    box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.16);
}

.product-gallery-thumb span {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 7px;
}

.product-gallery-view-close {
    background-position: center 62%;
    background-size: 135%;
}

.product-gallery-view-angle {
    background-position: 34% 50%;
    background-size: 118%;
    filter: hue-rotate(-8deg) saturate(1.06);
}

.product-gallery-view-detail {
    background-position: 68% 48%;
    background-size: 150%;
    filter: contrast(1.05);
}

.product-gallery-view-top {
    background-position: center 24%;
    background-size: 112%;
    filter: brightness(1.03) saturate(0.94);
}

.product-zoom-modal {
    position: fixed;
    inset: 0;
    z-index: 240;
    display: grid;
    place-items: center;
    padding: 34px;
    background: rgba(43, 47, 51, 0.82);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.product-zoom-modal.open {
    opacity: 1;
    visibility: visible;
}

.product-zoom-image {
    --product-zoom-scale: 2.35;
    width: min(1100px, 86vw);
    height: min(760px, 78vh);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 24px;
    background: rgba(20, 22, 24, 0.92);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
    cursor: zoom-in;
    touch-action: none;
}

.product-zoom-image img {
    object-fit: contain;
    transform-origin: var(--product-zoom-x, 50%) var(--product-zoom-y, 50%);
    transition: transform 0.18s ease;
}

.product-zoom-image.is-zoomed {
    cursor: zoom-out;
}

.product-zoom-image.is-zoomed img {
    transform: scale(var(--product-zoom-scale));
}

.product-zoom-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
}

.product-zoom-nav {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
}

.product-zoom-prev {
    left: 28px;
}

.product-zoom-next {
    right: 28px;
}

.product-detail-info {
    display: grid;
    gap: 18px;
    padding: clamp(26px, 4vw, 44px);
}

.product-detail-info>span {
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-detail-info h1,
.product-detail-info h2 {
    margin: 0;
    color: var(--plum-dark);
    font-size: clamp(42px, 5vw, 70px);
    line-height: 0.98;
    letter-spacing: 0;
}

.product-detail-lead {
    margin: 0;
    color: rgba(43, 47, 51, 0.78);
    font-size: 19px;
    line-height: 1.65;
}

.product-detail-price {
    color: var(--orange);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1;
}

.product-detail-price span {
    color: var(--orange);
}

.product-detail-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.product-detail-meta div {
    min-height: 82px;
    padding: 14px;
    background: rgba(249, 244, 238, 0.72);
    border: 1px solid var(--line);
    border-radius: 18px;
}

.product-detail-meta span,
.product-detail-meta strong {
    display: block;
}

.product-detail-meta span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.product-detail-meta strong {
    margin-top: 6px;
    color: var(--plum-dark);
    font-size: 15px;
    line-height: 1.35;
    text-transform: capitalize;
}

.product-detail-info p:not(.product-detail-lead) {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.product-detail-accordion {
    display: grid;
    margin-top: 4px;
    border-top: 1px solid rgba(43, 47, 51, 0.16);
}

.product-accordion-item {
    border-bottom: 1px solid rgba(43, 47, 51, 0.16);
}

.product-accordion-item button {
    display: flex;
    width: 100%;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0;
    color: rgba(43, 47, 51, 0.78);
    background: transparent;
    border: 0;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

.product-accordion-item button b {
    position: relative;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
}

.product-accordion-item button b::before,
.product-accordion-item button b::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 1px;
    content: "";
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.product-accordion-item button b::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.product-accordion-item.open button {
    color: var(--plum-dark);
}

.product-accordion-item.open button b::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.product-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.24s ease;
}

.product-accordion-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.product-accordion-item.open .product-accordion-panel p {
    padding-bottom: 16px;
}

.product-customization {
    display: grid;
    gap: 16px;
    padding: 18px;
    background:
        radial-gradient(circle at right top, rgba(255, 106, 0, 0.12), transparent 12rem),
        rgba(255, 106, 0, 0.08);
    border: 1px solid rgba(255, 106, 0, 0.2);
    border-radius: 20px;
}

.product-customization-head {
    display: grid;
    gap: 6px;
}

.product-customization-head h3 {
    margin: 0;
    color: var(--plum-dark);
    font-size: 22px;
}

.product-customization-head p {
    margin: 0;
    color: rgba(43, 47, 51, 0.72);
    font-size: 14px;
    line-height: 1.55;
}

.product-customization-field {
    display: grid;
    gap: 8px;
}

.product-customization-field strong,
.product-customization-field span {
    color: var(--plum-dark);
    font-size: 13px;
    font-weight: 850;
}

.product-customization-field>input,
.product-customization-field>textarea {
    width: 100%;
    padding: 13px 14px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(43, 47, 51, 0.16);
    border-radius: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.product-customization-field textarea {
    resize: vertical;
}

.product-customization-field>input:focus,
.product-customization-field>textarea:focus {
    background: var(--white);
    border-color: rgba(255, 106, 0, 0.58);
    box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.1);
}

.product-color-options {
    display: grid;
    gap: 8px;
}

.product-variation-group {
    display: grid;
    gap: 8px;
}

.product-variation-group:not(:last-child) {
    margin-bottom: 8px;
}

.product-variation-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-color-option {
    cursor: pointer;
}

.product-color-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.product-color-option span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 13px;
    color: var(--anthracite);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(43, 47, 51, 0.14);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-color-option img {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 10px;
}

.product-color-option b {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.product-color-option input:checked+span {
    color: var(--white);
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 10px 22px rgba(255, 106, 0, 0.22);
}

.product-color-options.invalid {
    padding: 8px;
    border: 1px solid rgba(180, 35, 24, 0.48);
    border-radius: 16px;
}

.product-detail-add {
    width: fit-content;
}

.product-detail-extra {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
    padding: clamp(24px, 4vw, 36px);
}

.product-detail-extra h2,
.product-detail-empty h1 {
    margin: 0 0 16px;
    color: var(--plum-dark);
    font-size: clamp(24px, 3vw, 34px);
}

.product-detail-extra ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.7;
}

.product-detail-extra p,
.product-detail-empty p {
    margin: 0 0 20px;
    color: var(--muted);
    line-height: 1.7;
}

.product-detail-empty {
    margin: 64px auto;
    max-width: 720px;
    padding: clamp(28px, 5vw, 52px);
    text-align: center;
}

.add-cart {
    min-height: 38px;
    padding: 0 14px;
    color: var(--white);
    background: var(--plum);
    border: 0;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.page-banner {
    position: relative;
    display: grid;
    min-height: 250px;
    align-items: stretch;
    margin-top: 0;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(43, 47, 51, 0.94) 0%, rgba(43, 47, 51, 0.78) 46%, rgba(43, 47, 51, 0.3) 100%),
        radial-gradient(circle at 84% 26%, rgba(255, 106, 0, 0.34), transparent 18rem),
        var(--page-banner-image, url("assets/logo.png"));
    background-repeat: no-repeat;
    background-position: center, center, right 8% center;
    background-size: auto, auto, min(58vw, 720px) auto;
    box-shadow: var(--shadow);
}

.page-banner::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.34;
    pointer-events: none;
}

.product-detail-page-banner {
    background-position: center, center, center;
    background-size: auto, auto, cover;
}

.workshop-page-banner {
    background:
        linear-gradient(90deg, rgba(43, 47, 51, 0.94) 0%, rgba(43, 47, 51, 0.78) 46%, rgba(43, 47, 51, 0.34) 100%),
        radial-gradient(circle at 78% 30%, rgba(255, 106, 0, 0.34), transparent 18rem),
        var(--page-banner-image, url("assets/logo.png")),
        linear-gradient(135deg, rgba(255, 106, 0, 0.82), rgba(43, 47, 51, 0.88));
    background-repeat: no-repeat;
    background-position: center, center, right 8% center, center;
    background-size: auto, auto, min(58vw, 720px) auto, auto;
}

.calculator-page-banner {
    background:
        linear-gradient(90deg, rgba(43, 47, 51, 0.95) 0%, rgba(43, 47, 51, 0.78) 48%, rgba(43, 47, 51, 0.28) 100%),
        radial-gradient(circle at 78% 32%, rgba(255, 106, 0, 0.36), transparent 18rem),
        url("assets/logo.png"),
        linear-gradient(135deg, #2b2f33, #ff6a00);
    background-repeat: no-repeat;
    background-position: center, center, right 8% center, center;
    background-size: auto, auto, min(54vw, 680px) auto, auto;
}

.corporate-page-banner {
    background:
        linear-gradient(90deg, rgba(43, 47, 51, 0.95) 0%, rgba(43, 47, 51, 0.8) 46%, rgba(43, 47, 51, 0.26) 100%),
        radial-gradient(circle at 80% 30%, rgba(255, 106, 0, 0.32), transparent 18rem),
        url("assets/logo.png"),
        linear-gradient(135deg, #2b2f33, #6d7478);
    background-repeat: no-repeat;
    background-position: center, center, right 8% center, center;
    background-size: auto, auto, min(54vw, 680px) auto, auto;
}

.page-banner-inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: inherit;
    align-items: end;
    padding-top: 76px;
    padding-bottom: 58px;
}

.store-hero-copy {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.store-hero-copy h1 {
    max-width: 760px;
    margin: 0;
    color: var(--white);
    font-size: clamp(42px, 5.4vw, 76px);
    line-height: 0.96;
    letter-spacing: 0;
}

.store-hero-copy p {
    display: none;
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.65;
}

.workshop-listing-page,
.workshop-detail-page {
    padding-top: 54px;
    padding-bottom: 96px;
}

.workshop-listing-head {
    display: grid;
    gap: 10px;
    max-width: 760px;
    margin-bottom: 26px;
}

.workshop-listing-head span,
.workshop-program-card>div>span,
.workshop-detail-main>span {
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.workshop-listing-head h2 {
    margin: 0;
    color: var(--plum-dark);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: 0;
}

.workshop-program-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.workshop-program-card,
.workshop-detail-main,
.workshop-detail-card,
.workshop-gallery {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 50px rgba(43, 47, 51, 0.08);
}

.workshop-program-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 280px;
    overflow: hidden;
}

.workshop-program-visual {
    display: block;
    min-height: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.workshop-program-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.workshop-program-card>div {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 24px;
}

.workshop-program-card h3 {
    margin: 0;
    color: var(--plum-dark);
    font-size: 25px;
    line-height: 1.1;
}

.workshop-program-card h3 a {
    color: inherit;
}

.workshop-program-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.workshop-program-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.workshop-program-meta b {
    min-height: 28px;
    padding: 6px 10px;
    color: var(--anthracite);
    background: rgba(249, 244, 238, 0.82);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
}

.page-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 34px;
}

.page-pagination a,
.page-pagination span {
    display: inline-grid;
    min-width: 42px;
    height: 42px;
    place-items: center;
    color: var(--anthracite);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: 14px;
    font-size: 14px;
    font-weight: 900;
}

.page-pagination a {
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-pagination a:hover,
.page-pagination a.active {
    color: var(--white);
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.page-pagination .pagination-arrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.page-pagination .disabled {
    color: rgba(43, 47, 51, 0.34);
    pointer-events: none;
}

.workshop-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: stretch;
}

.workshop-detail-main,
.workshop-detail-card,
.workshop-gallery {
    padding: clamp(24px, 4vw, 38px);
}

.workshop-detail-main h2,
.workshop-gallery h2 {
    margin: 0 0 16px;
    color: var(--plum-dark);
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.05;
}

.workshop-detail-main h3 {
    margin: 22px 0 10px;
    color: var(--plum-dark);
    font-size: 22px;
}

.workshop-detail-main p,
.workshop-detail-main li {
    color: var(--muted);
    line-height: 1.75;
}

.workshop-detail-main ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.workshop-detail-main li {
    padding: 12px 14px;
    color: var(--plum-dark);
    background: rgba(255, 106, 0, 0.14);
    border: 1px solid rgba(255, 106, 0, 0.24);
    border-radius: 14px;
    font-weight: 500;
    line-height: 1.55;
}

.workshop-detail-side {
    display: grid;
    gap: 18px;
}

.workshop-detail-side,
.workshop-detail-card {
    min-height: 100%;
}

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

.workshop-detail-meta div {
    padding: 14px;
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 106, 0, 0.18);
    border-radius: 16px;
}

.workshop-detail-meta span,
.workshop-detail-meta strong {
    display: block;
}

.workshop-detail-meta span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.workshop-detail-meta strong {
    margin-top: 6px;
    color: var(--plum-dark);
    font-size: 16px;
}

.workshop-register-form {
    display: grid;
    gap: 14px;
}

.workshop-register-section {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 28px;
    margin-top: 24px;
    padding: clamp(24px, 4vw, 38px);
    background:
        radial-gradient(circle at right top, rgba(255, 106, 0, 0.12), transparent 18rem),
        rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 50px rgba(43, 47, 51, 0.08);
}

.workshop-register-copy {
    display: grid;
    align-content: start;
    gap: 12px;
}

.workshop-register-copy span {
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.workshop-register-copy h2 {
    margin: 0;
    color: var(--plum-dark);
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.05;
}

.workshop-register-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.workshop-register-form h3 {
    margin: 0;
    color: var(--plum-dark);
    font-size: 22px;
}

.workshop-register-form label {
    gap: 7px;
    font-size: 13px;
}

.workshop-register-form input,
.workshop-register-form textarea {
    padding: 13px 14px;
    border-radius: 14px;
}

.workshop-register-form textarea {
    min-height: 110px;
}

.workshop-register-form .button {
    width: 100%;
}

.workshop-register-form .form-success {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.workshop-gallery {
    margin-top: 24px;
    overflow: hidden;
}

.workshop-gallery-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.workshop-gallery-head h2 {
    margin: 0;
}

.workshop-gallery-controls {
    display: flex;
    gap: 8px;
}

.workshop-gallery-nav,
.workshop-gallery-lightbox-nav,
.workshop-gallery-lightbox-close {
    display: inline-grid;
    place-items: center;
    color: var(--anthracite);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.workshop-gallery-nav {
    width: 42px;
    height: 42px;
}

.workshop-gallery-nav:hover,
.workshop-gallery-lightbox-nav:hover,
.workshop-gallery-lightbox-close:hover {
    color: var(--white);
    background: var(--orange);
    transform: translateY(-1px);
}

.workshop-gallery-nav svg,
.workshop-gallery-lightbox-nav svg,
.workshop-gallery-lightbox-close svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.workshop-gallery-viewport {
    overflow: hidden;
}

.workshop-gallery-track {
    display: flex;
    gap: 12px;
    transition: transform 0.42s ease;
    will-change: transform;
}

.workshop-gallery-item {
    flex: 0 0 calc((100% - 36px) / 4);
    min-width: 0;
    padding: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 18px;
    cursor: zoom-in;
}

.workshop-gallery-image {
    display: block;
    min-height: 190px;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.22s ease, filter 0.22s ease;
}

.workshop-gallery-image img {
    width: 100%;
    height: 190px;
    display: block;
    object-fit: cover;
}

.workshop-gallery-item:hover .workshop-gallery-image {
    transform: scale(1.035);
    filter: saturate(1.06);
}

.workshop-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 280;
    display: grid;
    place-items: center;
    padding: 2.5vh 2.5vw;
    background: rgba(43, 47, 51, 0.84);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.workshop-gallery-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.workshop-gallery-lightbox-image {
    width: min(var(--gallery-image-width, 1120px), 95vw, calc(95vh * var(--gallery-image-ratio, 1.47)));
    aspect-ratio: var(--gallery-image-ratio, 1.47);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.workshop-gallery-lightbox-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.workshop-gallery-lightbox-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 46px;
    height: 46px;
}

.workshop-gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
}

.workshop-gallery-lightbox-nav:hover {
    transform: translateY(-50%);
}

.workshop-gallery-lightbox-prev {
    left: 28px;
}

.workshop-gallery-lightbox-next {
    right: 28px;
}

.blog-page-banner {
    background:
        linear-gradient(90deg, rgba(43, 47, 51, 0.95) 0%, rgba(43, 47, 51, 0.78) 46%, rgba(43, 47, 51, 0.26) 100%),
        radial-gradient(circle at 78% 30%, rgba(255, 106, 0, 0.34), transparent 18rem),
        linear-gradient(135deg, #2b2f33, #ff6a00);
}

.blog-banner-cocuklar-icin-maker-atolyesi {
    background:
        linear-gradient(90deg, rgba(43, 47, 51, 0.95) 0%, rgba(43, 47, 51, 0.78) 46%, rgba(43, 47, 51, 0.26) 100%),
        radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.16), transparent 16rem),
        linear-gradient(135deg, #ff6a00, #2b2f33);
}

.blog-banner-kurumsal-promosyon-3d-baski {
    background:
        linear-gradient(90deg, rgba(43, 47, 51, 0.95) 0%, rgba(43, 47, 51, 0.78) 46%, rgba(43, 47, 51, 0.26) 100%),
        radial-gradient(circle at 78% 30%, rgba(255, 106, 0, 0.28), transparent 18rem),
        linear-gradient(135deg, #2b2f33, #687074);
}

.blog-listing-page,
.blog-detail-page {
    padding-top: 54px;
    padding-bottom: 96px;
}

.blog-listing-head {
    display: grid;
    gap: 10px;
    max-width: 760px;
    margin-bottom: 26px;
}

.blog-listing-head span,
.blog-card-category,
.blog-detail-article>span,
.related-blog-list span {
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.blog-listing-head h2 {
    margin: 0;
    color: var(--plum-dark);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
}

.blog-list-grid {
    display: grid;
    grid-template-columns: 1.1fr repeat(2, minmax(0, 0.95fr));
    gap: 20px;
    align-items: stretch;
}

.blog-card,
.blog-detail-article,
.blog-detail-side {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 50px rgba(43, 47, 51, 0.08);
}

.blog-card {
    display: grid;
    grid-template-rows: 250px 1fr;
    overflow: hidden;
}

.blog-card.featured {
    grid-row: auto;
}

.blog-visual {
    display: block;
    height: 250px;
    max-height: 250px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}


.blog-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    display: grid;
    grid-template-rows: auto auto auto auto 1fr;
    align-content: stretch;
    gap: 12px;
    padding: 24px;
}

.blog-card h3 {
    margin: 0;
    color: var(--plum-dark);
    font-size: clamp(24px, 2.2vw, 32px);
    line-height: 1.08;
}

.blog-card h3 a {
    color: inherit;
}

.blog-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
}

.blog-card-meta span {
    min-height: 28px;
    padding: 6px 10px;
    color: var(--anthracite);
    background: rgba(249, 244, 238, 0.82);
    border: 1px solid var(--line);
    border-radius: 999px;
}

.blog-card .button {
    width: fit-content;
    align-self: end;
    margin-top: 4px;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    align-items: start;
}

.blog-detail-article,
.blog-detail-side {
    padding: clamp(24px, 4vw, 42px);
}

.blog-detail-article {
    display: grid;
    gap: 24px;
}

.blog-detail-article h1,
.blog-detail-article h2 {
    color: var(--plum-dark);
    line-height: 1.08;
}

.blog-detail-article h1 {
    margin: 0;
    font-size: clamp(34px, 4.4vw, 58px);
}

.blog-detail-article h2 {
    margin: 0 0 12px;
    font-size: clamp(24px, 3vw, 34px);
}

.blog-detail-lead {
    margin: 0;
    color: rgba(43, 47, 51, 0.78);
    font-size: 19px;
    line-height: 1.7;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-detail-meta span {
    min-height: 30px;
    padding: 7px 11px;
    color: var(--anthracite);
    background: rgba(249, 244, 238, 0.82);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.blog-detail-body {
    display: grid;
    gap: 26px;
}

.blog-detail-body p,
.blog-detail-body li {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.78;
}

.blog-detail-body p {
    margin: 0 0 14px;
}

.blog-detail-body ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-detail-body li {
    padding: 12px 14px;
    background: rgba(249, 244, 238, 0.72);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.blog-detail-side {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 18px;
}

.blog-detail-side h2 {
    margin: 0;
    color: var(--plum-dark);
    font-size: 24px;
}

.related-blog-list {
    display: grid;
    gap: 12px;
}

.related-blog-list a {
    display: grid;
    gap: 8px;
    padding: 14px;
    background: rgba(249, 244, 238, 0.72);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.related-blog-list strong {
    color: var(--plum-dark);
    line-height: 1.35;
}

.blog-detail-side .button {
    width: 100%;
}

.store-filters,
.store-toolbar,
.store-empty {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 50px rgba(43, 47, 51, 0.08);
}

.store-page {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 26px;
    padding-top: 20px;
    padding-bottom: 100px;
    align-items: start;
}

.store-filters {
    position: sticky;
    top: 120px;
    display: grid;
    max-height: calc(100vh - 132px);
    gap: 22px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    padding: 22px;
}

.store-filters::-webkit-scrollbar {
    width: 12px;
}

.store-filters::-webkit-scrollbar-track {
    margin: 14px 0;
    background: transparent;
    border-radius: 999px;
}

.store-filters::-webkit-scrollbar-thumb {
    background: rgba(255, 106, 0, 0.42);
    background-clip: content-box;
    border: 3px solid transparent;
    border-radius: 999px;
}

.store-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.store-filter-head button {
    color: var(--orange);
    background: transparent;
    border: 0;
    font-weight: 900;
    cursor: pointer;
}

.store-search,
.filter-group {
    display: grid;
    gap: 10px;
}

.filter-group strong {
    color: var(--plum-dark);
    font-size: 15px;
}

.filter-range-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.filter-range-head span {
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.price-range-filter {
    display: grid;
    gap: 12px;
}

.price-range-values {
    display: flex;
    justify-content: space-between;
    color: rgba(43, 47, 51, 0.72);
    font-size: 12px;
    font-weight: 800;
}

.price-range-slider {
    --range-start: 0%;
    --range-end: 100%;
    position: relative;
    height: 32px;
}

.price-range-slider::before,
.price-range-slider::after {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 6px;
    border-radius: 999px;
    content: "";
    transform: translateY(-50%);
}

.price-range-slider::before {
    background: rgba(43, 47, 51, 0.12);
}

.price-range-slider::after {
    background: linear-gradient(90deg,
            transparent 0 var(--range-start),
            var(--orange) var(--range-start) var(--range-end),
            transparent var(--range-end) 100%);
}

.price-range-slider input[type="range"] {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 32px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    accent-color: var(--orange);
    cursor: pointer;
    pointer-events: none;
    appearance: none;
}

.price-range-slider input[type="range"]:focus {
    outline: 0;
    box-shadow: none;
}

.price-range-slider input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    background: transparent;
}

.price-range-slider input[type="range"]::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    margin-top: -6px;
    background: var(--orange);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(43, 47, 51, 0.18);
    pointer-events: auto;
    appearance: none;
}

.price-range-slider input[type="range"]::-moz-range-track {
    height: 6px;
    background: transparent;
}

.price-range-slider input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: var(--orange);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(43, 47, 51, 0.18);
    pointer-events: auto;
}

.store-color-filters {
    display: grid;
    gap: 10px;
}

.filter-group label,
.store-color-filters label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(43, 47, 51, 0.78);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.filter-group input {
    width: 18px;
    height: 18px;
    accent-color: var(--orange);
}

input[type="checkbox"]:focus,
input[type="radio"]:focus {
    outline: 0;
    box-shadow: none;
}

.store-color-dot {
    width: 17px;
    height: 17px;
    border: 1px solid rgba(43, 47, 51, 0.18);
    border-radius: 50%;
}

.store-color-dot.white {
    background: #fff;
}

.store-color-dot.black {
    background: var(--anthracite);
}

.store-color-dot.orange {
    background: var(--orange);
}

.store-color-dot.gray {
    background: #9ca3af;
}

.store-content {
    position: relative;
    display: grid;
    gap: 18px;
    overflow: visible;
}

.store-toolbar {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    overflow: visible;
}

.store-toolbar span,
.store-toolbar strong {
    display: block;
}

.store-toolbar span {
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.store-toolbar strong {
    margin-top: 4px;
    color: var(--plum-dark);
    font-size: 20px;
}

.store-toolbar label {
    min-width: 230px;
}

.store-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.store-sort-select.open {
    z-index: 160;
}

.store-toolbar .select-menu {
    z-index: 180;
}

.store-product-card {
    min-height: 100%;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.product-meta b {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 0 10px;
    color: var(--plum);
    background: rgba(255, 106, 0, 0.09);
    border-radius: 999px;
    font-size: 12px;
}

.store-empty {
    padding: 48px 24px;
    text-align: center;
}

.store-infinite-sentinel {
    width: 100%;
    min-height: 1px;
}

.store-load-more {
    justify-self: center;
    min-width: 220px;
}

.store-empty h3 {
    margin: 0 0 8px;
    color: var(--plum-dark);
    font-size: 28px;
}

.store-empty p {
    margin: 0;
    color: var(--muted);
}

.workshop-section {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 28px;
    align-items: center;
}

.workshop-content .button {
    margin-top: 30px;
}

.workshop-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.workshop-list div {
    padding: 18px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.workshop-list strong,
.workshop-list span {
    display: block;
}

.workshop-list strong {
    color: var(--plum);
    font-size: 17px;
}

.workshop-list span {
    margin-top: 6px;
    color: var(--muted);
    line-height: 1.5;
}

.events {
    display: grid;
    gap: 16px;
}

.event-card {
    padding: 24px;
    border-radius: var(--radius-lg);
}

.event-date {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 12px;
    color: var(--white);
    background: var(--orange);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.process-grid,
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-card,
.why-card {
    padding: 26px;
    border-radius: var(--radius-lg);
}

.process-card span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 15px;
    font-weight: 900;
}

.register-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
    align-items: center;
    scroll-margin-top: 136px;
}

.form {
    display: grid;
    gap: 16px;
    padding: 28px;
    border-radius: var(--radius-xl);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

label {
    display: grid;
    gap: 8px;
    color: var(--plum);
    font-size: 14px;
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    padding: 15px 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    border-radius: 16px;
    outline: 0;
}

select {
    min-height: 52px;
    padding-right: 46px;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--orange) 50%),
        linear-gradient(135deg, var(--orange) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) 50%,
        calc(100% - 16px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    appearance: none;
    cursor: pointer;
}

select:required:invalid {
    color: rgba(104, 112, 116, 0.68);
}

select option {
    color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(242, 106, 27, 0.52);
    box-shadow: 0 0 0 4px rgba(242, 106, 27, 0.12);
}

textarea {
    resize: vertical;
}

.form-button {
    width: fit-content;
}

.form-success {
    display: none;
    margin: 0;
    color: var(--plum);
    font-weight: 800;
}

.form-success.show {
    display: block;
}

.corporate-card {
    padding: clamp(30px, 6vw, 64px);
    overflow: hidden;
    background:
        radial-gradient(circle at right, rgba(255, 106, 0, 0.18), transparent 20rem),
        rgba(255, 255, 255, 0.72);
    border-radius: 38px;
}

.corporate-card p {
    margin-bottom: 28px;
}

.faq-list {
    display: grid;
    max-width: 850px;
    margin: 0 auto;
    gap: 12px;
}

.faq-item {
    width: 100%;
    padding: 22px;
    text-align: left;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    cursor: pointer;
}

.faq-item span {
    display: block;
    color: var(--plum);
    font-size: 17px;
    font-weight: 900;
}

.faq-item p {
    display: none;
    margin-top: 12px;
}

.faq-item.active p {
    display: block;
}

.contact-page {
    padding-bottom: 106px;
}

.contact-map-banner {
    position: relative;
    width: 100%;
    height: min(500px, 48vw);
    min-height: 380px;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.contact-map-heading {
    position: absolute;
    top: 24px;
    right: 0;
    left: 0;
    z-index: 2;
}

.contact-map-heading>div {
    width: fit-content;
    padding: 14px;
    background: rgba(249, 244, 238, 0.84);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 18px 44px rgba(43, 47, 51, 0.12);
    backdrop-filter: blur(14px);
}

.contact-map-heading h1 {
    margin: 0;
    color: var(--plum);
    font-size: clamp(34px, 4.8vw, 68px);
    line-height: 1;
    letter-spacing: 0;
}

.contact-map-banner iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.95) contrast(1.02);
}

.contact-panel-wrap {
    position: relative;
    z-index: 2;
    margin-top: -56px;
    pointer-events: none;
}

.contact-panel {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 28px;
    pointer-events: auto;
    padding: 28px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.contact-info {
    padding: 8px 6px;
}

.contact-info h3 {
    margin: 18px 0 12px;
    color: var(--plum-dark);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.06;
    letter-spacing: -0.055em;
}

.contact-info p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.contact-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.contact-list a {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 5px;
    padding: 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-list i {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    color: var(--orange);
    background: rgba(255, 106, 0, 0.09);
    border: 1px solid rgba(255, 106, 0, 0.18);
    border-radius: 14px;
    font-style: normal;
}

.contact-list svg {
    width: 21px;
    height: 21px;
}

.contact-list a>span {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.contact-list a:hover {
    border-color: rgba(255, 106, 0, 0.38);
    transform: translateY(-2px);
}

.contact-list strong {
    color: var(--orange);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-list b {
    color: var(--plum);
    font-weight: 700;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 24px;
    background: rgba(249, 244, 238, 0.62);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.solution-page {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 30px;
    align-items: start;
    padding-top: 58px;
    padding-bottom: 106px;
}

.solution-intro {
    position: sticky;
    top: 118px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.solution-intro h2 {
    margin: 0 0 16px;
    color: var(--plum);
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.08;
    letter-spacing: 0;
}

.solution-intro p,
.solution-intro-body {
    margin: 0;
    color: rgba(43, 47, 51, 0.76);
    font-size: 17px;
    line-height: 1.75;
}

.solution-intro-body p:not(:last-child) {
    margin-bottom: 14px;
}

.solution-form {
    display: grid;
    gap: 16px;
    padding: clamp(22px, 3vw, 30px);
    background: rgba(249, 244, 238, 0.72);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.calculator-page {
    padding-top: 42px;
    padding-bottom: 106px;
}

.calculator-shell {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1120px;
    margin-inline: auto;
    align-items: stretch;
}

.calculator-form {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.calculator-form {
    display: grid;
    gap: 26px;
    padding: 28px;
}

.calculator-wizard {
    overflow: visible;
}

.calculator-progress {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 4px 8px 10px;
}

.calculator-progress::before {
    position: absolute;
    top: 50%;
    left: 34px;
    right: 34px;
    height: 4px;
    content: "";
    background: rgba(43, 47, 51, 0.18);
    transform: translateY(-50%);
}

.calculator-progress.is-contact::before {
    background: linear-gradient(90deg, var(--orange) 0 50%, rgba(43, 47, 51, 0.18) 50% 100%);
}

.calculator-progress.is-success::before {
    background: var(--orange);
}

.calculator-progress span {
    position: relative;
    z-index: 1;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: var(--orange);
    background: var(--white);
    border: 4px solid var(--orange);
    border-radius: 50%;
    box-shadow: 0 16px 36px rgba(43, 47, 51, 0.1);
}

.calculator-progress span.active,
.calculator-progress span.done {
    color: var(--white);
    background: var(--orange);
}

.calculator-progress svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.calculator-step {
    display: grid;
    gap: 18px;
}

.calculator-step[hidden] {
    display: none;
}

.calculator-step-heading h3 {
    margin: 6px 0 0;
    color: var(--plum-dark);
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: -0.04em;
}

.calculator-complete {
    min-height: 430px;
    place-items: center;
    align-content: center;
    text-align: center;
}

.success-icon {
    display: grid;
    width: 104px;
    height: 104px;
    place-items: center;
    color: #12b76a;
    background: rgba(18, 183, 106, 0.08);
    border: 4px solid #12b76a;
    border-radius: 50%;
    animation: successPop 0.38s ease-out both;
}

.success-icon svg {
    width: 54px;
    height: 54px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.calculator-complete h3 {
    margin: 12px 0 0;
    color: var(--plum-dark);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.calculator-complete p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

@keyframes successPop {
    0% {
        opacity: 0;
        transform: scale(0.72);
    }

    70% {
        opacity: 1;
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.calculator-upload {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    background: rgba(249, 244, 238, 0.72);
    border: 1px dashed rgba(255, 106, 0, 0.42);
    border-radius: var(--radius-lg);
}

.calculator-upload strong,
.calculator-upload span {
    display: block;
}

.calculator-upload strong {
    color: var(--plum);
    font-size: 16px;
}

.calculator-upload span {
    margin-top: 5px;
    color: var(--muted);
    line-height: 1.45;
}

.calculator-file-note {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.calculator-file-note a {
    color: var(--orange);
    font-weight: 800;
    text-decoration: none;
}

.calculator-file-note.invalid {
    color: #b42318;
}

.calculator-upload.invalid {
    border-color: rgba(180, 35, 24, 0.58);
    background: rgba(255, 245, 242, 0.78);
}

.calculator-upload input {
    max-width: 260px;
    background: var(--white);
}

.calculator-field {
    display: grid;
    gap: 8px;
}

.calculator-field-wide {
    grid-column: 1 / -1;
}

.calculator-field-label {
    color: rgba(43, 47, 51, 0.82);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.005em;
}

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

.infill-option {
    display: block;
    cursor: pointer;
}

.infill-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.infill-option-card {
    display: grid;
    min-height: 104px;
    place-items: center;
    gap: 8px;
    padding: 12px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    border-radius: 16px;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.infill-option-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.infill-option-card span {
    color: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
}

.infill-option:hover .infill-option-card,
.infill-option input:focus-visible+.infill-option-card {
    border-color: rgba(255, 106, 0, 0.42);
    box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.1);
}

.infill-option input:checked+.infill-option-card {
    color: var(--orange);
    background: rgba(255, 106, 0, 0.08);
    border-color: rgba(255, 106, 0, 0.72);
    box-shadow: 0 12px 28px rgba(255, 106, 0, 0.14);
}

.infill-options.invalid .infill-option-card {
    border-color: rgba(180, 35, 24, 0.58);
}

.calculator-form select {
    background-color: rgba(255, 255, 255, 0.92);
    border-color: rgba(43, 47, 51, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.calculator-form select:hover {
    border-color: rgba(255, 106, 0, 0.32);
    background-color: var(--white);
}

.calculator-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.calculator-actions .button {
    min-width: 0;
}

.calculator-actions .calculator-submit {
    width: auto;
}

.corporate-invoice-fields {
    display: grid;
    gap: 16px;
}

.corporate-invoice-fields[hidden] {
    display: none;
}

.consent-field {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    gap: 14px;
    color: var(--plum);
    font-size: 15px;
}

.consent-field input {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    accent-color: var(--orange);
}

.calculator-submit {
    display: inline-flex;
}

.corporate-page {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
    padding-top: 58px;
    padding-bottom: 104px;
}

.corporate-nav {
    position: sticky;
    top: 114px;
    display: grid;
    gap: 8px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.corporate-nav strong {
    margin-bottom: 8px;
    color: var(--plum);
    font-size: 18px;
    font-weight: 900;
}

.corporate-nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    color: var(--muted);
    background: rgba(249, 244, 238, 0.72);
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.corporate-nav a:hover,
.corporate-nav a.active {
    color: var(--plum);
    background: var(--white);
    border-color: rgba(255, 106, 0, 0.26);
}

.corporate-content {
    display: grid;
    gap: 24px;
}

.corporate-content.corporate-article {
    display: block;
    padding: clamp(28px, 4vw, 54px);
    color: var(--plum);
    background: rgba(255, 255, 255, 0.58);
    border-left: 1px solid var(--line);
}

.corporate-article section {
    scroll-margin-top: 128px;
    padding: 0 0 36px;
    margin: 0 0 36px;
    border-bottom: 1px solid rgba(43, 47, 51, 0.14);
}

.corporate-article section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.corporate-article h2 {
    max-width: 860px;
    margin: 0 0 18px;
    color: var(--plum);
    font-size: clamp(30px, 3.3vw, 48px);
    line-height: 1.06;
    letter-spacing: 0;
}

.corporate-article p {
    max-width: 880px;
    margin: 0 0 18px;
    color: rgba(43, 47, 51, 0.78);
    font-size: 18px;
    line-height: 1.82;
}

.corporate-article ol {
    display: grid;
    gap: 10px;
    max-width: 760px;
    margin: 24px 0 0;
    padding-left: 22px;
    color: rgba(43, 47, 51, 0.82);
    font-size: 17px;
    line-height: 1.7;
}

.corporate-article li::marker {
    color: var(--orange);
    font-weight: 900;
}

.corporate-article .button {
    margin-top: 8px;
}

.corporate-article-image {
    display: grid;
    min-height: 320px;
    margin: 0 0 42px;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 74% 32%, rgba(255, 106, 0, 0.28), transparent 16rem),
        linear-gradient(135deg, rgba(43, 47, 51, 0.94), rgba(255, 106, 0, 0.68));
    border-radius: var(--radius-lg);
}

.corporate-article-image img {
    width: min(72%, 420px);
    height: auto;
    padding: 22px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 20px 44px rgba(16, 20, 24, 0.22);
}

.corporate-story-card,
.corporate-info-card,
.corporate-media-card,
.corporate-cta {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.corporate-story-card {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: 28px;
    align-items: stretch;
    padding: 28px;
}

.corporate-story-card span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.corporate-story-card h2,
.corporate-info-card h2,
.corporate-media-card h2,
.corporate-cta h2 {
    margin: 0 0 16px;
    color: var(--plum);
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.05;
    letter-spacing: 0;
}

.corporate-story-card p,
.corporate-info-card p,
.corporate-media-card p,
.corporate-cta p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.corporate-visual,
.corporate-media-visual {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    background:
        radial-gradient(circle at 68% 34%, rgba(255, 106, 0, 0.42), transparent 9rem),
        linear-gradient(135deg, rgba(43, 47, 51, 0.95), rgba(255, 106, 0, 0.72));
    border-radius: var(--radius-lg);
}

.corporate-visual::before,
.corporate-media-visual::before {
    position: absolute;
    inset: 22px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
}

.corporate-visual::after {
    position: absolute;
    right: 34px;
    bottom: 34px;
    width: 210px;
    height: 132px;
    content: "";
    background:
        linear-gradient(135deg, rgba(249, 244, 238, 0.94), rgba(255, 255, 255, 0.68)),
        repeating-linear-gradient(90deg, transparent 0 14px, rgba(43, 47, 51, 0.12) 14px 16px);
    border-radius: 18px 18px 42px 42px;
    box-shadow: 0 22px 44px rgba(16, 20, 24, 0.28);
}

.corporate-visual img {
    position: absolute;
    top: 34px;
    left: 34px;
    width: min(62%, 260px);
    height: auto;
    padding: 18px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    box-shadow: 0 18px 36px rgba(16, 20, 24, 0.2);
}

.corporate-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.corporate-solution-grid article {
    min-height: 190px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.corporate-solution-grid h3 {
    margin: 0 0 12px;
    color: var(--plum);
    font-size: 20px;
}

.corporate-solution-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.corporate-info-card {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 28px;
    padding: 30px;
}

.corporate-info-card ol {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: corporate-step;
}

.corporate-info-card li {
    position: relative;
    min-height: 48px;
    padding: 12px 14px 12px 50px;
    color: var(--plum);
    background: rgba(249, 244, 238, 0.74);
    border: 1px solid var(--line);
    border-radius: 10px;
    font-weight: 800;
    counter-increment: corporate-step;
}

.corporate-info-card li::before {
    position: absolute;
    top: 50%;
    left: 14px;
    display: grid;
    width: 26px;
    height: 26px;
    content: counter(corporate-step);
    place-items: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
    font-size: 12px;
    transform: translateY(-50%);
}

.corporate-media-card {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: center;
    padding: 28px;
}

.corporate-media-visual {
    min-height: 300px;
    background:
        radial-gradient(circle at 34% 36%, rgba(255, 255, 255, 0.22), transparent 8rem),
        radial-gradient(circle at 72% 58%, rgba(255, 106, 0, 0.42), transparent 8rem),
        linear-gradient(135deg, #2b2f33, #687074);
}

.corporate-media-visual::after {
    position: absolute;
    inset: auto 34px 34px 34px;
    height: 116px;
    content: "";
    background:
        linear-gradient(90deg, rgba(255, 106, 0, 0.96) 0 30%, rgba(249, 244, 238, 0.94) 30% 66%, rgba(43, 47, 51, 0.92) 66% 100%);
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(16, 20, 24, 0.24);
}

.corporate-cta {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
}

.corporate-cta .button {
    flex: 0 0 auto;
}

.footer {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.72fr 1fr 0.86fr;
    gap: 36px;
    padding-top: 38px;
    padding-bottom: 16px;
}

.footer::before {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 1px;
    content: "";
    background: var(--line);
    transform: translateX(-50%);
    pointer-events: none;
}

.footer>* {
    position: relative;
    z-index: 1;
}

.footer>div:not(:first-child):not(.footer-bottom) {
    padding-left: 36px;
    border-left: 1px solid var(--line);
}

.footer h3 {
    margin: 0 0 14px;
    color: var(--plum);
    font-size: 16px;
}

.footer a {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-weight: 700;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: var(--orange);
}

.footer p {
    max-width: 270px;
    margin-top: 16px;
}

.footer-address {
    margin-top: 0;
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    display: inline-grid;
    width: 40px;
    height: 40px;
    margin-top: 0;
    place-items: center;
    color: var(--orange);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
    color: var(--white);
    background: var(--orange);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: none;
}

.footer-bottom {
    display: flex;
    grid-column: 1 / -1;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    margin-top: 14px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: 13px;
    font-weight: 700;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

.footer-contract-links {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.footer-payment-band {
    display: flex;
    flex: 0 1 420px;
    justify-content: flex-end;
}

.footer-payment-band img {
    display: block;
    height: 20px;
    object-fit: contain;
}

.footer-contract-links button,
.footer-legal-links button {
    padding: 0;
    color: var(--muted);
    background: transparent;
    border: 0;
    cursor: pointer;
    font-weight: 500;
    text-align: left;
    transition: color 0.2s ease;
}

.footer-contract-links button:hover,
.footer-legal-links button:hover {
    color: var(--orange);
}

.legal-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 320;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(43, 47, 51, 0.56);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.legal-modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.legal-modal {
    position: relative;
    width: min(760px, 100%);
    max-height: min(760px, calc(100vh - 48px));
    overflow: auto;
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 28px 90px rgba(43, 47, 51, 0.28);
}

.legal-modal h2 {
    margin: 0 44px 18px 0;
    color: var(--anthracite-dark);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.legal-modal-content {
    display: grid;
    gap: 14px;
    color: rgba(43, 47, 51, 0.78);
    font-size: 16px;
    line-height: 1.72;
}

.legal-modal-content p {
    max-width: none;
    margin: 0;
}

.legal-modal-close {
    position: absolute;
    top: 22px;
    right: 22px;
    color: var(--muted);
}

.frontend-svg-icon {
    display: block;
    overflow: visible;
}

.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-ready .reveal {
    opacity: 0;
    transform: translateY(22px);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes topbarMessage {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }

    6%,
    27% {
        opacity: 1;
        transform: translateY(0);
    }

    33%,
    100% {
        opacity: 0;
        transform: translateY(-12px);
    }
}

@keyframes heroObjectFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(18px, -22px, 0) rotate(8deg);
    }
}

@keyframes heroObjectDrift {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-10deg);
    }

    50% {
        transform: translate3d(-24px, 18px, 0) rotate(-2deg);
    }
}

@keyframes heroObjectSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes printMove {

    0% {
        box-shadow: 0 16px 34px rgba(255, 106, 0, 0.32);
        transform: translateX(-78%);
    }

    25% {
        box-shadow: 0 8px 18px rgba(255, 106, 0, 0.08);
    }

    50% {
        box-shadow: 0 16px 34px rgba(255, 106, 0, 0.32);
        transform: translateX(-22%);
    }

    75% {
        box-shadow: 0 8px 18px rgba(255, 106, 0, 0.08);
    }

    100% {
        box-shadow: 0 16px 34px rgba(255, 106, 0, 0.32);
        transform: translateX(-78%);
    }
}

@keyframes printObjectReveal {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(18px) scale(0);
    }

    20% {
        opacity: 0.18;
        transform: translateX(-50%) translateY(12px) scale(0.34);
    }

    45%,
    88% {
        opacity: 0.88;
        transform: translateX(-50%) translateY(0) scale(1);
    }

    89%,
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

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

    .menu-button {
        display: block;
    }

    .nav.open {
        position: absolute;
        top: 86px;
        left: 24px;
        right: 24px;
        display: grid;
        gap: 10px;
        padding: 18px;
        background: rgba(255, 255, 255, 0.96);
        border-radius: 24px;
        box-shadow: var(--shadow);
    }

    .nav-dropdown {
        display: grid;
        gap: 8px;
    }

    .nav-dropdown-toggle {
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        display: none;
        min-width: 0;
        padding: 6px;
        background: rgba(232, 117, 37, 0.08);
        border-radius: 14px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu,
    .nav-dropdown.active .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        display: grid;
        transform: none;
    }

    .hero,
    .workshop-section,
    .register-section {
        grid-template-columns: 1fr;
    }

    .register-section {
        scroll-margin-top: 112px;
    }

    .hero {
        min-height: auto;
    }

    .hero-bg-frame,
    .hero-bg-chip,
    .hero-bg-nozzle {
        display: none;
    }

    .hero-bg-object {
        opacity: 0.1;
    }

    .hero-visual {
        min-height: 480px;
    }

    .product-grid,
    .store-grid,
    .process-grid,
    .why-grid,
    .workshop-program-grid,
    .blog-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail-layout,
    .product-detail-extra,
    .workshop-detail-layout,
    .workshop-register-section,
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .product-detail-gallery,
    .workshop-detail-side,
    .blog-detail-side {
        position: static;
    }

    .blog-card.featured {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .blog-card {
        grid-template-rows: 220px 1fr;
    }

    .workshop-program-card {
        grid-template-columns: 1fr;
    }

    .workshop-program-visual {
        min-height: 220px;
    }

    .workshop-gallery-item {
        flex-basis: calc((100% - 12px) / 2);
    }

    .store-page {
        grid-template-columns: 1fr;
    }

    .page-banner {
        min-height: 250px;
        background-position: center, center, right -120px center;
        background-size: auto, auto, 560px auto;
    }

    .store-filters {
        position: static;
        max-height: none;
        overflow: visible;
    }

    .quick-links {
        grid-template-columns: 1fr;
    }

    .footer {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .calculator-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .topbar {
        display: grid;
        gap: 6px;
        text-align: center;
    }

    .header {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .header-actions .button,
    .cart-button span {
        display: none;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero-content {
        align-self: auto;
        min-height: auto;
        padding-bottom: 0;
    }

    .hero-slider-controls {
        position: static;
        margin-top: 24px;
        padding-top: 0;
    }

    .hero-stats,
    .hero-actions {
        display: grid;
    }

    .hero-stats div,
    .hero-actions .button,
    .hero-detail-button {
        width: 100%;
    }

    .hero-visual {
        min-height: 420px;
        border-radius: 28px;
    }

    .printer-card {
        width: 86%;
        padding: 18px;
    }

    .printer-body {
        height: 214px;
        margin: 14px;
    }

    .floating-card {
        display: none;
    }

    .product-grid,
    .store-grid,
    .process-grid,
    .why-grid,
    .product-detail-meta,
    .workshop-program-grid,
    .blog-list-grid,
    .workshop-detail-main ul,
    .form-row,
    .contact-panel,
    .solution-page,
    .footer {
        grid-template-columns: 1fr;
    }

    .solution-intro {
        position: static;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer>div:not(:first-child):not(.footer-bottom) {
        padding-left: 0;
        border-left: 0;
    }

    .footer-payment-band {
        width: 100%;
        justify-content: flex-start;
    }

    .footer-legal-links {
        justify-content: flex-start;
    }

    .workshop-gallery-item {
        flex-basis: 100%;
    }

    .product-detail-page,
    .workshop-listing-page,
    .workshop-detail-page,
    .blog-listing-page,
    .blog-detail-page,
    .solution-page {
        padding-top: 34px;
        padding-bottom: 70px;
    }

    .blog-card.featured .blog-visual,
    .blog-visual {
        height: 220px;
        max-height: 220px;
    }

    .product-detail-image {
        min-height: 360px;
    }

    .product-gallery-nav {
        width: 36px;
        height: 36px;
    }

    .product-gallery-prev {
        left: 10px;
    }

    .product-gallery-next {
        right: 10px;
    }

    .product-zoom-modal {
        padding: 18px;
    }

    .product-zoom-image {
        --product-zoom-scale: 2;
        width: 100%;
        height: min(560px, 70vh);
    }

    .product-zoom-nav {
        top: auto;
        bottom: 18px;
        width: 44px;
        height: 44px;
        transform: none;
    }

    .product-zoom-prev {
        left: calc(50% - 54px);
    }

    .product-zoom-next {
        right: calc(50% - 54px);
    }

    .workshop-gallery-lightbox-nav {
        top: auto;
        bottom: 18px;
        width: 44px;
        height: 44px;
        transform: none;
    }

    .workshop-gallery-lightbox-nav:hover {
        transform: none;
    }

    .workshop-gallery-lightbox-prev {
        left: calc(50% - 54px);
    }

    .workshop-gallery-lightbox-next {
        right: calc(50% - 54px);
    }

    .store-hero {
        min-height: 300px;
        background-position: center, center, right -190px center;
    }

    .page-banner-inner {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .store-toolbar {
        grid-template-columns: 1fr;
    }

    .store-toolbar {
        display: grid;
    }

    .store-toolbar label {
        min-width: 0;
    }

    .contact-map-banner {
        height: 420px;
        min-height: 340px;
    }

    .contact-panel-wrap {
        margin-top: -42px;
    }

    .contact-panel {
        padding: 18px;
        border-radius: 26px;
    }

    .contact-form {
        padding: 18px;
    }

    .calculator-form {
        padding: 18px;
        border-radius: 26px;
    }

    .calculator-upload {
        align-items: stretch;
        flex-direction: column;
    }

    .calculator-upload input {
        max-width: none;
    }

    .infill-options {
        grid-template-columns: 1fr;
    }

    .calculator-progress {
        margin-inline: 0;
    }

    .calculator-progress span {
        width: 50px;
        height: 50px;
    }

    .calculator-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .calculator-actions .button {
        width: 100%;
        min-width: 0;
    }

}


@media (max-width: 720px) {
    .brand-logo img {
        width: 190px;
    }

    .footer-brand img {
        width: 210px;
    }
}


.product-grid {
    align-items: stretch;
}

.product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.product-info {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.product-footer {
    margin-top: auto;
    padding-top: 22px;
}

.button,
.add-cart,
.category,
.event-card a,
.quick-card a,
.auth-button,
.cart-button,
.select-trigger,
.select-menu button,
.modal-close,
.auth-tab {
    position: relative;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.button::after,
.add-cart::after,
.auth-button::after,
.cart-button::after,
.category::after,
.select-trigger::after,
.auth-tab::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.28) 42%, transparent 66%);
    transform: translateX(-120%);
    transition: transform 0.55s ease;
    pointer-events: none;
}

.button:hover::after,
.add-cart:hover::after,
.auth-button:hover::after,
.cart-button:hover::after,
.category:hover::after,
.select-trigger:hover::after,
.auth-tab:hover::after {
    transform: translateX(120%);
}

.button:hover,
.add-cart:hover,
.category:hover,
.auth-button:hover,
.cart-button:hover,
.select-trigger:hover,
.auth-tab:hover {
    transform: translateY(-3px);
}

.add-cart:hover,
.auth-button:hover,
.cart-button:hover,
.select-trigger:hover {
    box-shadow: 0 16px 36px rgba(43, 47, 51, 0.14);
}

.auth-button,
.cart-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.auth-button {
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    color: var(--anthracite);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}

.auth-button svg,
.cart-button svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-button {
    min-width: 50px;
}

.custom-select {
    position: relative;
    display: grid;
    gap: 7px;
}

.custom-select.open {
    z-index: 80;
}

.select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    width: 100%;
    padding: 0 15px 0 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    border-radius: 16px;
    cursor: pointer;
}

.select-trigger svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--orange);
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.22s ease;
}

.custom-select.open .select-trigger {
    border-color: rgba(255, 106, 0, 0.52);
    box-shadow: none;
}

.custom-select.invalid .select-trigger {
    border-color: rgba(180, 35, 24, 0.58);
    box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.1);
}

.custom-select.open .select-trigger svg {
    transform: rotate(180deg);
}

.select-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 90;
    display: grid;
    width: 100%;
    padding: 8px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(43, 47, 51, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.custom-select.open .select-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.select-menu button {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-radius: 12px;
    text-align: left;
    font-weight: 700;
    cursor: pointer;
}

.select-menu button:not(:last-child) {
    margin-bottom: 4px;
}

.select-menu button:hover,
.select-menu button.selected {
    color: var(--orange);
    background: rgba(255, 106, 0, 0.09);
}

.color-select .select-menu button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.color-swatch {
    display: inline-block;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    background: var(--swatch-color);
    border: 1px solid rgba(43, 47, 51, 0.18);
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.42), 0 4px 10px rgba(43, 47, 51, 0.1);
}

.color-swatch-mixed {
    background: linear-gradient(135deg, #ff6a00, #12b76a, #3b82f6);
}

.field-error {
    display: none;
    color: #c0392b;
    font-size: 12px;
    font-weight: 700;
}

.custom-select.invalid .field-error {
    display: block;
}

.faq-item {
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 48px rgba(43, 47, 51, 0.1);
}

.faq-item p {
    display: block;
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.34s ease, opacity 0.28s ease, margin-top 0.28s ease;
}

.faq-item.active p {
    max-height: 140px;
    margin-top: 12px;
    opacity: 1;
}

.footer h3 {
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer a {
    font-weight: 500;
}

.footer p {
    font-weight: 400;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 260;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(31, 36, 38, 0.54);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.auth-modal {
    position: relative;
    width: min(100%, 480px);
    max-height: min(92vh, 720px);
    overflow: auto;
    padding: 26px;
    background: radial-gradient(circle at top right, rgba(255, 106, 0, 0.12), transparent 16rem), var(--light);
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 30px;
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
    transform: translateY(18px) scale(0.97);
    transition: transform 0.24s ease;
}

.modal-backdrop.open .auth-modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 8px;
    right: 16px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--anthracite);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.auth-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 8px;
    margin: 32px 0 24px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid var(--line);
    border-radius: 999px;
}

.auth-tab {
    min-height: 40px;
    color: var(--muted);
    background: transparent;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}

.auth-tab.active {
    color: var(--white);
    background: var(--anthracite);
}

.auth-panel {
    display: none;
}

.auth-panel.active {
    display: block;
    animation: authPanelIn 0.24s ease both;
}

.auth-panel>.eyebrow {
    display: none;
}

.auth-panel h2 {
    margin: 0 0 10px;
    color: var(--anthracite-dark);
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.06em;
}

.auth-panel p {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.6;
}

.auth-form {
    display: grid;
    gap: 14px;
}

.header-auth-form {
    margin: 0;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.auth-remember input {
    width: 16px;
    height: 16px;
}

.form-error {
    display: block;
    margin-top: 6px;
    color: #b42318;
    font-size: 12px;
    font-weight: 700;
}

.auth-form .button {
    width: 100%;
    margin-top: 4px;
}

.account-page {
    padding-top: 72px;
    padding-bottom: 104px;
}

.account-shell {
    width: min(100%, 860px);
    margin-inline: auto;
}

.account-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 34px;
}

.account-alert {
    margin-bottom: 22px;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 800;
}

.account-alert-success {
    color: #0f5132;
    background: #d1e7dd;
    border: 1px solid #badbcc;
}

.account-alert-error {
    color: #842029;
    background: #f8d7da;
    border: 1px solid #f5c2c7;
}

.account-avatar {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--anthracite-dark);
    background: var(--white);
    font-size: 24px;
    font-weight: 900;
    box-shadow: var(--shadow);
}

.account-heading h2,
.account-section h3,
.account-empty-state h2,
.account-order-head h2 {
    margin: 0;
    color: var(--anthracite-dark);
    letter-spacing: 0;
}

.account-heading p {
    margin: 5px 0 0;
    color: var(--muted);
    font-weight: 700;
}

.account-section {
    margin-top: 34px;
}

.account-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.account-section-head h3 {
    font-size: 24px;
}

.account-section-head button {
    min-height: 42px;
    padding: 0 18px;
    color: var(--anthracite-dark);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    font-weight: 900;
    cursor: pointer;
}

.account-info-row,
.account-empty-box,
.account-toggle-row,
.account-order-card,
.account-empty-state {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.account-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 28px;
}

.account-info-row span,
.account-empty-box b,
.account-muted,
.account-order-head span,
.account-order-head p,
.account-order-item span {
    color: var(--muted);
}

.account-info-row strong {
    color: var(--anthracite-dark);
    font-size: 19px;
}

.account-empty-box,
.account-toggle-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 28px;
}

.account-box-icon {
    display: grid;
    width: 52px;
    height: 52px;
    min-width: 52px;
    place-items: center;
    border-radius: 16px;
    background: rgba(43, 47, 51, 0.06);
}

.account-box-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--anthracite-dark);
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.account-toggle-row strong {
    margin-right: auto;
    color: var(--anthracite-dark);
    font-size: 19px;
}

.account-switch {
    position: relative;
    width: 58px;
    height: 34px;
    border-radius: 999px;
    background: var(--line);
}

.account-switch-label {
    display: inline-flex;
    align-items: center;
}

.account-switch-label input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.account-switch-label input:checked+.account-switch {
    background: #0064a8;
}

.account-switch i {
    position: absolute;
    top: 4px;
    left: 28px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--white);
    transition: left 0.18s ease;
}

.account-switch-label input:not(:checked)+.account-switch i {
    left: 4px;
}

.account-invoice-box {
    align-items: flex-start;
}

.account-invoice-box div {
    display: grid;
    gap: 4px;
}

.account-invoice-box span,
.account-invoice-box small {
    color: var(--muted);
    font-weight: 700;
}

.account-modal {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.58);
}

.account-modal.open {
    display: flex;
}

.account-modal-dialog {
    position: relative;
    width: min(100%, 760px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.account-modal-dialog-sm {
    width: min(100%, 640px);
}

.account-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    padding: 0;
    color: #666;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.account-modal-close svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
}

.account-modal-dialog h2 {
    margin: 0 48px 20px 0;
    color: var(--anthracite-dark);
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: 0;
}

.account-modal-dialog h3 {
    margin: 4px 0 0;
    color: var(--anthracite-dark);
    font-size: 20px;
    letter-spacing: 0;
}

.account-modal-form {
    display: grid;
    gap: 14px;
}

.account-modal-grid {
    display: grid;
    gap: 14px;
}

.account-modal-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-modal-form label {
    display: grid;
    gap: 6px;
}

.account-modal-form label>span {
    color: var(--plum);
    font-size: 14px;
    font-weight: 900;
}

.account-modal-form input,
.account-modal-form select {
    width: 100%;
    min-height: 52px;
    padding: 15px 16px;
    color: var(--ink);
    background-color: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    outline: 0;
}

.account-modal-form input:focus,
.account-modal-form select:focus {
    border-color: rgba(242, 106, 27, 0.52);
    box-shadow: 0 0 0 4px rgba(242, 106, 27, 0.12);
}

.account-modal-form input.invalid,
.account-modal-form label.invalid input {
    border-color: rgba(180, 35, 24, 0.58);
    box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.1);
}

.account-custom-select .select-trigger {
    min-height: 52px;
    font-size: 15px;
    font-weight: 700;
}

.account-custom-select .select-trigger span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-modal .custom-select:not(.open) .select-menu {
    display: none;
}

.account-field-error {
    display: none;
    margin-top: -2px;
    color: #b42318;
    font-size: 12px;
    font-weight: 800;
}

.account-modal-form label.invalid .account-field-error {
    display: block;
}

.account-modal-form p {
    margin: -4px 0 4px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4;
}

.account-invoice-type {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.account-invoice-type label {
    display: block;
}

.account-invoice-type input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.account-invoice-type span {
    display: grid;
    min-height: 52px;
    place-items: center;
    color: var(--plum);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    border-radius: 16px;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
}

.account-invoice-type input:checked+span {
    color: #fff;
    background: var(--plum);
    border-color: var(--plum);
}

.account-check-row {
    display: flex !important;
    grid-template-columns: none;
    align-items: center;
    gap: 10px;
    color: var(--anthracite-dark);
    font-size: 15px;
    font-weight: 700;
}

.account-check-row span {
    color: var(--anthracite-dark);
    font-size: 15px;
    font-weight: 700;
}

.account-check-row input {
    width: 18px;
    min-height: 18px;
    height: 18px;
    padding: 0;
    border-radius: 8px;
}

.account-modal-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

.account-link-button,
.account-save-button {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
}

.account-link-button {
    color: var(--plum);
    background: transparent;
    border: 0;
    text-decoration: underline;
}

.account-save-button {
    color: #fff;
    background: var(--plum);
    border: 1px solid var(--plum);
}

.account-muted {
    max-width: 720px;
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
}

.account-orders-shell {
    display: grid;
    width: 100%;
    gap: 18px;
}

.account-order-filters {
    justify-content: flex-start;
    margin-bottom: 22px;
}

.account-order-card {
    padding: 24px;
}

.account-order-card.hidden {
    display: none;
}

.account-order-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.account-order-head h2 {
    margin-top: 4px;
    font-size: 24px;
}

.account-order-summary {
    display: grid;
    justify-items: end;
    gap: 8px;
    text-align: right;
}

.account-order-summary>strong {
    color: var(--plum);
    font-size: 24px;
    font-weight: 950;
}

.account-order-summary b,
.account-order-summary em {
    display: inline-flex;
    margin-left: 5px;
    padding: 6px 9px;
    border-radius: 999px;
    font-style: normal;
    font-size: 12px;
    font-weight: 900;
}

.account-order-summary b {
    color: var(--white);
    background: var(--anthracite);
}

.account-order-summary a {
    display: inline-flex;
    margin-left: 5px;
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--anthracite);
    background: rgba(255, 106, 0, 0.14);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.account-order-summary a:hover {
    color: var(--orange);
}

.account-order-summary em {
    color: var(--anthracite);
    background: rgba(255, 106, 0, 0.14);
}

.account-order-info-grid {
    display: grid;
    gap: 18px;
    margin-top: 14px;
}

.account-order-info-card {
    display: grid;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 250, 244, 0.74);
    border: 1px solid var(--line);
    border-radius: 18px;
}

.account-order-info-card h3 {
    margin: 0;
    color: var(--anthracite-dark);
    font-size: 17px;
}

.account-order-info-card dl {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin: 0;
}

.account-order-info-card dl div {
    display: grid;
    gap: 3px;
}

.account-order-info-card dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.account-order-info-card dd {
    min-width: 0;
    margin: 0;
    color: var(--anthracite-dark);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.account-order-items {
    display: grid;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.account-order-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 16px;
}

.account-order-item strong,
.account-order-product-link,
.account-order-item span {
    display: block;
}

.account-order-product-link {
    color: var(--anthracite-dark);
    font-weight: 950;
    text-decoration: none;
}

.account-order-product-link:hover {
    color: var(--orange);
}

.account-order-item b {
    color: var(--anthracite-dark);
}

.account-order-details {
    margin-top: 16px;
    border-top: 1px solid var(--line);
}

.account-order-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    color: var(--anthracite-dark);
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.account-order-details summary::-webkit-details-marker {
    display: none;
}

.account-order-details summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: var(--orange);
    background: rgba(255, 106, 0, 0.12);
    font-size: 18px;
    line-height: 1;
}

.account-order-details[open] summary::after {
    content: "-";
}

.account-empty-state {
    padding: 36px;
    text-align: center;
}

.account-empty-state p {
    margin: 10px auto 22px;
    max-width: 440px;
    color: var(--muted);
}

body.modal-open {
    overflow: hidden;
}

@keyframes authPanelIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 720px) {
    .auth-button {
        width: 44px;
        padding: 0;
    }

    .auth-button span {
        display: none;
    }

    .cart-button {
        padding: 0 12px;
    }

    .cart-button svg,
    .auth-button svg {
        width: 21px;
        height: 21px;
    }

    .auth-modal {
        padding: 22px;
        border-radius: 24px;
    }

    .auth-tabs {
        margin: 30px 0 22px;
    }

    .customer-menu-dropdown {
        right: -52px;
    }

    .customer-menu-toggle span {
        display: grid;
    }

    .account-page {
        padding-top: 46px;
        padding-bottom: 72px;
    }

    .account-heading,
    .account-section-head,
    .account-info-row,
    .account-order-head {
        align-items: flex-start;
    }

    .account-section-head,
    .account-info-row,
    .account-order-head,
    .account-toggle-row {
        flex-direction: column;
    }

    .account-modal {
        align-items: flex-start;
        padding: 12px;
    }

    .account-modal-dialog {
        max-height: calc(100vh - 24px);
        padding: 22px 16px 18px;
        border-radius: 18px;
    }

    .account-modal-dialog h2 {
        margin-right: 42px;
        font-size: 24px;
    }

    .account-modal-grid.two,
    .account-invoice-type {
        grid-template-columns: 1fr;
    }

    .account-modal-form input,
    .account-modal-form select,
    .account-invoice-type span {
        min-height: 52px;
        font-size: 15px;
    }

    .account-modal-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .account-link-button,
    .account-save-button {
        width: 100%;
        min-height: 46px;
        font-size: 15px;
    }

    .account-order-summary {
        justify-items: start;
        text-align: left;
    }

    .account-order-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}


.nav-cube {
    position: absolute;
    bottom: -12px;
    left: 50%;
    width: 16px;
    height: 16px;
    opacity: 0;
    transform: translateX(-50%) translateY(8px) scale(0.82);
    pointer-events: none;
}

.nav-cube span {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    filter: drop-shadow(0 0 0 var(--orange));
}

.nav-cube span:nth-child(1) {
    background: rgba(255, 106, 0, 0.22);
    clip-path: polygon(50% 0, 100% 25%, 50% 50%, 0 25%);
}

.nav-cube span:nth-child(2) {
    background: rgba(255, 106, 0, 0.34);
    clip-path: polygon(100% 25%, 50% 50%, 50% 100%, 100% 75%);
}

.nav-cube span:nth-child(3) {
    background: rgba(255, 106, 0, 0.16);
    clip-path: polygon(0 25%, 50% 50%, 50% 100%, 0 75%);
}

.nav-cube span:nth-child(n+4) {
    display: none;
}

.nav>a:hover .nav-cube,
.nav-dropdown-toggle:hover .nav-cube {
    opacity: 1;
    animation: navCubeBuild 0.58s cubic-bezier(0.2, 0.84, 0.22, 1) both;
}

.nav>a.active .nav-cube,
.nav-dropdown.active .nav-cube {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}

.nav>a:hover .nav-cube span,
.nav-dropdown-toggle:hover .nav-cube span {
    animation: navCubeFace 0.36s ease both;
}

.nav>a.active .nav-cube span,
.nav-dropdown.active .nav-cube span {
    opacity: 1;
}

.nav>a:hover .nav-cube span:nth-child(2),
.nav-dropdown-toggle:hover .nav-cube span:nth-child(2) {
    animation-delay: 0.05s;
}

.nav>a:hover .nav-cube span:nth-child(3),
.nav-dropdown-toggle:hover .nav-cube span:nth-child(3) {
    animation-delay: 0.1s;
}

@keyframes navCubeFace {
    0% {
        opacity: 0;
        transform: scale(0.72);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes navCubeBuild {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(8px) scale(0.72) rotate(-10deg);
    }

    58% {
        opacity: 1;
        transform: translateX(-50%) translateY(-1px) scale(1.08) rotate(3deg);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1) rotate(0);
    }
}

.icon-button {
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
    border-radius: 50%;
}

.has-tooltip {
    overflow: visible;
}

.has-tooltip::before {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    z-index: 40;
    width: max-content;
    max-width: 180px;
    padding: 8px 10px;
    color: var(--white);
    background: var(--anthracite);
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(43, 47, 51, 0.18);
    content: attr(data-tooltip);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.has-tooltip:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.cart-button b {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    font-size: 11px;
}

.select-trigger {
    overflow: hidden;
}

.select-trigger::after {
    display: none;
}

.select-trigger:hover {
    transform: none;
    box-shadow: none;
}

.modal-close {
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0;
    line-height: 0;
}

.modal-close svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
}

@media (max-width: 1040px) {
    .nav.open .nav-cube {
        display: none;
    }
}

@media (max-width: 720px) {
    .auth-button {
        display: inline-flex;
    }

    .icon-button {
        width: 44px;
        min-width: 44px;
        height: 44px;
        min-height: 44px;
    }

    .has-tooltip::before {
        display: none;
    }
}


.cart-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 121;
    background: rgba(31, 36, 38, 0.48);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.cart-drawer-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 122;
    display: grid;
    grid-template-rows: auto 1fr auto;
    width: min(100%, 430px);
    height: 100dvh;
    background:
        radial-gradient(circle at top right, rgba(255, 106, 0, 0.1), transparent 15rem),
        var(--light);
    border-left: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow: -28px 0 80px rgba(31, 36, 38, 0.18);
    transform: translateX(104%);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.3s;
    visibility: hidden;
    pointer-events: none;
    contain: layout paint;
}

.cart-drawer.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

.cart-drawer-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 28px 26px 20px;
    border-bottom: 1px solid var(--line);
}

.cart-drawer-header h2 {
    margin: 14px 0 0;
    color: var(--anthracite-dark);
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.055em;
}

.cart-drawer-close {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--anthracite);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-drawer-close:hover {
    transform: rotate(90deg);
    box-shadow: 0 14px 34px rgba(43, 47, 51, 0.12);
}

.cart-drawer-close svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
}

.cart-drawer-body {
    min-height: 0;
    overflow: auto;
    padding: 20px 20px 24px;
}

.cart-empty {
    display: grid;
    min-height: 100%;
    place-items: center;
    align-content: center;
    padding: 30px 10px;
    text-align: center;
}

.cart-empty.hidden {
    display: none;
}

.cart-empty-icon {
    display: grid;
    width: 84px;
    height: 84px;
    place-items: center;
    color: var(--orange);
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 106, 0, 0.18);
    border-radius: 28px;
}

.cart-empty-icon svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-empty h3 {
    margin: 18px 0 8px;
    color: var(--anthracite-dark);
    font-size: 24px;
    letter-spacing: -0.04em;
}

.cart-empty p {
    max-width: 280px;
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.6;
}

.cart-items {
    display: grid;
    gap: 14px;
}

.cart-item {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 14px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
    border-radius: 20px;
    animation: cartItemIn 0.22s ease both;
}

.cart-item-thumb {
    width: 76px;
    height: 86px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.cart-item-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.cart-item-info {
    display: grid;
    min-width: 0;
    gap: 8px;
}

.cart-item-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: start;
}

.cart-item-title {
    min-width: 0;
}

.cart-item-title span {
    display: block;
    color: var(--orange);
    font-size: 11px;
    font-weight: 900;
}

.cart-item-title h3 {
    margin: 4px 0 0;
    color: var(--anthracite-dark);
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cart-item-customization {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 10px;
    background: rgba(255, 106, 0, 0.08);
    border: 1px solid rgba(255, 106, 0, 0.16);
    border-radius: 14px;
}

.cart-item-customization div {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 8px;
}

.cart-item-customization dt,
.cart-item-customization dd {
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
}

.cart-item-customization dt {
    color: var(--orange);
    font-weight: 900;
}

.cart-item-customization dd {
    min-width: 0;
    color: var(--anthracite-dark);
    font-weight: 600;
    overflow-wrap: anywhere;
}

.cart-remove {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--muted);
    background: rgba(43, 47, 51, 0.05);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.cart-remove:hover {
    color: var(--orange);
    background: rgba(255, 106, 0, 0.1);
    transform: scale(1.05);
}

.cart-remove svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
}

.cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    background: rgba(43, 47, 51, 0.05);
    border-radius: 999px;
}

.quantity-control button {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: var(--anthracite);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-weight: 900;
    cursor: pointer;
}

.quantity-control span {
    min-width: 22px;
    text-align: center;
    color: var(--anthracite);
    font-size: 13px;
    font-weight: 900;
}

.cart-item-price {
    color: var(--anthracite-dark);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.cart-drawer-footer {
    padding: 18px 20px 22px;
    background: rgba(255, 255, 255, 0.82);
    border-top: 1px solid var(--line);
    box-shadow: 0 -18px 40px rgba(43, 47, 51, 0.06);
}

.cart-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    color: var(--muted);
    font-weight: 700;
}

.cart-summary-row strong {
    color: var(--anthracite-dark);
    font-size: 24px;
    letter-spacing: -0.04em;
}

.cart-summary-total {
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.cart-summary-total span,
.cart-summary-total strong {
    color: var(--plum-dark);
}

.checkout-button {
    width: 100%;
}

.cart-drawer-footer small {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

body.cart-open {
    overflow: hidden;
}

@keyframes cartItemIn {
    from {
        opacity: 0;
        transform: translateX(18px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 520px) {
    .cart-drawer {
        width: 100%;
    }

    .cart-drawer-header {
        padding: 24px 18px 18px;
    }

    .cart-drawer-body {
        padding: 18px 14px;
    }

    .cart-drawer-footer {
        padding: 16px 14px 18px;
    }
}


body {
    font-weight: 400;
    letter-spacing: -0.01em;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
}

input::placeholder,
textarea::placeholder {
    color: rgba(104, 112, 116, 0.68);
    font-weight: 400;
    letter-spacing: -0.01em;
}

input,
select,
textarea,
.select-trigger {
    font-weight: 400;
}

.select-trigger span {
    color: var(--ink);
    font-weight: 400;
    letter-spacing: -0.01em;
}

label {
    color: rgba(43, 47, 51, 0.82);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.005em;
}

.nav {
    font-weight: 600;
    letter-spacing: -0.01em;
}

.logo-text strong {
    font-weight: 750;
}

.logo-text small {
    font-weight: 500;
}

.eyebrow {
    font-weight: 650;
    letter-spacing: -0.005em;
}

.hero h1,
.section-heading h2,
.workshop-content h2,
.register-copy h2,
.corporate-card h2,
.auth-panel h2,
.cart-drawer-header h2 {
    font-weight: 750;
    letter-spacing: -0.065em;
}

.hero p,
.section-heading p,
.workshop-content p,
.register-copy p,
.corporate-card p,
.quick-card p,
.product-info p,
.event-card p,
.process-card p,
.why-card p,
.faq-item p,
.footer p,
.cart-empty p,
.auth-panel p {
    font-weight: 400;
    letter-spacing: -0.01em;
}

.button,
.add-cart,
.category,
.auth-button,
.cart-button,
.auth-tab,
.checkout-button {
    font-weight: 700;
    letter-spacing: -0.01em;
}

.quick-card h2,
.product-info h3,
.event-card h3,
.process-card h3,
.why-card h3,
.cart-empty h3,
.cart-item-title h3 {
    font-weight: 700;
    letter-spacing: -0.035em;
}

.product-info span,
.event-date,
.cart-item-title span {
    font-weight: 700;
    letter-spacing: 0.005em;
}

.product-footer strong,
.cart-item-price,
.cart-summary-row strong,
.hero-stats strong {
    font-weight: 750;
}

.quick-icon,
.process-card span {
    font-weight: 750;
}

.hero-stats span,
.workshop-list span,
.footer a,
.cart-summary-row,
.select-menu button {
    font-weight: 500;
    letter-spacing: -0.01em;
}

.workshop-list strong,
.footer h3,
.quantity-control span {
    font-weight: 650;
    letter-spacing: -0.01em;
}

.faq-item span {
    font-weight: 650;
    letter-spacing: -0.02em;
}

.form-success,
.field-error,
.cart-drawer-footer small {
    font-weight: 400;
}

.auth-form .button,
.form-button {
    font-weight: 700;
}

@media (max-width: 720px) {
    .hero h1 {
        letter-spacing: -0.055em;
    }
}

@media (max-width: 1040px) {
    .corporate-page {
        grid-template-columns: 1fr;
        padding-top: 42px;
    }

    .corporate-nav {
        position: static;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .corporate-nav strong {
        grid-column: 1 / -1;
    }

    .corporate-story-card,
    .corporate-info-card,
    .corporate-media-card {
        grid-template-columns: 1fr;
    }

    .corporate-visual,
    .corporate-media-visual {
        min-height: 300px;
    }

    .corporate-solution-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .corporate-page {
        padding-top: 34px;
        padding-bottom: 72px;
    }

    .corporate-nav,
    .corporate-solution-grid {
        grid-template-columns: 1fr;
    }

    .corporate-story-card,
    .corporate-info-card,
    .corporate-media-card,
    .corporate-cta {
        padding: 22px;
    }

    .corporate-story-card h2,
    .corporate-info-card h2,
    .corporate-media-card h2,
    .corporate-cta h2 {
        font-size: 30px;
    }

    .corporate-cta {
        display: grid;
    }

    .corporate-cta .button {
        justify-self: start;
    }
}

.checkout-page {
    padding-block: 72px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 28px;
    align-items: start;
}

.checkout-main {
    display: grid;
    gap: 22px;
}

.checkout-card {
    background: #fff;
    border: 1px solid rgba(43, 47, 51, 0.12);
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(43, 47, 51, 0.08);
}

.checkout-card-head {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.checkout-card-head > span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: rgba(255, 108, 13, 0.12);
    color: var(--primary);
    font-weight: 800;
}

.checkout-card-head h2 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.25;
    color: var(--ink);
}

.checkout-card-head p {
    margin: 6px 0 0;
    color: var(--muted);
}

.checkout-grid {
    display: grid;
    gap: 16px;
}

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

.checkout-card label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--ink);
    font-weight: 700;
}

.checkout-card label span {
    font-size: 0.92rem;
}

.checkout-card input,
.checkout-card textarea {
    width: 100%;
    border: 1px solid rgba(43, 47, 51, 0.16);
    border-radius: 8px;
    padding: 13px 14px;
    font: inherit;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-card input:focus,
.checkout-card textarea:focus {
    outline: none;
    border-color: rgba(255, 108, 13, 0.65);
    box-shadow: 0 0 0 4px rgba(255, 108, 13, 0.12);
}

.checkout-radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.checkout-radio-row label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 12px 14px;
    border: 1px solid rgba(43, 47, 51, 0.14);
    border-radius: 8px;
    background: #fbfaf8;
}

.checkout-radio-row input,
.checkout-contract input {
    width: auto;
}

.checkout-summary {
    position: sticky;
    top: 118px;
}

.checkout-summary-card {
    box-shadow: 0 24px 60px rgba(43, 47, 51, 0.12);
}

.checkout-items {
    display: grid;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(43, 47, 51, 0.1);
}

.checkout-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
}

.checkout-item h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
    color: var(--ink);
}

.checkout-item span,
.checkout-item small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

.checkout-item strong {
    white-space: nowrap;
    color: var(--ink);
}

.checkout-totals {
    display: grid;
    gap: 12px;
    padding-block: 20px;
    border-bottom: 1px solid rgba(43, 47, 51, 0.1);
}

.checkout-totals > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
}

.checkout-total-row {
    font-size: 1.2rem;
    color: var(--ink) !important;
}

.checkout-contract {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: flex-start;
    gap: 10px !important;
    margin: 18px 0 !important;
    color: var(--muted) !important;
    font-weight: 600 !important;
}

.checkout-contract input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex: 0 0 auto;
}

.checkout-contract button {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--primary);
    font: inherit;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.checkout-contract button:hover {
    color: var(--ink);
}

.checkout-pay-button {
    width: 100%;
    justify-content: center;
}

.checkout-secure-note {
    margin: 12px 0 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
}

.checkout-empty,
.checkout-payment-shell {
    max-width: 760px;
    margin-inline: auto;
}

.checkout-empty {
    background: #fff;
    border: 1px solid rgba(43, 47, 51, 0.12);
    border-radius: 8px;
    padding: 42px;
    text-align: center;
}

.iyzico-checkout-form {
    min-height: 420px;
}

@media (max-width: 992px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }
}

@media (max-width: 640px) {
    .checkout-page {
        padding-block: 48px;
    }

    .checkout-card {
        padding: 20px;
    }

    .checkout-grid.two {
        grid-template-columns: 1fr;
    }
}
