:root {
    --color-primary: #0A2A43;
    --color-accent: #2BC4AD;
    --color-muted: #F2F5F8;
    --color-text: #1C2430;
    --color-white: #FFFFFF;
    --shadow-soft: 0 18px 40px rgba(10, 42, 67, 0.12);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --max-width: 1180px;
    scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background: var(--color-white);
    overflow-x: hidden;
    color: var(--color-text);
}
body.nav-open {
    overflow: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}
input,
textarea,
button {
    font: inherit;
}
button {
    cursor: pointer;
}
section {
    padding: 80px 0;
}
.hidden {
    display: none !important;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}
.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(28px, 4vw, 36px);
    margin: 0 0 20px;
    color: var(--color-primary);
}
.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(18px, 3vw, 24px);
    margin: 0 0 16px;
    color: var(--color-primary);
}
.subheading {
    margin: 0 0 24px;
    color: rgba(28, 36, 48, 0.75);
    font-size: clamp(15px, 2.5vw, 18px);
    max-width: 640px;
}
.container {
    width: min(100% - 40px, var(--max-width));
    margin: 0 auto;
}
.top-bar {
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 14px;
    padding: 10px 0;
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.top-links {
    display: flex;
    gap: 16px;
}
.top-links a {
    text-decoration: underline;
    font-weight: 500;
}
header {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(10, 42, 67, 0.08);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 24px;
    position: relative;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
}
.nav-links {
    display: flex;
    gap: 24px;
    font-weight: 500;
}
.nav-links a {
    position: relative;
    padding: 4px 0;
}
.nav-links a[aria-current="page"]::after,
.nav-links a:focus-visible::after,
.nav-links a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: var(--color-accent);
}
.nav-icons {
    display: flex;
    gap: 14px;
}
.nav-mobile-actions {
    display: none;
    gap: 10px;
    margin-top: 6px;
}
.nav-mobile-action {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(10, 42, 67, 0.12);
    background: rgba(10, 42, 67, 0.04);
    color: var(--color-primary);
    font-weight: 600;
    cursor: pointer;
}
.nav-mobile-action:hover {
    background: rgba(10, 42, 67, 0.08);
}
.nav-mobile-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mobile-nav-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(10, 42, 67, 0.16);
    border-radius: 12px;
    background: rgba(10, 42, 67, 0.04);
    color: var(--color-primary);
    font-weight: 600;
}
.mobile-nav-icon {
    width: 22px;
    height: 16px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
}
.mobile-nav-icon span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform-origin: center;
}
.mobile-nav-label {
    font-size: 14px;
}
.mobile-nav-toggle.is-active .mobile-nav-icon span:nth-child(1) {
    transform: translateY(7px) rotate(42deg);
}
.mobile-nav-toggle.is-active .mobile-nav-icon span:nth-child(2) {
    opacity: 0;
}
.mobile-nav-toggle.is-active .mobile-nav-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-42deg);
}
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 42, 67, 0.38);
    backdrop-filter: blur(2px);
    display: none;
    z-index: 1000;
}
.nav-backdrop.is-visible {
    display: block;
}
.cart-button {
    position: relative;
}
.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #ef4444;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(239, 68, 68, 0.25);
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.18s ease, transform 0.18s ease;
    pointer-events: none;
}
.cart-button.has-items .cart-badge {
    opacity: 1;
    transform: scale(1);
}
.cart-button.is-bumped svg {
    transform: translateY(-2px);
    transition: transform 0.18s ease;
}
.cart-feedback-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(10, 42, 67, 0.95);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 18px 32px rgba(10, 42, 67, 0.25);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 9999;
}
.cart-feedback-toast.show {
    opacity: 1;
    transform: translateY(0);
}
.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(10, 42, 67, 0.12);
    background: var(--color-white);
    display: grid;
    place-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.icon-btn:hover,
