@font-face {
    font-family: 'Sequel Sans Head';
    src: url("Font-Sequel-Sans/Sequel Sans Light Head.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sequel Sans Head';
    src: url("Font-Sequel-Sans/Sequel Sans Medium Head.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sequel Sans Head';
    src: url("Font-Sequel-Sans/Sequel Sans Bold Head.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sequel Sans';
    src: url("Font-Sequel-Sans/Sequel Sans Light Body.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sequel Sans';
    src: url("Font-Sequel-Sans/Sequel Sans Book Body.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sequel Sans';
    src: url("Font-Sequel-Sans/Sequel Sans Medium Body.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sequel Sans';
    src: url("Font-Sequel-Sans/Sequel Sans Semi Bold Body.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sequel Sans';
    src: url("Font-Sequel-Sans/Sequel Sans Bold Body.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sequel Sans';
    src: url("Font-Sequel-Sans/Sequel Sans Black Body.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}
#home, #videomagnet, #sculptures, #oilpaint, #animstudio, #contact {
    scroll-margin-top: calc(var(--header-height) + 16px);
}
html, body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    overflow-x: hidden;
    font-family: 'Sequel Sans', sans-serif;
}
h1, h2 {
    font-family: 'Sequel Sans Head', sans-serif;
    font-weight: 700;
}
h3, h4, h5, h6 {
    font-family: 'Sequel Sans Head', sans-serif;
    font-weight: 300;
}
p, li {
    font-family: 'Sequel Sans', sans-serif;
    font-weight: 300;
}
.font-head-bold {
    font-family: 'Sequel Sans Head', sans-serif;
    font-weight: 700;
}
.font-body-light {
    font-family: 'Sequel Sans', sans-serif;
    font-weight: 300;
}
nav a, button, .cta, .send-button, .sidebar-list li, .sidebar-list a {
    font-family: 'Sequel Sans Head', sans-serif;
    font-weight: 500;
}
.sidebar-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    width: 100%;
}

:root {
    --header-height: 0px;
}

*, *::before, *::as {
    box-sizing: border-box;
}

img, svg {
    max-width: 100%;
    height: auto;
}

/* Sidebars (cart / menu) */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 90;
}
.sidebar-overlay.open {
    opacity: 1;
    visibility: visible;
}
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    background-color: #000000;
    color: white;
    box-shadow: none;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 100;
    padding: 12px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
    overflow-y: auto;
}
.sidebar.open {
    transform: translateX(0);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
}
.sidebar-cart {
    width: 480px;
    max-width: 92vw;
    border-left: 1px solid #e4523f;
}
.sidebar-cart .sidebar-nav img {
    height: 54px;
}
.cart-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    font-size: 1.7rem;
    font-weight: 700;
    width: 100%;
}
.cart-header .sidebar-img {
    height: 1.4em;
    width: auto;
}
.cart-items {
    list-style: none;
    margin: 0;
    padding: 0 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    border-bottom: 1px solid #333;
}
.cart-empty {
    color: #8c8c8c;
    font-size: 1rem;
    font-weight: 300;
}
.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}
.cart-item img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}
.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}
.cart-item-name {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.cart-item-desc {
    color: #8c8c8c;
    font-size: 0.72rem;
    font-weight: 300;
    line-height: 1.3;
}
.cart-item-price {
    font-weight: 300;
    font-size: 0.9rem;
    color: #8c8c8c;
    flex-shrink: 0;
}
.cart-item-qty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.cart-item-qty-label {
    color: #8c8c8c;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.cart-item-qty input {
    width: 56px;
    padding: 8px;
    background: transparent;
    border: 1px solid rgba(200,200,200,0.6);
    border-radius: 2px;
    color: white;
    font-size: 0.95rem;
    text-align: center;
    font-family: 'Sequel Sans', sans-serif;
}
.cart-summary {
    width: fit-content;
    margin-left: auto;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: flex-end;
}
.cart-summary-row {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    color: #8c8c8c;
    font-size: 0.95rem;
    font-weight: 300;
}
.cart-total-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    width: fit-content;
    margin-left: auto;
    margin-bottom: 20px;
    border: 1px solid rgba(200,200,200,0.6);
    border-radius: 2px;
    padding: 12px 16px;
    box-sizing: border-box;
    font-weight: 700;
    font-size: 1rem;
}
.cart-info {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
}
.cart-order-number {
    color: #ffffff;
    font-weight: 300;
    font-size: 0.95rem;
    margin: 0;
}
.cart-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}
.cart-form input {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(200,200,200,0.6);
    border-radius: 2px;
    color: inherit;
    padding: 12px 14px;
    margin: 0;
    outline: none;
    box-sizing: border-box;
    font-size: 0.95rem;
    font-family: 'Sequel Sans', sans-serif;
}
.cart-form input::placeholder {
    color: #8c8c8c;
}
.cart-form select {
    width: 100%;
    background: #000000;
    border: 1px solid rgba(200,200,200,0.6);
    border-radius: 2px;
    color: #8c8c8c;
    padding: 12px 14px;
    margin: 0;
    outline: none;
    box-sizing: border-box;
    font-size: 0.95rem;
    font-family: 'Sequel Sans', sans-serif;
    appearance: none;
    cursor: pointer;
}
.cart-form select option {
    background: #000000;
    color: white;
}
.form-message {
    font-size: 1.1rem;
    margin: 24px 0 20px;
    min-height: 1.4em;
}
.field-error {
    border-color: #e4523f !important;
    outline: 1px solid #e4523f !important;
}
.field-error-msg {
    color: #e4523f;
    font-size: 0.82rem;
    margin: 3px 0 6px;
    padding: 0;
}
.form-message.success {
    color: #2ecc71;
}
.form-message.error {
    color: #e4523f;
}
.send-button.loading {
    opacity: 0.55;
    pointer-events: none;
    position: relative;
}
.send-button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: send-button-spin 0.7s linear infinite;
}
@keyframes send-button-spin {
    to {
        transform: rotate(360deg);
    }
}
.cart-form-row {
    display: flex;
    gap: 12px;
}
.cart-form-row input {
    flex: 1;
    min-width: 0;
}
.cart-form .contact-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}
.cart-form .g-recaptcha {
    width: 304px;
    max-width: 100%;
    overflow: hidden;
    align-self: flex-start;
    margin-left: 0;
}
.cart-form button.send-button {
    width: 260px;
    max-width: 100%;
    height: 46px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    overflow: hidden;
    border-radius: 3px;
    background-image: url("compo-EN-web/send-A.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.sidebar-cart.empty .cart-summary,
.sidebar-cart.empty .cart-total-box,
.sidebar-cart.empty .cart-info,
.sidebar-cart.empty .cart-order-number,
.sidebar-cart.empty .cart-form {
    display: none;
}
.cart-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #ff1500;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}
.sidebar-menu {
    width: 480px;
    max-width: 92vw;
    align-items: flex-end;
    text-align: right;
    border-left: 1px solid #e4523f;
}
.sidebar-menu .sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 2.6rem;
    font-weight: 700;
}
.sidebar-menu .sidebar-list li {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}
.sidebar-menu .sidebar-nav img {
    height: 54px;
}
.sidebar-img {
    height: 1.3em;
    width: auto;
    vertical-align: middle;
}
.sidebar-img-wordmark {
    height: 0.85em;
}
.sidebar-img-lang {
    height: 1.4em;
}
.sidebar-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    width: auto;
    align-self: flex-end;
    margin-bottom: 40px;
}
.sidebar-nav img {
    height: 54px;
    cursor: pointer;
}


