:root {
    --primary-color: #667b64;
    --secondary-color: #4b5c4a;
    --text-color: #333333;
    --light-text: #666666;
    --bg-light: #f2f4f2;
    --white: #ffffff;
    --black: #000000;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
    --header-height: 88px;
    --header-offset: 0px;
    --header-dynamic-top: 5vh;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}

html {
    scroll-behavior: smooth;
    background-color: var(--primary-color);
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--primary-color);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

body.admin-page {
    background-color: #f3f4f6;
    min-height: 100vh;
}

body.admin-page .header,
body.admin-page .footer {
    display: none;
}

input,
textarea,
select,
option,
[contenteditable="true"],
[contenteditable=""] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    color: var(--black);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #4b5c4a;
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: transparent;
    box-shadow: none;
    position: fixed;
    width: 100%;
    top: var(--header-dynamic-top);
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transform: none;
    transition: background-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
    isolation: isolate;
    --logo-scale: 1;
    --logo-translate-y: 0%;
}

.header:not(.outside-hero):not(.menu-open) {
    background-color: transparent;
}

.home-page .header.at-hero-top:not(.menu-open) {
    --logo-scale: 1.5;
    --logo-translate-y: -25%;
}

.header.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
}

.header::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0;
    z-index: 1;
}

.header:not(.outside-hero):not(.menu-open)::before {
    top: calc(-1 * var(--header-dynamic-top));
    background-color: rgba(102, 123, 100, 0.22);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    opacity: 1;
}

.header .container {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    position: relative;
    z-index: 2;
}

.header.scrolled {
    background-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.header.outside-hero {
    background-color: var(--primary-color);
}

.page-category .header.outside-hero {
    background-color: transparent;
    box-shadow: none;
}

.page-product-detail .header.outside-hero {
    background-color: transparent;
    box-shadow: none;
}

.header.menu-open {
    background-color: transparent;
    box-shadow: none;
}

.header-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%, var(--logo-translate-y)) scale(var(--logo-scale));
    transform-origin: center;
    transition: transform 0.35s ease;
}

.logo img {
    height: clamp(56px, 10.5vw, 76px);
    width: auto;
    filter: brightness(0) invert(1);
}

.mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    background: none;
    border: none;
    width: 66px;
    height: 66px;
    cursor: pointer;
    color: var(--white);
}

.menu-icon {
    position: relative;
    width: 39px;
    height: 3px;
    background: var(--white);
    border-radius: 999px;
    transition: background-color 0.2s ease;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 39px;
    height: 3px;
    background: var(--white);
    border-radius: 999px;
    transition: transform 0.25s ease, top 0.25s ease;
}

.menu-icon::before {
    top: -12px;
}

.menu-icon::after {
    top: 12px;
}

.header.menu-open .menu-icon {
    background: transparent;
}

.header.menu-open .menu-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.header.menu-open .menu-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

.header-social {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    gap: 0;
}

.header-social .footer-social {
    margin-top: 0;
}

.header-social .footer-social a {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--white);
}

.header-social .footer-social a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: var(--primary-color);
    transition: transform 0.35s ease, opacity 0.35s ease;
    padding-top: calc(var(--header-height) + 40px + env(safe-area-inset-top));
    padding-right: max(30px, env(safe-area-inset-right));
    padding-bottom: calc(50px + env(safe-area-inset-bottom));
    padding-left: max(30px, env(safe-area-inset-left));
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.header.menu-open .mobile-menu {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    gap: 34px;
    text-align: center;
}

.mobile-nav-list li {
    margin-bottom: 0;
}

.mobile-nav-list a {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
}

.mobile-nav-list a.active {
    color: rgba(255,255,255,0.75);
}

.mobile-nav-list a:hover {
    color: rgba(255,255,255,0.75);
}

.mobile-menu-footer {
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.8);
}