.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(43, 196, 173, 0.18);
}
.btn,
.btn-primary,
.btn-secondary,
.btn-ghost {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(10, 42, 67, 0.08);
    backface-visibility: hidden;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary {
    background: linear-gradient(135deg, #2BC4AD 0%, #5DE0C1 100%);
    color: var(--color-primary);
    border-color: rgba(10, 42, 67, 0.08);
    box-shadow: 0 18px 32px rgba(43, 196, 173, 0.26);
}
.btn-secondary {
    background: linear-gradient(135deg, #0A2A43 0%, #123857 100%);
    color: var(--color-white);
    border-color: rgba(10, 42, 67, 0.3);
    box-shadow: 0 14px 28px rgba(10, 42, 67, 0.24);
}
.btn-ghost {
    background: rgba(10, 42, 67, 0.03);
    border-color: rgba(10, 42, 67, 0.16);
    box-shadow: none;
    color: var(--color-primary);
}
.btn-ghost:hover {
    background: rgba(10, 42, 67, 0.06);
    border-color: rgba(10, 42, 67, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(10, 42, 67, 0.14);
}
:is(.btn, .btn-primary, .btn-secondary, .btn-ghost, .icon-btn):focus-visible {
    outline: 3px solid rgba(43, 196, 173, 0.6);
    outline-offset: 4px;
}
.hero {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    padding: 120px 0 80px;
}
.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(34px, 5vw, 52px);
    margin: 0 0 18px;
    color: var(--color-primary);
}
.hero-content p {
    font-size: 18px;
    margin-bottom: 28px;
}
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.info-banner {
    margin-top: 20px;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    background: rgba(43, 196, 173, 0.12);
    color: var(--color-primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.info-banner a {
    text-decoration: underline;
}
.hero-visual {
    display: grid;
    gap: 18px;
}
.hero-visual .visual-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.hero-visual .visual-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 18px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 12px;
}
.hero-visual span {
    font-weight: 600;
    color: var(--color-primary);
}
.category-hero {
    padding: 80px 48px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    gap: 32px;
    align-items: center;
}
.category-hero .hero-content {
    display: grid;
    gap: 18px;
}
.category-hero .hero-visual {
    align-self: stretch;
}
.category-hero .visual-card {
    height: 100%;
}
.strengths-process {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 56px;
    display: grid;
    gap: 48px;
}
.strengths-block,
.process-block {
    display: grid;
    gap: 24px;
}
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.strength-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
}
.strength-item svg {
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(43, 196, 173, 0.16);
    color: var(--color-primary);
}
.strength-item strong {
    font-size: 17px;
    color: var(--color-primary);
}
.process-steps,
.strength-process-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.process-step {
    background: rgba(10, 42, 67, 0.05);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: grid;
    gap: 8px;
}
.process-step-number {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--color-accent);
    color: var(--color-primary);
    font-weight: 700;
    display: grid;
    place-items: center;
}
.product-catalog {
    display: grid;
    gap: 24px;
}
.product-catalog .section-title,
.product-catalog .subheading {
    text-align: center;
}
.product-catalog .subheading {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.category-tabs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(10, 42, 67, 0.06);
    justify-self: center;
    flex-wrap: wrap;
}
.category-tab {
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 600;
    color: var(--color-primary);
    transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
    border: none;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
}
.category-tab:hover,
.category-tab:focus-visible {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 12px 24px rgba(10, 42, 67, 0.18);
}
.category-tab.is-active {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 18px 36px rgba(10, 42, 67, 0.22);
}
.category-panel {
    display: grid;
    gap: 24px;
}
.category-panel[hidden] {
    display: none !important;
}
.category-description {
    margin: 0;
    color: rgba(28, 36, 48, 0.78);
    max-width: none;
}
.category-section {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(10, 42, 67, 0.06);
}
.category-section::before {
    content: "";
    position: absolute;
    inset: -40% 55% auto -30%;
    background: radial-gradient(circle, rgba(43, 196, 173, 0.26) 0%, transparent 70%);
    pointer-events: none;
}
.category-section > * {
    position: relative;
    z-index: 1;
}
.category-header {
    text-align: center;
    width: 100%;
    margin: 0 0 36px;
    display: grid;
    gap: 18px;
}
.category-header .subheading {
    max-width: none;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}
.product-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 24px;
    display: grid;
    gap: 18px;
    border: 1px solid rgba(10, 42, 67, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(10, 42, 67, 0.18);
    border-color: rgba(10, 42, 67, 0.12);
}
.product-card.compact {
    padding: 16px;
    gap: 12px;
}
.product-card.compact .card-thumb {
    aspect-ratio: 1 / 1;
}
.product-card.compact .product-title {
    font-size: 17px;
    margin: 0;
}
.product-card.compact .product-price {
    font-size: 19px;
}
.product-card.compact .chip-group,
.product-card.compact .product-teaser,
.product-card.compact .color-picker,
.product-card.compact .product-meta,
.product-card.compact .product-actions {
    display: none;
}
.card-thumb {
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 3 / 4;
}
.card-thumb-link {
    display: block;
    width: 100%;
    height: 100%;
}
.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.product-card:hover .card-thumb img {
    transform: scale(1.04);
}
.thumb-video {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: #e2e8f0;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 13px;
    width: 100%;
    height: 100%;
}
.product-title a {
    color: inherit;
    text-decoration: none;
}
.product-title a:hover {
    text-decoration: underline;
}
.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.chip {
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(43, 196, 173, 0.16), rgba(10, 42, 67, 0.06));
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
}
.product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
}
.product-price small {
    display: block;
    font-size: 13px;
    color: rgba(28, 36, 48, 0.65);
    margin-top: 4px;
}
.color-picker {
    display: grid;
    gap: 8px;
}
.color-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(28, 36, 48, 0.68);
}
.color-picker-header strong {
    font-size: 15px;
    color: var(--color-primary);
}
.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 4px 0;
    background: var(--color-white);
    padding: 10px;
    border-radius: var(--radius-md);
    border: none;
    box-shadow: none;
}
.color-swatches button {
    padding: 0;
    border: none;
    background: transparent;
}
.color-swatch {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: var(--swatch-color, #e2e8f0);
    border: 2px solid var(--swatch-border, rgba(15, 23, 42, 0.28));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    cursor: pointer;
}
.color-swatch:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}
.color-swatch.is-selected {
    box-shadow: 0 0 0 2px rgba(10, 42, 67, 0.16);
    transform: scale(1.08);
}
.color-swatch[data-color-id="beyaz"],
button[data-color-id="beyaz"].color-swatch {
    box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.18), 0 8px 18px rgba(10, 42, 67, 0.08);
}
.product-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: center;
}
.product-actions .btn-primary,
.product-actions .btn-secondary,
.detail-cta .btn-primary,
.detail-cta .btn-ghost {
    white-space: nowrap;
}
.product-meta {
    display: grid;
    gap: 0;
    font-size: 14px;
    color: #0f172a;
    margin-top: 0;
}
.detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(10, 42, 67, 0.07);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border-top: none;
    border-left: none;
    border-right: none;
}
.detail-row:last-child {
    border-bottom: none;
}
.detail-label {
    font-weight: 600;
    font-size: 14px;
    color: #64748b;
}
.detail-value {
    text-align: right;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 14px;
}
.product-description {
    margin: 18px 0;
    padding: 16px 18px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef3f8 100%);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(12, 25, 45, 0.05);
}
.category-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}
.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.value-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 12px;
}
.testimonials {
    position: relative;
}
.testimonial-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 360px);
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
}
.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 24px;
    display: grid;
    gap: 12px;
    scroll-snap-align: start;
}
.stars {
    color: #F7B538;
    font-size: 18px;
}
.catalog-grid {
    display: grid;
    gap: 24px;
}
.catalog-group {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 32px;
    display: grid;
    gap: 20px;
}
.catalog-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.catalog-card {
    border: 1px solid rgba(10, 42, 67, 0.08);
    border-radius: var(--radius-sm);
    background: var(--color-muted);
    padding: 24px;
    display: grid;
    gap: 12px;
}
.catalog-meta {
    display: grid;
    gap: 8px;
    font-size: 14px;
}
.faq-grid {
    display: grid;
    gap: 18px;
    max-width: 720px;
}
details {
    background: var(--color-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    padding: 16px 20px;
}
details summary {
    font-weight: 600;
    cursor: pointer;
}
details summary::-webkit-details-marker {
    display: none;
}
details[open] summary {
    color: var(--color-primary);
}
.contact-grid {
    display: grid;
    gap: 24px;
}
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.contact-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 22px;
    display: grid;
    gap: 8px;
}
.contact-form-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F7FBFF 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 56px;
    display: grid;
    gap: 32px;
    border: 1px solid rgba(10, 42, 67, 0.08);
}
.contact-form-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: start;
}
.quote-form-info {
    display: grid;
    gap: 12px;
    align-content: start;
}
.quote-form-info .subheading {
    margin: 0 0 12px;
}
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.12);
    color: #128C7E;
    font-weight: 600;
    border: 1px solid rgba(37, 211, 102, 0.28);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.12);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.18);
    box-shadow: 0 14px 26px rgba(37, 211, 102, 0.16);
    transform: translateY(-2px);
}
.whatsapp-link:focus-visible {
    outline: 2px solid #25D366;
    outline-offset: 4px;
}
.whatsapp-icon {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #25D366;
    color: #FFFFFF;
}
.whatsapp-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}
.contact-form {
    display: grid;
    gap: 16px;
}
.contact-form label {
    font-weight: 600;
    color: var(--color-primary);
}
.contact-form input,
.contact-form textarea {
    border: 1px solid rgba(10, 42, 67, 0.18);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    width: 100%;
    max-width: 100%;
}
.contact-form input[type="file"] {
    padding: 10px 16px;
    background: rgba(10, 42, 67, 0.04);
    width: 100%;
}
.checkout-section {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 56px;
    display: grid;
    gap: 32px;
}
.checkout-header {
    display: grid;
    gap: 12px;
}
.checkout-form {
    display: grid;
    gap: 28px;
}
.checkout-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.checkout-column {
    display: grid;
    gap: 16px;
    padding: 24px;
    border: 1px solid rgba(10, 42, 67, 0.08);
    border-radius: var(--radius-md);
    background: rgba(10, 42, 67, 0.03);
    margin: 0;
}
.checkout-column legend {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}
.checkout-column label {
    font-weight: 600;
    color: var(--color-primary);
}
.checkout-column input,
.checkout-column textarea,
.checkout-column select {
    border: 1px solid rgba(10, 42, 67, 0.18);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    background: var(--color-white);
    font: inherit;
}
.checkout-column textarea {
    resize: vertical;
    min-height: 120px;
}
.checkout-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.checkout-alert {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(10, 42, 67, 0.12);
    background: rgba(43, 196, 173, 0.08);
    color: var(--color-primary);
    font-weight: 600;
}
.checkout-alert[data-state="error"] {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.24);
    color: #b91c1c;
}
.checkout-alert[data-state="success"] {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
    color: #166534;
}
.checkout-alert.hidden {
    display: none !important;
}
.checkout-loading {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px dashed rgba(10, 42, 67, 0.2);
    background: rgba(10, 42, 67, 0.04);
}
.checkout-loading .spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(10, 42, 67, 0.18);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}
.checkout-loading .loading-title {
    margin: 0;
    font-weight: 700;
    color: var(--color-primary);
}
.checkout-loading .loading-sub {
    margin: 0;
    font-size: 14px;
    color: rgba(28, 36, 48, 0.75);
}
.checkout-loading.hidden {
    display: none !important;
}
.checkout-auth-card {
    border: 1px solid rgba(10, 42, 67, 0.12);
    border-radius: var(--radius-sm);
    padding: 12px;
    background: rgba(10, 42, 67, 0.02);
    display: grid;
    gap: 8px;
}
.auth-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.auth-eyebrow {
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(10, 42, 67, 0.7);
    margin: 0 0 2px;
}
.auth-title {
    margin: 0;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 14px;
    line-height: 1.4;
}
.auth-user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(10, 42, 67, 0.12);
    border-radius: var(--radius-sm);
    background: #fff;
}
.auth-user.hidden {
    display: none;
}
.auth-user-ident {
    display: flex;
    align-items: center;
    gap: 8px;
}
.auth-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    letter-spacing: 0.02em;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    font-size: 13px;
}
.auth-avatar.has-image {
    color: transparent;
}
.auth-user-name {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 14px;
}
.auth-user-email {
    color: rgba(10, 42, 67, 0.75);
    font-size: 13px;
}
.auth-google {
    min-height: 36px;
}
.auth-status {
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
    font-size: 13px;
}
.auth-status[data-state="error"] {
    color: #b91c1c;
}
.auth-status[data-state="success"] {
    color: #166534;
}
.auth-status.hidden {
    display: none;
}
.auth-hint {
    margin: 0;
    color: rgba(10, 42, 67, 0.75);
    font-size: 13px;
    line-height: 1.4;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.cart-items {
    display: grid;
    gap: 20px;
}
.cart-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 20px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
}
.cart-item-media {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}
.cart-item-info {
    display: grid;
    gap: 14px;
}
.cart-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}
.cart-item-head h4 {
    margin: 0;
}
.cart-item-total {
    font-weight: 700;
    color: var(--color-primary);
}
.cart-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: rgba(28, 36, 48, 0.75);
}
.cart-qty {
    display: grid;
    gap: 6px;
    align-items: center;
}
.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(10, 42, 67, 0.14);
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    box-shadow: inset 0 1px 2px rgba(10, 42, 67, 0.05);
}
.qty-control input {
    width: 64px;
    text-align: center;
    border: 0;
    background: transparent;
    font-weight: 600;
    color: var(--color-primary);
    padding: 8px 6px;
    -moz-appearance: textfield;
}
.qty-control input::-webkit-inner-spin-button,
.qty-control input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.qty-btn {
    width: 36px;
    height: 36px;
    border: 0;
    background: rgba(10, 42, 67, 0.06);
    color: var(--color-primary);
    font-weight: 800;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.qty-btn:hover {
    background: rgba(10, 42, 67, 0.12);
}
.qty-btn:focus-visible {
    outline: 2px solid rgba(43, 196, 173, 0.8);
    outline-offset: 2px;
}
.cart-item-note {
    margin: 0;
    font-size: 14px;
    color: rgba(28, 36, 48, 0.75);
}
.cart-color-swatches {
    margin-top: 4px;
}
.cart-remove {
    justify-self: flex-start;
}
.order-summary {
    margin-top: 32px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 24px;
    display: grid;
    gap: 12px;
}
.summary-line,
.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.summary-total {
    padding-top: 12px;
    border-top: 1px solid rgba(10, 42, 67, 0.12);
}
.summary-total strong {
    font-size: 22px;
    color: var(--color-primary);
}
.order-tracking {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 48px;
    display: grid;
    gap: 24px;
}
.order-tracking-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: end;
}
.order-tracking-form div {
    display: grid;
    gap: 8px;
}
.order-tracking-form button {
    justify-self: flex-start;
}
.payment-status {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 40px;
    display: grid;
    gap: 14px;
    border: 1px solid rgba(10, 42, 67, 0.08);
}
.payment-status.glassy {
    background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.94));
    border: 1px solid rgba(10, 42, 67, 0.05);
    box-shadow: 0 24px 60px rgba(10,42,67,0.12);
}
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    background: rgba(10, 42, 67, 0.06);
    color: var(--color-primary);
}
.status-badge.success {
    background: rgba(34, 197, 94, 0.12);
    color: #166534;
}
.status-badge.error,
.status-badge.danger {
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
}
.status-badge.neutral {
    background: rgba(10, 42, 67, 0.06);
    color: var(--color-primary);
}
.status-body {
    color: rgba(28, 36, 48, 0.75);
    font-size: 16px;
}
.order-status-card {
    background: rgba(43, 196, 173, 0.12);
    border-radius: var(--radius-md);
    padding: 20px;
    color: var(--color-primary);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 8px;
}
.order-card {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 28px 60px rgba(15,23,42,0.12);
    overflow: hidden;
    border: 1px solid rgba(10, 42, 67, 0.06);
}
.order-card.elegant {
    background: linear-gradient(145deg, #ffffff 0%, #f9fbff 60%, #eef6ff 100%);
}
.order-card-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.order-head-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.order-card-body {
    margin-top: 0;
    padding: 32px 28px 12px;
    display: grid;
    gap: 12px;
}
.order-card .eyebrow.accent {
    color: #0a4d68;
    font-weight: 700;
}
.order-card-body.hidden {
    display: none;
}
.order-card-banner {
    background: #e8f8ed;
    padding: 14px 20px;
}
.order-title {
    font-size: clamp(26px, 2.5vw, 32px);
    color: #0a2a43;
    margin: 0;
}
.order-lead {
    margin: 0;
    color: rgba(10,42,67,0.78);
    font-size: 16px;
}
.order-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 8px;
}
.order-grid {
    display: grid;
    gap: 16px;
    padding: 0 28px 28px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.order-panel {
    background: #f8fbff;
    border: 1px solid rgba(10,42,67,0.06);
    border-radius: 16px;
    padding: 18px;
    display: grid;
    gap: 12px;
}
.order-panel span.pill {
    background: rgba(10, 42, 67, 0.06);
}
.order-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.order-panel span.pill {
    font-weight: 700;
}
.order-panel.span-2 {
    grid-column: span 2;
}
@media (max-width: 768px) {
    .order-panel.span-2 {
        grid-column: span 1;
    }
}

/* Profile */
.profile-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    margin-bottom: 48px;
}
.profile-card {
    background: #fff;
    border: 1px solid rgba(10, 42, 67, 0.08);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 14px;
}
.profile-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.profile-auth-block {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.profile-auth-column {
    background: #f7fafc;
    border-radius: 12px;
    padding: 14px;
    border: 1px solid rgba(10, 42, 67, 0.06);
}
.stacked-form {
    display: grid;
    gap: 8px;
}
.stacked-form input,
.stacked-form textarea {
    width: 100%;
}
.stacked-form.two-column {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.profile-user {
    display: flex;
    gap: 12px;
    align-items: center;
}
.profile-orders .order-card {
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}
.profile-orders .order-card-head {
    padding: 14px 18px 0;
}
.profile-orders .order-card-body {
    padding: 0 18px 16px;
}
.auth-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0a2a43;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
}
.pill-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.pill-row .pill {
    background: rgba(10, 42, 67, 0.08);
    color: #0a2a43;
}
.summary-rows.column {
    display: grid;
    gap: 8px;
}
.item-line {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.item-name {
    font-weight: 600;
    color: #0a2a43;
}
.item-meta {
    color: rgba(10, 42, 67, 0.65);
    font-size: 13px;
}
.order-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
    background: #f8fafc;
    border-radius: var(--radius-sm);
    padding: 10px;
}
.order-items-table {
    overflow-x: auto;
}
.order-items-table table {
    width: 100%;
    border-collapse: collapse;
}
.order-items-table th,
.order-items-table td {
    padding: 8px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}
.btn-secondary.small {
    padding: 6px 10px;
    font-size: 13px;
}
.order-detail-modal-table {
    overflow-x: auto;
    width: 100%;
    border-collapse: collapse;
}
.order-detail-modal-table th,
.order-detail-modal-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}
.order-status-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    background: #fff;
}
.measurement-cta {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 48px;
}
.measurement-cta-content {
    display: grid;
    gap: 16px;
    justify-items: center;
    text-align: center;
}
.measurement-cta-btn {
    padding-inline: 48px;
    font-size: 18px;
}
.modal {
    border: none;
    border-radius: var(--radius-lg);
    padding: 0;
    max-width: min(720px, 90vw);
    width: 100%;
}
.modal::backdrop {
    background: rgba(12, 23, 38, 0.55);
    backdrop-filter: blur(6px);
}
.modal-content {
    background: var(--color-white);
    border-radius: inherit;
    box-shadow: var(--shadow-soft);
    position: relative;
    display: grid;
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: none;
    background: rgba(10, 42, 67, 0.06);
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}
.modal-close:hover {
    background: rgba(10, 42, 67, 0.12);
}
.modal-body {
    padding: 48px;
    display: grid;
    gap: 24px;
}
.search-modal .modal-body {
    gap: 18px;
}
.search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
}
.search-form input[type="search"] {
    border-radius: 999px;
    border: 1px solid rgba(10, 42, 67, 0.16);
    padding: 14px 18px;
}
.search-feedback {
    font-size: 14px;
    color: rgba(28, 36, 48, 0.68);
}
.search-results {
    display: grid;
    gap: 12px;
}
.search-result {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 12px;
    align-items: center;
    background: rgba(10, 42, 67, 0.02);
    border: 1px solid rgba(10, 42, 67, 0.08);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    transition: border-color 0.18s ease, transform 0.18s ease;
}
.search-result:hover {
    transform: translateY(-2px);
    border-color: rgba(10, 42, 67, 0.16);
}
.search-result img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--color-white);
}
.search-result-content {
    display: grid;
    gap: 6px;
}
.search-result-title {
    margin: 0;
    font-size: 16px;
    color: var(--color-primary);
}
.search-result-meta {
    font-size: 13px;
    color: rgba(28, 36, 48, 0.7);
}
.quote-form {
    display: grid;
    gap: 16px;
}
.quote-support {
    display: flex;
    justify-content: flex-start;
}
.form-feedback {
    margin-top: 4px;
    font-size: 14px;
    color: rgba(28, 36, 48, 0.78);
}
.form-feedback.is-error {
    color: #b91c1c;
}
.form-feedback.is-success {
    color: #0f766e;
}
.order-summary {
    display: grid;
    gap: 16px;
}
.order-hero {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #e6f4ff, #f3fff8);
    border: 1px solid rgba(10, 42, 67, 0.08);
    box-shadow: var(--shadow-soft);
}
.status-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0f766e;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 22px;
    box-shadow: 0 10px 30px rgba(15, 118, 110, 0.2);
}
.order-meta-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.pill {
    border-radius: 999px;
    background: rgba(10, 42, 67, 0.08);
    padding: 8px 12px;
    font-size: 14px;
    display: inline-flex;
    gap: 6px;
    align-items: center;
}
.order-summary-head .eyebrow {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.04em;
    margin: 0 0 4px;
}
.order-summary-head h3 {
    margin: 0 0 4px;
}
.order-summary-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.order-panels {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.order-summary-card {
    border: 1px solid rgba(10, 42, 67, 0.08);
    border-radius: var(--radius-md);
    padding: 16px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 6px;
}
.order-panel {
    border: 1px solid rgba(10, 42, 67, 0.08);
    border-radius: var(--radius-md);
    padding: 16px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 10px;
}
.order-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.status-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.status-steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    background: #f8fafc;
    border: 1px solid rgba(10, 42, 67, 0.06);
}
.status-steps .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-top: 4px;
    background: #cbd5e1;
}
.status-steps li.is-done .dot {
    background: #0f766e;
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.2);
}
.summary-rows {
    display: grid;
    gap: 8px;
}
.summary-rows div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.summary-rows .summary-total {
    font-size: 17px;
    font-weight: 700;
    margin-top: 4px;
}
.note-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    font-size: 14px;
    color: rgba(28, 36, 48, 0.85);
}
.order-summary-card h4 {
    margin: 0 0 4px;
}
.table-basic {
    width: 100%;
    border-collapse: collapse;
}
.table-basic th,
.table-basic td {
    padding: 8px 10px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}