.body {
    min-height: 100vh;
}

header {
    background-color: #e4523f;
    padding: 4px 18px;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    box-sizing: border-box;
}
.headerdiv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 999px;
    height: min-content;
}
.headerdiv img {
    height: 58px;
}
header.header-small {
    padding: 5px 20px;
}
nav{
    background-color: #ffffff42;
    border-radius: 67px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav .navspace{
    margin-left: 46px;
}


.DesignStudio {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
    max-width: 999px;
    margin: 0 auto;
    padding: 0 80px 0 18px;
}
.DesignStudio .design-studio-text {
    font-family: 'Sequel Sans Head', sans-serif;
    font-weight: 300;
    font-size: 3.8rem;
    color: white;
    margin: 0;
    letter-spacing: 0.04em;
    text-transform: lowercase;
}
.contact-email-link {
    color: rgb(255, 85, 69);
    font-family: 'Sequel Sans Head', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 14px;
}
.contact-email-link:hover {
    text-decoration: underline;
}
.footer-copyright {
    font-family: 'Sequel Sans', sans-serif;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    margin: 8px 0 0;
}
/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    min-height: calc(100vh - var(--header-height));
    margin: 0;
    margin-top: var(--header-height);
    position: relative;
    overflow: hidden;
}
.hero h1 {
    margin: 0;
}