.mobile-menu-watermark {
    margin-top: 16px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mobile-menu-language {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.mobile-menu-language-label {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.language-select {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.language-picker {
    position: relative;
    z-index: 1;
    width: min(190px, 72vw);
}

.language-picker-button {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--white);
    cursor: pointer;
    font: inherit;
    width: 100%;
}

.language-picker-button::-webkit-details-marker {
    display: none;
}

.language-picker-button::marker {
    content: '';
}

.language-picker-button i {
    font-size: 14px;
    opacity: 0.9;
    transition: transform 0.2s ease;
    margin-left: auto;
}

.language-picker[open] .language-picker-button i {
    transform: rotate(180deg);
}

.language-picker-text {
    font-weight: 600;
    white-space: nowrap;
}

.language-flag {
    width: 22px;
    height: 16px;
    border-radius: 0;
    display: block;
    box-shadow: 0 1px 6px rgba(0,0,0,0.22);
}

.language-picker-list {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    bottom: auto;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    border-radius: 0;
    background-color: rgba(0,0,0,0.28);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    z-index: 10;
}

.language-picker[open] .language-picker-list {
    display: flex;
}

.language-picker-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 0;
    background: transparent;
    border: 1px solid transparent;
    color: var(--white);
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.language-picker-option:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.language-picker-option[aria-selected="true"] {
    background-color: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.18);
}

.language-picker-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
    margin: 6px 4px;
}

.language-picker-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 2px 4px 4px;
}

.language-picker-social a {
    width: 40px;
    height: 40px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--white);
}

.language-picker-social a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    background: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../assets/images/hero.png') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(102, 123, 100, 0.5);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 0 10px;
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.mosaic-section {
    padding: 0;
    background-color: var(--bg-light);
}

.mosaic-section .container {
    max-width: none;
    padding: 0;
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    transition: transform 700ms ease, opacity 700ms ease;
    will-change: transform, opacity;
}

.reveal--left {
    transform: translate3d(-80px, 0, 0);
}

.reveal--right {
    transform: translate3d(80px, 0, 0);
}

.reveal--in {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal--left,
    .reveal--right {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: calc(100vw / 12);
    gap: 0;
    background: #111;
}

.mosaic-card {
    display: block;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    background: #111;
    text-decoration: none;
}

.mosaic-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.68) 100%);
    z-index: 1;
}

.mosaic-card--ce::before {
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 100%);
}

.mosaic-card--g::before {
    display: none;
}

.mosaic-card--f .mosaic-media {
    object-position: center 35%;
}

.mosaic-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 700ms ease, filter 700ms ease;
}

.mosaic-card--link {
    cursor: pointer;
}

.mosaic-card--link:hover .mosaic-media {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.mosaic-card--link:active .mosaic-media {
    transform: scale(1.05);
}

.mosaic-card--link:focus-visible {
    outline: 4px solid rgba(255, 255, 255, 0.7);
    outline-offset: -4px;
}

.mosaic-card--link:hover::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.78) 100%);
}

.mosaic-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: clamp(22px, 4vw, 44px);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 14px;
}

.mosaic-content h3 {
    margin-bottom: 0;
    font-size: clamp(1.6rem, 3.2vw, 2.5rem);
    line-height: 1.1;
    color: var(--white);
}