.order-summary-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.legal-hero {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 56px;
    display: grid;
    gap: 18px;
}
.legal-hero h1 {
    margin: 0;
    color: var(--color-primary);
}
.legal-section {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 32px;
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
}
.legal-section h2 {
    margin: 0;
    color: var(--color-primary);
}
.legal-section ul {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 8px;
}
.newsletter {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 40px;
    display: grid;
    gap: 18px;
    text-align: center;
}
.newsletter form {
    display: grid;
    grid-template-columns: 2fr auto;
    gap: 12px;
}
.newsletter input {
    border-radius: 999px;
    border: 1px solid rgba(10, 42, 67, 0.16);
    padding: 14px 20px;
}
footer {
    background: #071D2E;
    color: rgba(255, 255, 255, 0.86);
    padding: 48px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.footer-links {
    display: grid;
    gap: 10px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.78);
}
.footer-meta {
    margin-top: 28px;
    font-size: 14px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    gap: 14px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}
.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.toast .btn-ghost {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--color-white);
}
.toast.cart-toast {
    left: 50%;
    right: auto;
    bottom: 32px;
    width: min(460px, calc(100% - 32px));
    transform: translate(-50%, 24px);
    align-items: flex-start;
    gap: 12px;
}
.toast.cart-toast.show {
    transform: translate(-50%, 0);
}
.toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2bc4ad;
    color: #0a2a43;
    display: grid;
    place-items: center;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(43, 196, 173, 0.32);
}
.toast-body {
    display: grid;
    gap: 6px;
    line-height: 1.4;
}
.toast-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.toast-actions .btn-primary {
    padding-inline: 14px;
}
.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: min(100% - 32px, 1080px);
    background: #ffffff;
    border: 1px solid rgba(10, 42, 67, 0.08);
    box-shadow: 0 18px 40px rgba(10, 42, 67, 0.14);
    border-radius: 16px;
    padding: 18px 20px;
    z-index: 1100;
}
.cookie-banner.hidden {
    display: none;
}
.cookie-content {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cookie-text {
    display: grid;
    gap: 6px;
    max-width: 720px;
    color: rgba(28, 36, 48, 0.82);
    font-size: 15px;
}
.cookie-text a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 600;
}
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.cookie-actions .btn-primary,
.cookie-actions .btn-ghost {
    padding: 10px 16px;
}
.product-detail {
    padding-top: 80px;
    padding-bottom: 80px;
}
.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}
.product-media-stack {
    display: grid;
    gap: 22px;
    position: relative;
}
.product-description-block {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(10, 42, 67, 0.06);
    display: grid;
    gap: 10px;
    position: relative;
    z-index: 3;
    margin-top: 4px;
}
.product-description-block h3 {
    margin: 0;
    font-size: 16px;
    color: var(--color-primary);
}
.product-description-block .product-description {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}
.product-gallery {
    display: grid;
    gap: 16px;
    position: sticky;
    top: 120px;
    z-index: 2;
}
.gallery-main {
    position: relative;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    min-height: 320px;
}
.gallery-main img {
    max-width: 100%;
    max-height: 520px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.gallery-main video {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: #000;
}
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    box-shadow: 0 6px 12px rgba(10, 42, 67, 0.18);
    display: grid;
    place-items: center;
    cursor: pointer;
}
.gallery-nav:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
.gallery-prev {
    left: 16px;
}
.gallery-next {
    right: 16px;
}
.gallery-nav:disabled {
    opacity: 0.45;
    pointer-events: none;
}
.gallery-thumbs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}
.gallery-thumb {
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.18s ease, border-color 0.18s ease;
    cursor: pointer;
}
.gallery-thumb:hover {
    transform: translateY(-2px);
}
.gallery-thumb.is-active {
    border-color: var(--color-primary);
}
.gallery-thumb img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    border-radius: 0;
    background: var(--color-white);
}
.product-info {
    display: grid;
    gap: 18px;
}
.detail-head {
    display: grid;
    gap: 10px;
}
.detail-head h1 {
    margin: 0;
}
.detail-summary-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(10, 42, 67, 0.08);
    display: grid;
    gap: 14px;
}
.detail-price {
    display: grid;
    gap: 4px;
    font-size: 26px;
    font-weight: 700;
    color: var(--color-primary);
}
.detail-price small {
    font-size: 14px;
    color: rgba(28, 36, 48, 0.65);
}
.detail-note {
    margin: 0;
    font-size: 14px;
    color: rgba(28, 36, 48, 0.72);
}
.detail-selectors {
    display: grid;
    gap: 12px;
    align-items: stretch;
}
.selector-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    align-items: center;
}
.variant-picker {
    display: grid;
    gap: 10px;
    margin: 12px 0;
    padding: 12px;
    border: 1px solid rgba(10, 42, 67, 0.12);
    border-radius: var(--radius-md);
    background: var(--color-white);
    border-color: rgba(10, 42, 67, 0.08);
}
.selector-row .variant-picker {
    margin: 0;
}
.detail-color-picker,
.detail-quantity,
.selector-row .variant-picker {
    height: 100%;
}
.variant-field {
    display: grid;
    gap: 6px;
    font-weight: 600;
    color: var(--color-primary);
}
.variant-field select {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(10, 42, 67, 0.18);
    background: #fff;
    font: inherit;
}
.custom-measure-wrap {
    margin-top: 10px;
    display: grid;
    gap: 6px;
}
.custom-measure-label {
    font-size: 13px;
    font-weight: 500;
    color: #475569;
}
.custom-measure-input {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid var(--color-accent);
    background: #f0fdfb;
    font: inherit;
    font-size: 14px;
    color: var(--color-primary);
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.custom-measure-input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(43, 196, 173, 0.15);
}
.custom-measure-input::placeholder {
    color: #94a3b8;
}
.detail-color-picker {
    margin: 12px 0 8px;
}
.detail-color-head {
    display: flex;
    justify-content: flex-start;
    font-size: 15px;
    color: var(--color-primary);
}
.detail-cta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 24px 0;
}
.detail-cta .btn-primary,
.detail-cta .btn-ghost {
    flex: 1;
}
.detail-quantity {
    display: grid;
    gap: 8px;
    font-weight: 600;
    color: var(--color-primary);
}
.detail-quantity label {
    font-size: 14px;
}
.qty-input {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    border: 1px solid rgba(10, 42, 67, 0.14);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(10, 42, 67, 0.02);
}
.qty-input button {
    height: 100%;
    border: none;
    background: var(--color-white);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    cursor: pointer;
    transition: background 0.2s ease;
}
.qty-input button:hover {
    background: rgba(43, 196, 173, 0.12);
}
.qty-input input {
    width: 100%;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 6px;
    outline: none;
}
.product-highlights {
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: grid;
    gap: 0;
    border: none;
}
.product-highlights h3 {
    margin: 0;
    font-size: 16px;
    color: var(--color-primary);
}
.product-highlights ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
    list-style: none;
}
.product-highlights li {
    position: relative;
    padding: 11px 0 11px 32px;
    font-size: 15px;
    color: rgba(28, 36, 48, 0.85);
    border-bottom: 1px solid rgba(10, 42, 67, 0.06);
}
.product-highlights li:last-child {
    border-bottom: none;
}
.product-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 11px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(43, 196, 173, 0.12);
    color: #2BC4AD;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 22px;
    text-align: center;
}
.product-description {
    font-size: 16px;
    color: rgba(28, 36, 48, 0.85);
    margin-bottom: 0;
}
.detail-info-stack {
    display: grid;
    gap: 20px;
    margin-top: 56px;
}
.info-card {
    background: #fff;
    border: 1px solid rgba(10, 42, 67, 0.09);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 42, 67, 0.06);
    display: grid;
    gap: 0;
}
.info-card-head {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--color-primary);
    letter-spacing: 0.01em;
    padding: 16px 20px;
    background: linear-gradient(90deg, #f0f6ff 0%, #f7faff 100%);
    border-bottom: 1px solid rgba(10, 42, 67, 0.07);
    display: flex;
    align-items: center;
    gap: 8px;
}
.info-card-head::before {
    content: '';
    width: 4px;
    height: 18px;
    border-radius: 4px;
    background: var(--color-accent);
    flex-shrink: 0;
}
.info-card-body {
    padding: 18px 20px;
}
.info-card .product-description {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(28, 36, 48, 0.82);
}
.detail-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 14px;
    color: rgba(28, 36, 48, 0.62);
}
.breadcrumb a {
    color: var(--color-primary);
    text-decoration: underline;
}
.breadcrumb-sep {
    color: rgba(28, 36, 48, 0.4);
}
.product-detail-empty {
    margin-top: 48px;
    text-align: center;
    background: var(--color-white);
    padding: 64px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}