/* Background video styles */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Keep hero background visible and make the hero image fit without covering the whole area */
.hero-content img {
    width: auto;
    max-width: 60%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.hero-bg-mobile {
    display: none;
}
.hero-logo-main {
    position: relative;
    z-index: 100;
}

/* Ensure hero section is tall enough to show the full background (map/video) below the header */
.hero {
    min-height: calc(100vh - var(--header-height) - 120px);
    padding-top: 12px;
    background-color: #e4523f;
}
#bgSequence {
    mix-blend-mode: screen;
}




/* products section */
.products {
    max-width: 999px;
    margin: 0 auto;
    text-align: center;
    color: white;
}
.products .videomagnet{
    margin-top: 140px;
    text-align: center;
}

.products .title {
    width: auto;
    height: 125px;
    max-width: 100%;
    cursor: pointer;
}
.videomagnet.animstudio .title {
    height: 104px;
}
.products .videomagnet .manual-pair,
.products .videomagnet .product-grid,
.products .videomagnet .vm-junction,
.products .videomagnet .vm-city-products {
    display: none;
}
.products .videomagnet.open .manual-pair {
    display: flex;
}
.products .videomagnet.open .vm-junction {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.products .videomagnet.open .product-grid {
    display: grid;
}
.products .vm-city-tile .product-type {
    color: #e4523f !important;
    font-weight: 700 !important;
}
.vm-city-tile {
    cursor: pointer;
    background: #292929;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vm-city-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.products .videomagnet.open .vm-junction {
    margin: 48px auto 0;
    max-width: 960px;
}
.vm-city-products {
    max-width: 960px;
    margin: 0 auto;
}
.vm-city-tile .product-info {
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
}
.vm-city-tile .product-name {
    font-size: 1rem;
}
.vm-city-tile:hover .product-card-img-wrap img {
    opacity: 0.85;
}
.vm-back-btn {
    background: none;
    border: none;
    color: #8c8c8c;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0 0 16px;
    display: block;
    font-family: 'Sequel Sans', sans-serif;
}
.vm-back-btn:hover {
    color: white;
}
.products .videomagnet.open .cta {
    display: none;
}
.products .ico{
    height: 100px;
    margin-left: 20px;
    max-width: 90%;
}
.products .collParent {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 24px auto 0;
    gap: 0;
    cursor: pointer;
}
.products .manual-pair {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 96px;
    margin: 32px auto 0;
}
.products .manual-pair img {
    width: 200px;
    height: auto;
}
.products .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 48px auto 0;
}
.products .product-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: #292929;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.products .product-card-img-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.products .product-card .out-of-stock-badge {
    position: absolute;
    bottom: 10px;
    right: 12px;
    color: white;
    font-size: 2.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    pointer-events: none;
    font-family: 'Sequel Sans Head', sans-serif;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
@media (max-width: 700px) {
    .products .product-card .out-of-stock-badge {
        font-size: 1.2rem;
        bottom: 6px;
        right: 8px;
    }
}
.products .product-card-img-wrap.coming-soon-wrap {
    background-color: #292929;
}
.coming-soon-placeholder {
    width: 100%;
    height: 100%;
}