.mosaic-content p {
    margin: 0;
    color: rgba(255,255,255,0.82);
    max-width: 52ch;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.mosaic-card--g {
    background: var(--primary-color);
    box-shadow: none;
}

.mosaic-card--g .mosaic-content {
    justify-content: center;
    text-align: center;
    padding: clamp(38px, 5vw, 76px);
    gap: 18px;
}

.mosaic-card--g .mosaic-content h3 {
    color: var(--white);
    font-size: clamp(1.35rem, 2.1vw, 2.1rem);
    line-height: 1.25;
    max-width: 52ch;
    margin: 0 auto;
}

.mosaic-card--g .mosaic-content p {
    color: rgba(255,255,255,0.86);
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.55;
    max-width: 70ch;
    margin: 0 auto;
}

.mosaic-card--a {
    grid-column: 1 / 5;
    grid-row: 1 / 8;
}

.mosaic-card--b {
    grid-column: 5 / 13;
    grid-row: 1 / 4;
}

.mosaic-card--ce {
    grid-column: 5 / 9;
    grid-row: 4 / 8;
}

.mosaic-card--d {
    grid-column: 9 / 13;
    grid-row: 4 / 11;
}

.mosaic-card--f {
    grid-column: 1 / 9;
    grid-row: 8 / 11;
}

.mosaic-card--g {
    grid-column: 1 / 13;
    grid-row: 11 / 13;
}

@media (max-width: 992px) {
    .mosaic-grid {
        grid-auto-rows: calc(100vw / 12);
    }

    .mosaic-card--a {
        grid-column: 1 / 7;
        grid-row: 1 / 7;
    }

    .mosaic-card--b {
        grid-column: 7 / 13;
        grid-row: 1 / 4;
    }

    .mosaic-card--ce {
        grid-column: 7 / 13;
        grid-row: 4 / 10;
    }

    .mosaic-card--d {
        grid-column: 7 / 13;
        grid-row: 10 / 16;
    }

    .mosaic-card--f {
        grid-column: 1 / 7;
        grid-row: 7 / 16;
    }

    .mosaic-card--g {
        grid-column: 1 / 13;
        grid-row: 16 / 18;
    }
}

@media (max-width: 768px) {
    .mosaic-section {
        padding: 0;
    }

    .mosaic-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 0;
    }

    .mosaic-card {
        min-height: min(520px, 85vh);
    }

    .mosaic-card--g {
        min-height: min(340px, 70vh);
    }

    .mosaic-card--a,
    .mosaic-card--b,
    .mosaic-card--ce,
    .mosaic-card--d,
    .mosaic-card--f,
    .mosaic-card--g {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

/* About Section */
.section-header {
    margin-bottom: 60px;
}

.section-tagline {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--light-text);
}

.aboutus-section {
    background-color: var(--primary-color);
}

.aboutus-section .section-tagline,
.aboutus-section .section-title,
.aboutus-section .about-text p {
    color: var(--white);
}

.aboutus-section .section-line {
    background-color: var(--white);
}

.aboutus-section .contact-item i {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.aboutus-section .contact-item a,
.aboutus-section .contact-item span {
    color: var(--white);
}

.aboutus-contact {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.aboutus-contact-card {
    width: min(520px, 100%);
    padding: 34px;
    border-radius: 0;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.aboutus-contact-title {
    margin: 0;
    font-size: 1.6rem;
    letter-spacing: 0.2px;
    color: var(--text-color);
}

.aboutus-contact-card .contact-details {
    margin-top: 24px;
}

.aboutus-contact-card .contact-item {
    margin-bottom: 18px;
}

.aboutus-contact-card .contact-item:last-child {
    margin-bottom: 0;
}

.aboutus-contact-card .contact-item a:hover {
    opacity: 0.85;
}

.aboutus-section .aboutus-contact-card {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.aboutus-section .aboutus-contact-title {
    color: var(--white);
}

.values-list {
    margin-top: 30px;
}

.values-list li {
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.values-list i {
    color: var(--secondary-color);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 5rem;
    color: #ccc;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.product-card p {
    color: var(--light-text);
}

.product-request-card {
    text-align: left;
}

.product-request-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 16px;
}

.product-request-form {
    margin-top: 18px;
}

.product-request-form .form-group {
    margin-bottom: 12px;
}

.product-request-form textarea {
    resize: vertical;
}

.product-request-form .btn {
    width: 100%;
}

.product-request-alert {
    padding: 14px 16px;
    margin-bottom: 18px;
    border: 1px solid var(--border-color);
    background: var(--white);
}

.product-request-alert--success {
    border-color: rgba(46, 125, 50, 0.35);
    background: rgba(46, 125, 50, 0.08);
}

.product-request-alert--error {
    border-color: rgba(198, 40, 40, 0.35);
    background: rgba(198, 40, 40, 0.08);
}

.product-request-empty {
    margin-top: 18px;
    color: var(--light-text);
}

.catalog-section {
    background: #050705;
    color: var(--white);
    padding: 70px 0;
}

.page-category .catalog-section {
    padding-top: calc(var(--header-height) + var(--header-dynamic-top) + 24px);
    min-height: calc(100vh - var(--header-height));
}

.page-product-detail .catalog-section {
    padding-top: calc(var(--header-height) + var(--header-dynamic-top) + 24px);
    min-height: calc(100vh - var(--header-height));
}

.catalog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}

.catalog-back-link:hover {
    color: #e5e7eb;
}

.catalog-back-icon {
    font-size: 1rem;
}

.catalog-section .product-request-empty {
    color: rgba(255, 255, 255, 0.7);
}

.catalog-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 60px;
    align-items: start;
}

.catalog-shell--list-only {
    grid-template-columns: minmax(0, 1fr);
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 32px;
    margin-bottom: 32px;
}

.catalog-filter-group {
    min-width: 180px;
}

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

.catalog-grid--categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-card {
    appearance: none;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.catalog-card--link {
    text-decoration: none;
}

.catalog-section--categories {
    padding: 84px 0;
}

.catalog-section--categories .container {
    max-width: 1200px;
}

.catalog-card .catalog-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    text-align: center;
    line-height: 1.3;
}

.catalog-meta {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.catalog-thumb {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    padding: 22px;
    transition: var(--transition);
}

.catalog-thumb img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
}

.catalog-gallery {
    display: none;
}

.catalog-gallery-item img {
    width: 100%;
    display: block;
    border-radius: 6px;
}

.catalog-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 26px;
    border: 2px solid var(--primary-color);
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    background: transparent;
}

.catalog-card.is-active .catalog-thumb,
.catalog-card:hover .catalog-thumb {
    border-color: var(--primary-color);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
    transform: translateY(-4px);
}

.catalog-card.is-active .catalog-cta,
.catalog-card:hover .catalog-cta {
    background: var(--primary-color);
    color: var(--white);
}

.catalog-panel {
    position: relative;
    padding-left: 40px;
}

.catalog-panel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    opacity: 0.9;
}

.catalog-selected-kicker {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.catalog-selected-title {
    margin: 0 0 14px;
    font-size: 2.25rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.catalog-selected-desc {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.75);
}

.catalog-selected-specs {
    display: grid;
    gap: 8px;
    margin-bottom: 26px;
}

.catalog-spec-label {
    display: inline-block;
    min-width: 92px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 0.8rem;
}

.catalog-form .form-group {
    margin-bottom: 18px;
}

.catalog-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

.catalog-form input,
.catalog-form select,
.catalog-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--white);
    border-radius: 0;
    outline: none;
    transition: var(--transition);
}