.product-detail-empty a {
    color: var(--color-primary);
    text-decoration: underline;
}
.cart-color-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(28, 36, 48, 0.78);
    margin: 8px 0;
}
.cart-color-line .color-swatch {
    width: 16px;
    height: 16px;
    transform: none;
    box-shadow: none;
}
.cart-variant-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(28, 36, 48, 0.78);
    margin: 6px 0;
}
/* ── Cart Inline Dropdowns ── */
.cie-dropdowns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0 4px;
}
.cie-select-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 120px;
}
.cie-select-label {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.cie-select {
    appearance: none;
    -webkit-appearance: none;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 6px 28px 6px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #0A2A43;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 8px center;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
    min-width: 120px;
}
.cie-select:hover { border-color: #2BC4AD; }
.cie-select:focus { border-color: #2BC4AD; box-shadow: 0 0 0 3px rgba(43,196,173,0.15); }

.cart-item-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 12px;
}
.cart-view-detail {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
}
.cart-empty-state {
    margin-top: 24px;
    padding: 32px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    color: rgba(28, 36, 48, 0.7);
}
.cart-empty-state p {
    margin: 0;
}
.cart-empty-state a {
    color: var(--color-primary);
    text-decoration: underline;
}
.summary-badge {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    color: rgba(28, 36, 48, 0.68);
}
@media (max-width: 1080px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 80px;
    }
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .product-gallery {
        position: static;
    }
    .product-media-stack {
        position: relative;
    }
    .detail-summary-card {
        position: sticky;
        top: 72px;
    }
    .gallery-thumb img {
        width: 72px;
        height: 72px;
    }
    .detail-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .category-hero {
        padding: 72px 32px;
        gap: 28px;
    }
    .hero-visual .visual-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .process-steps,
    .strength-process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .contact-form-section,
    .order-tracking,
    .checkout-section,
    .measurement-cta {
        padding: 48px 32px;
    }
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    .checkout-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .checkout-footer {
        flex-direction: column;
        align-items: stretch;
    }
    .cart-item {
        grid-template-columns: 160px 1fr;
    }
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 820px) {
    section {
        padding: 64px 0;
    }
    .logo span {
        display: none;
    }
    .logo img {
        width: 110px;
    }
    .nav-actions {
        gap: 10px;
    }
    /* Remove backdrop-filter so position:fixed children (drawer) aren't clipped to header on iOS Safari */
    header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .mobile-nav-toggle {
        display: inline-flex;
    }
    .mobile-nav-label {
        display: inline;
    }
    /* ── Mobile Drawer ── */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: min(82vw, 300px);
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        background: #fff;
        border: none;
        border-radius: 0;
        box-shadow: -6px 0 40px rgba(10, 42, 67, 0.18);
        z-index: 1002;
        overflow-y: auto;
        transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
        overscroll-behavior: contain;
    }
    .nav-links.is-open {
        right: 0;
        display: flex;
    }
    /* Drawer top bar */
    .nav-drawer-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px 16px;
        border-bottom: 1px solid rgba(10,42,67,0.08);
        background: #f8fafc;
        flex-shrink: 0;
    }
    .nav-drawer-brand {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #0A2A43;
        text-decoration: none;
    }
    .nav-drawer-brand span { color: #2BC4AD; }
    .nav-drawer-close {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: rgba(10,42,67,0.07);
        border: none;
        font-size: 18px;
        color: #0A2A43;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.15s;
    }
    .nav-drawer-close:hover { background: rgba(10,42,67,0.13); }
    /* Nav links inside drawer */
    .nav-links a {
        width: 100%;
        padding: 15px 20px;
        border-radius: 0;
        background: transparent;
        border-bottom: 1px solid rgba(10,42,67,0.06);
        font-size: 15px;
        font-weight: 600;
        color: #0A2A43;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: background 0.15s, color 0.15s;
    }
    .nav-links a:hover {
        background: rgba(43,196,173,0.07);
        color: #2BC4AD;
    }
    .nav-links a::after { display: none; }
    /* Drawer footer actions area */
    .nav-mobile-actions {
        display: flex;
        padding: 16px 20px;
        margin-top: auto;
        border-top: 1px solid rgba(10,42,67,0.08);
        background: #f8fafc;
    }
    .nav-icon--mobile-hide {
        display: none;
    }
    .product-actions {
        grid-template-columns: 1fr;
    }
    .detail-price {
        font-size: 24px;
    }
    .icon-btn {
        width: 38px;
        height: 38px;
    }
    .strengths-grid {
        grid-template-columns: 1fr;
    }
    .category-hero {
        padding: 56px 24px;
        gap: 24px;
    }
    .process-steps,
    .strength-process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hero-visual .visual-row {
        grid-template-columns: 1fr;
    }
    .category-tabs {
        width: 100%;
        justify-content: center;
    }
    .category-tab {
        flex: 1 1 120px;
        text-align: center;
    }
    .newsletter form {
        grid-template-columns: 1fr;
    }
    .search-form {
        grid-template-columns: 1fr;
    }
    .search-form .btn-primary {
        width: 100%;
    }
    .category-section,
    .contact-form-section,
    .checkout-section,
    .order-tracking,
    .measurement-cta {
        padding: 40px 24px;
    }
    .checkout-columns {
        grid-template-columns: 1fr;
    }
    .checkout-column {
        padding: 20px;
    }
    .cart-item {
        grid-template-columns: 1fr;
    }
    .cart-item-media {
        height: 200px;
    }
    .order-summary {
        margin-top: 24px;
    }
    .order-tracking-form {
        grid-template-columns: 1fr;
    }
    .measurement-cta-content {
        justify-items: stretch;
    }
    .measurement-cta-btn {
        width: 100%;
    }
    /* iOS: prevent auto-zoom on focus */
    input, select, textarea {
        font-size: 16px;
    }
    /* Bigger swatches for touch */
    .color-swatch {
        width: 34px;
        height: 34px;
    }
    /* Tighter product grid */
    .product-grid {
        gap: 18px;
    }
    /* Section padding reduction */
    section {
        padding: 56px 0;
    }
}
@media (max-width: 620px) {
    .top-bar-content {
        justify-content: center;
        text-align: center;
    }
    .gallery-thumb img {
        width: 64px;
        height: 64px;
    }
    .product-highlights {
        padding: 16px;
    }
    .detail-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .detail-value {
        text-align: left;
    }
    .detail-summary-card {
        position: static;
    }
    .detail-feature-grid {
        grid-template-columns: 1fr;
    }
    .contact-form,
    .quote-form {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
    .detail-summary-card {
        position: static;
    }
    .detail-feature-grid {
        grid-template-columns: 1fr;
    }
    .category-hero {
        padding: 48px 20px;
        gap: 20px;
    }
    .hero-visual .visual-row {
        grid-template-columns: 1fr;
    }
    .process-steps,
    .strength-process-steps,
    .product-grid,
    .catalog-list {
        grid-template-columns: 1fr;
    }
    .category-actions {
        flex-direction: column;
    }
    .strengths-process {
        padding: 40px 24px;
    }
    .info-banner {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .category-tabs {
        padding: 8px;
        gap: 8px;
    }
    .cart-item {
        padding: 18px;
    }
    .order-summary,
    .contact-form-section,
    .checkout-section,
    .order-tracking,
    .measurement-cta,
    .legal-hero,
    .legal-section,
    .newsletter {
        padding: 32px 20px;
    }
    .modal-body {
        padding: 32px 24px;
    }
    .toast {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
    /* Tighter product grid on small phones */
    .product-grid {
        gap: 14px;
    }
    /* Reduce section padding further */
    section {
        padding: 40px 0;
    }
    /* Category hero padding */
    .category-hero {
        padding: 40px 20px;
        gap: 16px;
    }
    /* Product card inner padding */
    .card-body {
        padding: 14px 16px;
        gap: 6px;
    }
    .card-footer {
        padding-top: 10px;
    }
}

/* ─── Very small phones (≤ 480px) ─────────────────────────────────── */
@media (max-width: 480px) {
    section {
        padding: 32px 0;
    }
    .container {
        width: min(100% - 28px, var(--max-width));
    }

    /* Typography */
    .section-title {
        font-size: clamp(20px, 6vw, 28px);
        margin-bottom: 12px;
    }

    /* Buttons: compact + full-width in groups */
    .btn-primary,
    .btn-secondary,
    .btn-ghost {
        padding: 12px 20px;
        font-size: 15px;
    }
    .btn-group {
        flex-direction: column;
        gap: 10px;
    }
    .btn-group .btn-primary,
    .btn-group .btn-secondary,
    .btn-group .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    /* Product grid */
    .product-grid {
        gap: 12px;
    }
    .product-card .product-title {
        font-size: 15px;
    }
    .product-card .product-price {
        font-size: 18px;
    }
    .card-cta-btn {
        padding: 8px 13px;
        font-size: 12px;
    }

    /* Hero */
    .hero {
        padding: 60px 0 72px;
    }
    .hero-content h1 {
        font-size: clamp(24px, 7vw, 36px);
    }
    .hero-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    /* Category pages */
    .category-hero {
        padding: 36px 0;
        gap: 14px;
    }
    .category-hero h1 {
        font-size: clamp(22px, 6vw, 36px);
    }

    /* Product detail */
    .detail-price {
        font-size: 22px;
    }
    .color-swatch {
        width: 36px;
        height: 36px;
    }
    .variant-field select {
        padding: 12px 14px;
    }
    .product-detail {
        padding-top: 16px;
    }
    .gallery-thumb img {
        width: 56px;
        height: 56px;
    }
    .detail-summary-card {
        padding: 16px;
    }

    /* Cart / Checkout */
    .checkout-column {
        padding: 16px 14px;
    }
    .cart-item {
        padding: 14px;
    }
    .cart-item-media {
        height: 160px;
    }

    /* Order / Sipariş özeti */
    .order-card-body {
        padding: 20px 16px 8px;
    }
    .order-grid {
        padding: 0 14px 14px;
        gap: 10px;
    }

    /* Header / nav touch targets */
    .nav-links a {
        padding: 13px 14px;
        font-size: 16px;
    }
    .icon-btn {
        width: 40px;
        height: 40px;
    }

    /* Modals */
    .modal-body {
        padding: 24px 16px;
    }
}