.out-of-stock-label {
    color: #e4523f;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 12px 0;
}
.products .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.products .product-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.products .product-card img[src="compo-EN-web/logo-A.svg"] {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background-color: #1a1a1a;
    padding: 24%;
    box-sizing: border-box;
}
.products .product-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
}
.products .product-name {
    color: white;
    font-size: 1rem;
    font-family: 'Sequel Sans Head', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.products .product-type {
    color: #8c8c8c;
    font-size: 0.95rem;
    font-family: 'Sequel Sans Head', sans-serif;
    font-weight: 300;
}
.products .product-price {
    margin-left: auto;
    color: white;
    font-size: 1rem;
    font-family: 'Sequel Sans Head', sans-serif;
    font-weight: 600;
}
@media (max-width: 700px) {
    .products .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products .videomagnet.open .vm-junction {
        grid-template-columns: repeat(2, 1fr);
    }
    .products .product-info {
        gap: 4px;
        padding: 10px 12px;
        flex-wrap: nowrap;
    }
    .products .product-name {
        font-size: 0.65rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        min-width: 0;
    }
    .products .product-type {
        font-size: 0.6rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        min-width: 0;
    }
    .products .product-price {
        font-size: 0.7rem;
        white-space: nowrap;
    }
}
.products .coll{
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
}

.products .collLeft{
    text-align: left;
}
.products .collLeft p.cta {
    color: #d35145;
    font-size: 1.35rem;
    font-weight: 100;
    margin-top: 12px;
    text-align: right;
}
.products .videomagnet.sculptures .collLeft p.cta {
    color: #30c26f;
}
.products .videomagnet.oilpaint .collLeft p.cta {
    color: #da9e27;
}
.products .videomagnet.animstudio .collLeft p.cta {
    color: #5ebbdf;
}
.products .collLeft p.cta::after {
    content: "";
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    margin-left: 0.05em;
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
}
.products .collLeft p.cta::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M30 20 L30 80 L80 50 Z' fill='none' stroke='%23e4523f' stroke-width='4'/%3E%3C/svg%3E");
}
.products .videomagnet.sculptures .collLeft p.cta::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M30 20 L30 80 L80 50 Z' fill='none' stroke='%2300a65a' stroke-width='4'/%3E%3C/svg%3E");
}
.products .videomagnet.oilpaint .collLeft p.cta::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M30 20 L30 80 L80 50 Z' fill='none' stroke='%23f0c419' stroke-width='4'/%3E%3C/svg%3E");
}
.products .videomagnet.animstudio .collLeft p.cta::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M30 20 L30 80 L80 50 Z' fill='none' stroke='%232185d0' stroke-width='4'/%3E%3C/svg%3E");
}
.products .collRight{
    text-align: left;
}
.products .collLeft p {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 400;
}

/* Welcome Section */
.welcome {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px;
    margin-top: 144px;
}
.welcome > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}
.welcome > div > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.welcome h2 {
    margin: 0;
    margin-top: -5px;
    font-size: 6em;
    line-height: 1;
    letter-spacing: -0.04em;
}

.welcome img {
    width: 260px;
    height: auto;
}
.welcome h4{
    font-weight: 300;
}
.welcome h3 {
    font-weight: 500;
}