.catalog-form textarea {
    resize: vertical;
}

.catalog-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image:
        linear-gradient(45deg, rgba(255, 255, 255, 0.85) 50%, transparent 50%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.85) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 50%,
        calc(100% - 12px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 40px;
}

.catalog-form select option {
    background-color: #020617;
    color: var(--white);
}

.consent-line .consent-inline {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    column-gap: 10px;
    row-gap: 0;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.75);
    white-space: normal;
    line-height: 1.4;
}

.consent-line .consent-inline input {
    margin-top: 2px;
    width: 18px;
    height: 18px;
}

.consent-line .consent-inline span {
    display: block;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
}

.catalog-captcha {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.catalog-form .captcha-input {
    width: 56px;
    text-align: center;
    padding: 10px 12px;
}

.catalog-form input:focus,
.catalog-form select:focus,
.catalog-form textarea:focus {
    border-color: var(--primary-color);
}

.catalog-form select:disabled,
.catalog-form input:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.catalog-submit {
    width: 100%;
    height: 54px;
    border: 0;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.catalog-submit:hover {
    background: var(--secondary-color);
}

@media (max-width: 980px) {
    .catalog-shell {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .catalog-left,
    .catalog-right {
        width: 100%;
    }

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

    .catalog-panel {
        padding-left: 0;
    }

    .catalog-panel::before {
        display: none;
    }
}

@media (max-width: 720px) {
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .catalog-section {
        padding: 56px 0;
    }

    .catalog-selected-specs {
        grid-template-columns: 1fr;
    }
}

.admin-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.admin-title {
    margin: 0;
}

.admin-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.admin-table th,
.admin-table td {
    border: 1px solid rgba(0,0,0,0.08);
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    font-weight: 600;
}

.admin-checkbox label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.admin-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 24px 24px 32px;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
}

.admin-shell--wide {
    padding-inline: 32px;
}

.admin-sidebar {
    background: #111827;
    color: #e5e7eb;
    border-radius: 8px;
    padding: 20px 16px 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.admin-sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.admin-sidebar-subtitle {
    font-size: 0.85rem;
    color: #9ca3af;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #d1d5db;
    background: transparent;
}

.admin-nav-link--active {
    background: #1f2937;
    color: #f9fafb;
}

.admin-nav-link--danger {
    color: #fecaca;
}

.admin-main {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px 20px 26px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.admin-main--flush {
    padding: 18px 18px 24px;
}

.admin-main--narrow {
    max-width: 960px;
    margin: 0 auto;
}

.admin-main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.admin-main-title {
    margin: 0;
    font-size: 1.5rem;
}

.admin-main-subtitle {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: #6b7280;
}

.admin-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 20px;
    margin-top: 8px;
}

.admin-card {
    background: #f9fafb;
    border-radius: 6px;
    padding: 16px 16px 20px;
    border: 1px solid #e5e7eb;
}

.admin-card-title {
    margin: 0 0 14px;
    font-size: 1rem;
}

.admin-field-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 4px;
}

.admin-secondary-btn {
    background-color: #e5e7eb;
    color: #111827;
}

.admin-secondary-btn:hover {
    background-color: #d1d5db;
}

.admin-weight-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.admin-image-preview {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.admin-image-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    margin-bottom: 10px;
}

.admin-image-controls {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    font-size: 0.8rem;
    color: #4b5563;
}

.admin-auth {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #f3f4f6;
}

.admin-auth-inner {
    width: 100%;
    max-width: 420px;
}

.admin-auth-header {
    margin-bottom: 18px;
}

.admin-card--auth {
    padding: 22px 22px 26px;
}

.admin-auth-submit {
    width: 100%;
    margin-top: 4px;
}

.admin-empty {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #6b7280;
}

.admin-products-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
    gap: 20px;
    align-items: flex-start;
}

.admin-form-main,
.admin-form-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-side-meta {
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    padding: 10px 12px;
    background: #ffffff;
    margin-bottom: 8px;
}

.admin-side-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #4b5563;
}