/* Contact form styles */
.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    min-width: 360px;
    max-width: 480px;
    margin: 0 auto;
}
.contact input[type="email"],
.contact textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(200,200,200,0.6);
    border-radius: 8px;
    color: inherit;
    padding: 14px 16px;
    margin: 0;
    outline: none;
    box-sizing: border-box;
    margin-top: 20px;
    font-size: 1.8rem;
}
.contact input[type="email"]::placeholder,
.contact textarea::placeholder {
    font-size: 1.2rem;
}
.contact input[type="email"] {
    min-height: 64px;
}
.contact textarea {
    resize: vertical;
    min-height: 260px;
}
.contact .contact-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    align-self: center;
    width: max-content;
}
.contact .g-recaptcha {
    flex: none;
    height: 78px;
    overflow: hidden;
}
.contact button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 320px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    height: 78px;
    overflow: hidden;
    border-radius: 8px;
}
.contact button.send-button {
    background-image: url("compo-EN-web/send-A.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: transparent;
    text-indent: 0;
}

h4{
    margin-top: 60px;
    font-size: 2em;
    color: #e4523f;
}
 h3{
    margin-top: 20px;
    margin: 0;
    font-size: 3.5em;
}
.contact h4{
    font-size: 2em;
    font-weight: 100;
    margin-bottom: 0px;
}

.contact  h3{
    margin-top: 0px;
    font-size: 6em;
    font-weight: 600;
}
/* Contact Section */
.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact > div + div {
    margin-top: 40px;
}
.contact h2 {
    margin-top: 80px;
    font-size: 1.5em;
    font-weight: 100;
}
.contact img {
    height: 40px;
    width: auto;
}

/* Footer styles */
.topfooter {
    max-width: 999px;
    width: 100%;
    margin: 60px auto 0;
    display: flex;
    justify-content: left;
    align-items: center;
}
.topfooter img {
    width: 333px;
    height: auto;
}

footer {
    margin: 0;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top: 6px solid #ff6254;
}
.footerdiv {
    margin: 50px 0 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    width: 100%;
    max-width: 999px;
    min-height: 640px;
}
/* Footer sitemap styles */
footer .fottermenu{
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}
footer .fottermenu > div:nth-child(2) {
    order: 1;
}
footer .fottermenu .footer-lang {
    order: 2;
}
footer .fottermenu > div:nth-child(3) {
    order: 3;
}
.footer-lang {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-lang img {
    height: 60px;
    width: auto;
}
.footer-title{
    margin: 0 0 8px 0;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}
.footer-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-list li{
    margin: 0;
    color: white;
    font-size: 1.2rem;
    font-weight: 100;
}
.footer-list li a {
    color: inherit;
    text-decoration: none;
}
.footer-list li a:hover {
    text-decoration: underline;
}
.footer-subtitle{
    margin: 0 0 6px 0;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}
footer .bottomfooter {
    width: 100%;
    text-align: left;
    height: min-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}
footer .bottomfooter img {
    max-height: 80px;
}

footer {
    background-image: url("compo-EN-web/MAP.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 560px; /* tall enough to show full map on desktop */
}

/* Responsive: reduce footer map height on small screens */
@media (max-width: 700px) {
    footer .bottomfooter {
        min-height: 240px;
    }
}

/* Make fottermenu stack on small screens */
@media (max-width: 900px) {
    footer .fottermenu{
        flex-direction: column;
        padding-left: 20px;
        gap: 12px;
    }
}

@media (min-width: 769px) {
    footer .fottermenu > div:nth-child(3) {
        text-align: right;
    }
    footer .fottermenu > div:nth-child(3) .footer-list {
        align-items: flex-end;
    }
}

/* ===================== Responsive ===================== */

@media (max-width: 1024px) {
    .DesignStudio h2 {
        font-size: 3.2em;
    }
    .welcome h2 {
        font-size: 4.5em;
    }
    .contact h3 {
        font-size: 4.5em;
    }
    .products .manual-pair {
        gap: 60px;
    }
    .products .manual-pair img {
        width: 150px;
    }
}

@media (max-width: 900px) {
    .welcome > div {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .welcome > div > div {
        align-items: center;
    }
}

@media (min-width: 769px) {
    .hero-content {
        align-items: flex-end;
    }
    .hero-logo-main {
        transform: translateY(5px) !important;
    }
}

@media (max-width: 768px) {
    header {
        padding: 8px 20px;
    }
    .headerdiv img {
        height: 46px;
    }
    nav .navspace {
        margin-left: 50px;
    }
    .cart-count {
        width: 24px;
        height: 24px;
        font-size: 0.85rem;
        top: 2px;
        right: 2px;
    }
    .sidebar-cart,
    .sidebar-menu {
        width: 100vw;
        padding: 12px 20px;
    }
    .cart-header {
        font-size: 1.3rem;
    }
    .sidebar-menu .sidebar-list {
        font-size: 2.2rem;
        gap: 14px;
    }
    .sidebar-cart .sidebar-nav img,
    .sidebar-menu .sidebar-nav img {
        height: 46px;
    }
    .hero-content img {
        max-width: 85%;
    }
    .hero-logo-main {
        display: none;
    }
    .hero-bg-mobile {
        display: block;
        max-width: 70%;
        height: auto;
    }
    .hero {
        min-height: calc(100vh - var(--header-height) - 90px);
        min-height: calc(100dvh - var(--header-height) - 90px - env(safe-area-inset-bottom, 0px));
    }
    .hero-bg-mobile {
        max-width: 55%;
    }
    .DesignStudio {
        max-width: 100%;
        justify-content: center;
        text-align: center;
        padding: 0 10px 0 90px;
    }
    .DesignStudio h2 {
        font-size: 4.2em;
        margin-right: 0;
        text-align: center;
    }
    .DesignStudio .design-studio-text {
        font-size: 1.9rem;
        margin-right: 0;
    }
    .products .videomagnet {
        margin-top: 20px;
    }
    .products .title {
        height: 75px;
        width: auto;
        max-width: 100%;
    }
    .videomagnet.animstudio .title {
        height: 63px;
    }
    .products .ico {
        height: 80px;
        margin-left: 12px;
    }
    .products .collLeft p {
        font-size: 1.2rem;
        max-width: 100%;
    }
    .products .manual-pair {
        gap: 24px;
        flex-wrap: wrap;
    }
    .products .manual-pair img {
        width: 160px;
    }
    .products .product-grid {
        gap: 16px;
        padding: 0 20px;
    }
    .welcome {
        margin-top: 120px;
        padding: 40px 20px;
    }
    .welcome h2 {
        font-size: 3em;
    }
    .welcome img {
        width: 220px;
    }
    h3 {
        font-size: 2.2em;
    }
    .contact h3 {
        font-size: 2.8em;
    }
    .topfooter img {
        width: 200px;
    }
    .contact form {
        min-width: 0;
        width: 100%;
        gap: 12px;
    }
    .contact input[type="email"] {
        min-height: 52px;
    }
    .contact textarea {
        min-height: 140px;
    }
    .contact .contact-row {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .contact .g-recaptcha {
        width: 304px;
        margin: 0;
    }
    .contact button {
        width: 260px;
        max-width: 100%;
        height: 46px;
        border-radius: 10px;
    }
    footer .fottermenu {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 1fr;
        padding: 0 12px;
        gap: 8px;
        width: 100%;
        box-sizing: border-box;
        flex: 1;
    }
    footer {
        background-size: 180% auto;
        background-position: top center;
        min-height: 420px;
    }
    footer .fottermenu .footer-lang {
        grid-column: 1 / -1;
        grid-row: 1;
        justify-content: center;
    }
    footer .fottermenu .footer-lang img {
        height: 40px;
    }
    .footer-title, .footer-subtitle {
        font-size: 1rem;
        margin: 0 0 8px 0;
        padding: 0;
        line-height: 1.2;
    }
    .footer-list li {
        font-size: 1.05rem;
    }
    footer .bottomfooter img {
        height: 16px;
        width: auto;
        max-width: 80%;
    }
    footer .fottermenu > div:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
        align-self: end;
        text-align: left;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    footer .fottermenu > div:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
        align-self: end;
        text-align: right;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    footer .fottermenu > div:nth-child(3) .footer-list {
        align-items: flex-end;
    }
    footer .bottomfooter {
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        padding: 0 16px;
        min-height: auto;
        margin-top: 28px;
    }
    .footerdiv {
        margin: 16px 0;
        min-height: auto;
        justify-content: flex-start;
        gap: 0;
        flex: 1;
    }
}

@media (max-width: 600px) {
    .hero-content img {
        max-width: 75%;
    }
    .DesignStudio h2 {
        font-size: 2.2em;
    }
    .products .videomagnet {
        margin-top: 60px;
    }
    .products .title {
        height: 62px;
        width: auto;
        max-width: 100%;
    }
    .videomagnet.animstudio .title {
        height: 52px;
    }
    .products .ico {
        height: 68px;
        margin-left: 8px;
    }
}

@media (max-width: 480px) {
    .headerdiv img {
        height: 48px;
    }
    nav .navspace {
        margin-left: 42px;
    }
    .cart-count {
        width: 21px;
        height: 21px;
        font-size: 0.75rem;
        top: 1px;
        right: 1px;
    }
    .DesignStudio h2 {
        font-size: 1.9em;
    }
    .welcome h2 {
        font-size: 2.2em;
    }
    .contact h3 {
        font-size: 2em;
    }
    .products .title {
        height: 53px;
        width: auto;
        max-width: 100%;
    }
    .videomagnet.animstudio .title {
        height: 44px;
    }
    .products .ico {
        height: 52px;
        margin-left: 6px;
    }
    .products .manual-pair img {
        width: 120px;
    }
    .sidebar-menu .sidebar-list {
        font-size: 2.8rem;
    }
    h4 {
        margin-top: 40px;
        font-size: 1.6em;
    }
    .contact h4 {
        font-size: 1.6em;
    }
}