.admin-side-meta-row + .admin-side-meta-row {
    margin-top: 6px;
}

.admin-side-label {
    font-weight: 500;
}

.admin-side-value {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.admin-product-card {
    background: #f9fafb;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.admin-product-card--inactive {
    opacity: 0.75;
}

.admin-product-image-wrap {
    position: relative;
    background: #111827;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-product-image {
    width: 100%;
    max-height: 160px;
    object-fit: contain;
    background: #0f172a;
}

.admin-product-placeholder {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1f2937;
    color: #e5e7eb;
    font-weight: 600;
    font-size: 2.4rem;
}

.admin-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
}

.admin-badge--active {
    background: #bbf7d0;
    color: #166534;
}

.admin-badge--inactive {
    background: #fee2e2;
    color: #991b1b;
}

.admin-product-body {
    padding: 10px 12px 6px;
}

.admin-product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

.admin-product-name {
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-tag {
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    background: #e5e7eb;
    color: #374151;
}

.admin-product-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #6b7280;
}

.admin-product-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 10px 10px 12px;
}

.admin-product-actions form {
    margin: 0;
}

.admin-product-btn {
    width: 100%;
    padding: 6px 8px;
    font-size: 0.75rem;
}

.admin-danger-btn {
    background: #fee2e2;
    color: #991b1b;
}

.admin-danger-btn:hover {
    background: #fecaca;
}

.admin-save-btn {
    margin-top: 4px;
}

@media (max-width: 960px) {
    .admin-form-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 960px) {
    .admin-shell {
        grid-template-columns: minmax(0, 1fr);
    }

    .admin-main {
        padding: 20px 18px 24px;
    }

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

/* Stats Section */
.stats {
    background-color: var(--primary-color);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: inherit;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background-color: rgba(102, 123, 100, 0.15);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form .btn {
    width: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0f1210 0%, #0b0d0b 100%);
    color: var(--white);
    padding: 70px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 34px;
}

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

.footer-brand-logo img {
    height: clamp(54px, 9vw, 84px);
    width: auto;
    filter: brightness(0) invert(1);
    margin-left: 17px;
}

.footer-tagline {
    color: rgba(255,255,255,0.72);
    max-width: 34ch;
}

.footer-social {
    margin-top: 18px;
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--white);
}

.footer-social a:hover {
    background-color: rgba(255,255,255,0.14);
}

.footer-title {
    color: var(--white);
    font-family: inherit;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-list,
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.72);
}

.footer-list i {
    margin-top: 3px;
    width: 18px;
    opacity: 0.9;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 60px;
    min-height: 60vh;
    background-color: var(--primary-color);
    color: var(--white);
}

.legal-page h1 {
    margin-top: 64px;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: var(--white);
}

.legal-page .content {
    max-width: 800px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.86);
}

.legal-page .content p {
    margin-bottom: 1.5rem;
}

.legal-page .content a {
    color: var(--white);
    text-decoration: underline;
}

.legal-page .content a:hover {
    opacity: 0.9;
}

.legal-page .content h2,
.legal-page .content h3,
.legal-page .content h4 {
    color: var(--white);
}

.legal-page .content ul,
.legal-page .content ol {
    color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 992px) {
    .legal-page {
        padding: 100px 0 50px;
    }
}

@media (max-width: 768px) {
    .legal-page {
        padding: 90px 0 40px;
    }
    
    .legal-page h1 {
        font-size: 2rem;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    
    .legal-page .content {
        font-size: 1rem;
    }
}

.footer-list a {
    color: rgba(255,255,255,0.82);
}

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

.footer-links a {
    color: rgba(255,255,255,0.72);
    font-weight: 600;
}

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

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

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

.footer-design {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    white-space: nowrap;
}

.footer-design a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.footer-design a:hover {
    text-decoration: underline;
}

.product-intro {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.product-intro-inner {
    max-width: 78ch;
    margin: 0 auto;
    text-align: center;
}

.product-intro-tagline {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
}

.product-intro-title {
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 14px;
    color: var(--white);
}

.product-intro-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(0.82rem, 2.1vw, 1.1rem);
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

.hero.hero--product::before {
    background: url('../assets/images/background-products.png') no-repeat center center/cover;
}

.hero.hero--contact::before {
    background: url('../assets/images/contact.png') no-repeat center center/cover;
}

.product-feature {
    position: relative;
    padding: 44px 0;
    min-height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.product-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../assets/images/4.png') no-repeat center center/cover;
}

.product-feature-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 18, 16, 0.58);
    pointer-events: none;
    z-index: 1;
}

.product-feature .container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
}

.product-feature-grid {
    display: grid;
    width: min(980px, 100%);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 4vw, 54px);
    align-items: start;
}

.product-feature-item {
    padding: 0;
    text-align: center;
}

.product-feature-item h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.product-feature-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    max-width: 40ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.product-choices {
    padding: 0;
    background-color: var(--white);
}

.product-choices .container {
    max-width: none;
    padding: 0;
}

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

.product-choice {
    position: relative;
    aspect-ratio: 3 / 4;
    min-height: 520px;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.product-choice::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--choice-bg) no-repeat center center/cover;
    transform: scale(1.02);
    transition: transform 700ms ease, filter 700ms ease;
    filter: brightness(0.95);
}

.product-choice::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.76) 100%);
}

.product-choice:hover::before {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.product-choice:active::before {
    transform: scale(1.05);
}

@media (hover: hover) and (pointer: fine) {
    .product-choice::before {
        filter: blur(3px) brightness(0.95);
    }

    .product-choice:hover::before {
        filter: brightness(1.05);
    }
}

.product-choice:focus-visible {
    outline: 4px solid rgba(255, 255, 255, 0.7);
    outline-offset: -4px;
}

.product-choice-content {
    position: relative;
    z-index: 1;
    padding: 36px;
    color: var(--white);
    width: 100%;
    text-align: center;
}

.product-choice-icon {
    width: 88px;
    height: 88px;
    display: block;
    margin: 0 auto 14px;
    filter: brightness(0) invert(1);
}

.product-choice-eyebrow {
    width: 128px;
    height: 2px;
    background: rgba(255, 255, 255, 0.82);
    margin: 0 auto 18px;
}

.product-choice-content h3 {
    margin: 0 0 10px;
    color: var(--white);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    line-height: 1.1;
}

.product-choice-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    max-width: 52ch;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 79px;
    }

    .logo img {
        height: 54px;
    }

    .mobile-toggle {
        width: 56px;
        height: 56px;
    }

    .menu-icon,
    .menu-icon::before,
    .menu-icon::after {
        width: 32px;
    }

    .menu-icon::before {
        top: -10px;
    }

    .menu-icon::after {
        top: 10px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-tagline {
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-brand-logo img {
        margin-left: 0;
    }

    .footer-list li {
        justify-content: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    body.page-products .product-intro {
        padding: 56px 0;
    }

    body.page-products .product-intro-text {
        white-space: normal;
        max-width: 56ch;
    }

    body.page-products .product-choices-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    body.page-products .product-choice {
        min-height: clamp(240px, 48vh, 380px);
        aspect-ratio: auto;
    }

    body.page-products .product-choice + .product-choice {
        margin-top: -1px;
    }

    body.page-products .product-choice::before {
        transform: scale(1.06);
    }

    body.page-products .product-choice-content {
        padding: 24px;
    }

    body.page-products .product-choice-icon {
        width: 64px;
        height: 64px;
    }

    body.page-products .product-choice-eyebrow {
        width: 96px;
        margin: 0 auto 14px;
    }

    body.page-products .product-choice-content h3 {
        font-size: 1.8rem;
    }

    body.page-products .hero.hero--product {
        min-height: 52vh;
    }

    body.page-products .hero.hero--product .hero-title {
        font-size: 2.2rem;
    }

    body.page-product-detail .hero.hero--product {
        min-height: 45vh;
    }

    body.page-product-detail .catalog-shell {
        gap: 28px;
    }

    body.page-product-detail .catalog-thumb {
        padding: 16px;
    }

    body.page-product-detail .catalog-thumb img {
        max-height: min(52vh, 420px);
        margin: 0 auto;
    }

    body.page-product-detail .catalog-gallery {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        margin-top: 16px;
    }

    body.page-product-detail .catalog-selected-title {
        font-size: 1.8rem;
    }

    body.page-product-detail .catalog-selected-desc {
        font-size: 1rem;
    }


    .header-social {
        right: max(16px, env(safe-area-inset-right));
    }

    .header-social .language-picker {
        width: 44px;
        min-width: 0;
        max-width: none;
    }

    .header-social .language-picker-text {
        display: none;
    }

    .header-social .language-picker-button {
        width: 44px;
        height: 44px;
        padding: 0;
        gap: 0;
        justify-content: center;
        border-radius: 0;
    }

    .header-social .language-picker-button i {
        display: none;
    }

    .header-social .language-picker-list {
        position: fixed;
        left: auto;
        right: max(16px, env(safe-area-inset-right));
        top: calc(var(--header-dynamic-top) + var(--header-height) + 8px);
        width: min(240px, calc(100vw - 32px));
        max-height: calc(100dvh - (var(--header-dynamic-top) + var(--header-height) + 24px) - env(safe-area-inset-bottom));
        overflow: auto;
        overscroll-behavior: contain;
        z-index: 2000;
    }
}

@media (max-width: 450px) {
    .header-social {
        right: max(12px, env(safe-area-inset-right));
    }

    .header-social .language-picker-text {
        display: none;
    }

    .header-social .language-picker {
        width: 44px;
        min-width: 0;
        max-width: none;
    }

    .header-social .language-picker-button {
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: 0;
        gap: 0;
        justify-content: center;
    }

    .header-social .language-picker-button i {
        display: none;
    }

    .header-social .language-picker-list {
        position: fixed;
        left: auto;
        right: max(12px, env(safe-area-inset-right));
        top: calc(var(--header-dynamic-top) + var(--header-height) + 8px);
        width: 64px;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 8px 6px;
        max-height: calc(100dvh - (var(--header-dynamic-top) + var(--header-height) + 24px) - env(safe-area-inset-bottom));
        overflow: auto;
        overscroll-behavior: contain;
        z-index: 2100;
    }

    .header-social .language-picker-option {
        width: 52px;
        height: 44px;
        padding: 0;
        justify-content: center;
        gap: 0;
    }

    .header-social .language-picker-option span {
        display: none;
    }

    .header-social .language-picker-social {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2px 4px 4px;
        gap: 6px;
    }

    .header-social .language-picker-social a {
        width: 44px;
        height: 44px;
    }

    .footer-social {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-list a {
        font-size: 1.6rem;
    }

    .mobile-menu {
        padding-top: calc(var(--header-height) + 28px + env(safe-area-inset-top));
        padding-right: max(20px, env(safe-area-inset-right));
        padding-bottom: calc(36px + env(safe-area-inset-bottom));
        padding-left: max(20px, env(safe-area-inset-left));
    }
}
