/* ============================================================
           ART SPIRIT · Variant 3 · CRAFT EXPERIENCE
           ui-ux-pro-max: Nature Distilled × Motion-Driven × Parallax Storytelling
           ============================================================ */
:root {
    /* Liquid Glass & Premium Tokens */
    --bg-base:      #D3BBA1;
    --bg-glass:     rgba(255, 255, 255, 0.25);
    --bg-glass-hover: rgba(255, 255, 255, 0.4);
    --border-glass: rgba(255, 255, 255, 0.3);
    --border-accent: rgba(254, 66, 2, 0.3);

    --cream:      #D3BBA1;
    --cream-2:    rgba(255, 255, 255, 0.15);
    --cream-3:    rgba(255, 255, 255, 0.3);
    --sand:       #C8B096;
    --wood:       #FE4202;
    --wood-dark:  #111111;
    --bark:       #111111;
    --accent:     #FE4202;
    --accent-2:   #E83D02;
    --gold:       #FE4202;

    --text:       #1C1208;
    --text-mid:   #5A4030;
    --text-muted: rgba(28, 18, 8, 0.6);
    --white:      #FFFFFF;

    --font:       'Codec Pro', sans-serif;
    --ease-out:   cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in:    cubic-bezier(0.5, 0, 0.75, 0);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg-base);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ── WOOD GRAIN SVG TEXTURE ─────────────────────────────────── */
.wood-texture {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='wood'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.015 0.7' numOctaves='5' seed='8' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0.3'/%3E%3CfeBlend mode='multiply' in2='SourceGraphic'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23wood)' opacity='0.06'/%3E%3C/svg%3E");
}

/* ── NOISE GRAIN ─────────────────────────────────────────────── */
.grain::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* ── SCROLL REVEAL BASE ──────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ── GLASSMORPHISM UTILITIES ─────────────────────────────────── */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.liquid-glass-hover {
    transition: all 0.4s var(--ease-out);
}
.liquid-glass-hover:hover {
    background: var(--bg-glass-hover);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    border-color: var(--border-accent);
    box-shadow: 0 12px 40px rgba(254, 66, 2, 0.15);
    transform: translateY(-4px);
}

/* ── HEADER ──────────────────────────────────────────────────── */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    padding: 0 28px;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid var(--border-glass);
    transition: all 0.4s var(--ease-out);
}

header.scrolled {
    background: rgba(17, 17, 17, 0.98);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.logo-name {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--white);
}

nav > a, .nav-drop > a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.7);
    position: relative;
    transition: color 0.25s;
}

nav > a:hover, .nav-drop > a:hover { color: var(--white); }

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 38px;
    border-radius: 7px;
    transition: transform 0.3s var(--ease-out);
}

.logo:hover img { transform: rotate(-3deg) scale(1.05); }

.logo-name {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--text);
}

nav { display: flex; align-items: center; gap: 36px; }

nav > a, .nav-drop > a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-mid);
    position: relative;
    transition: color 0.25s;
}

nav > a::after, .nav-drop > a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1.5px;
    background: var(--accent);
    transition: width 0.3s var(--ease-out);
}

nav > a:hover, .nav-drop > a:hover { color: var(--text); }
nav > a:hover::after, .nav-drop:hover > a::after { width: 100%; }

/* ── DROPDOWN ────────────────────────────────────────────────── */
.nav-drop {
    position: relative;
}

.nav-drop > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Chevron icon */
.nav-drop > a .chev {
    width: 12px; height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease-out);
    opacity: 0.5;
}

.nav-drop:hover > a .chev {
    transform: rotate(180deg);
    opacity: 1;
}

/* Invisible bridge so mouse can move to dropdown */
.nav-drop::before {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px; right: -20px;
    height: 18px;
}

.dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: var(--white);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.13), 0 0 0 1px rgba(212,196,168,0.3);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s;
}

.nav-drop:hover .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Arrow tip */
.dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px; height: 12px;
    background: var(--white);
    border-top: 1px solid rgba(212,196,168,0.3);
    border-left: 1px solid rgba(212,196,168,0.3);
}

.dropdown-header {
    padding: 12px 14px 10px;
    border-bottom: 1px solid rgba(212,196,168,0.35);
    margin-bottom: 6px;
}

.dropdown-header span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.dropdown-header strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    margin-top: 2px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--text-mid);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s var(--ease-out);
    cursor: pointer;
}

.dropdown-item:hover {
    background: var(--cream-2);
    color: var(--text);
    padding-left: 18px;
}

.dropdown-item:hover .di-icon {
    background: var(--accent);
    color: var(--white);
}

.di-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--cream-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    transition: all 0.2s;
}

.di-text {}

.di-label {
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.di-sub {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 2px;
}

.dropdown-footer {
    margin-top: 6px;
    padding: 10px 14px 6px;
    border-top: 1px solid rgba(212,196,168,0.35);
}

.dropdown-footer a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.dropdown-footer a:hover { gap: 10px; }

.header-actions { display: flex; align-items: center; gap: 18px; }

/* ── HAMBURGER ───────────────────────────────────────────────── */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 201;
}

.burger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.35s var(--ease-out);
    transform-origin: center;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ───────────────────────────────────────── */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 199;
    flex-direction: column;
    padding: 100px 32px 48px;
    gap: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.mobile-nav.open {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav a {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    padding: 18px 0;
    border-bottom: 1px solid rgba(212,196,168,0.4);
    display: block;
    transition: color 0.2s, padding-left 0.3s var(--ease-out);
}

.mobile-nav a:hover { color: var(--accent); padding-left: 12px; }

.mobile-nav-footer {
    margin-top: auto;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mobile-nav-footer a {
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 10px 20px !important;
    border: 1px solid var(--sand) !important;
    border-radius: 50px !important;
    letter-spacing: 0.06em;
}

.lang-sw {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.lang-sw a { color: var(--text-muted); transition: color 0.2s; }
.lang-sw a.on { color: var(--accent); }

.cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: var(--text);
    color: var(--cream);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s var(--ease-out);
    border: 2px solid var(--text);
}

.cart-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,79,0,0.3);
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Parallax bg image */
/* Clean cream background — no photo bleed-through */
.hero-bg {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, #4C1300 0%, #111111 80%);
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-left {}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s 0.2s var(--ease-out) forwards;
}

.tag-line {
    width: 32px; height: 1px;
    background: var(--accent);
}

.tag-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--accent);
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-h1 {
    font-size: clamp(52px, 6.5vw, 88px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 32px;
}

/* Word-by-word animation */
.hero-h1 .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px);
    animation: wordUp 0.7s var(--ease-out) forwards;
}

.hero-h1 .word:nth-child(1) { animation-delay: 0.3s; }
.hero-h1 .word:nth-child(2) { animation-delay: 0.45s; }
.hero-h1 .word:nth-child(3) { animation-delay: 0.6s; }
.hero-h1 .word.accent { color: var(--accent); }

@keyframes wordUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-desc {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    max-width: 400px;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s var(--ease-out) forwards;
}

.hero-btns {
    display: flex;
    gap: 14px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.8s 1s var(--ease-out) forwards;
}

.btn-fire {
    padding: 15px 36px;
    background: var(--accent);
    color: var(--white);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: 2px solid var(--accent);
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-fire::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-fire:hover::after { width: 300px; height: 300px; }

.btn-fire:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255,79,0,0.35);
}

.btn-outline {
    padding: 15px 36px;
    border: 1.5px solid rgba(92,60,40,0.3);
    color: var(--text-mid);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s var(--ease-out);
}

.btn-outline:hover {
    border-color: var(--text);
    color: var(--text);
    transform: translateY(-2px);
}

/* Hero right: floating image mosaic */
.hero-right {
    position: relative;
    height: 500px;
    opacity: 0;
    animation: fadeUp 1s 0.5s var(--ease-out) forwards;
}

.hero-img-main {
    position: absolute;
    top: 0; right: 0;
    width: 72%;
    height: 88%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.2);
}

.hero-img-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 8s linear;
}

.hero-img-main:hover img { transform: scale(1.06); }

.hero-img-small {
    position: absolute;
    bottom: 0; left: 0;
    width: 44%;
    height: 52%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 4px solid var(--cream);
}

.hero-img-small img {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* Floating stat pill */
.hero-pill {
    position: absolute;
    top: 40%;
    left: -10%;
    background: var(--white);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    animation: float 4s ease-in-out infinite;
    z-index: 3;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.pill-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.pill-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 3px;
}

/* Badge "Ручная работа" — SVG circular text, no upside-down text */
.hero-badge {
    position: absolute;
    bottom: 12%;
    right: -5%;
    width: 108px; height: 108px;
    animation: spin 18s linear infinite;
    filter: drop-shadow(0 8px 20px rgba(255,79,0,0.45));
}

.hero-badge svg {
    width: 100%; height: 100%;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ── MARQUEE ─────────────────────────────────────────────────── */
.marquee {
    background: var(--bark);
    padding: 13px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    gap: 50px;
    animation: marquee 24s linear infinite;
}

.marquee-item {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--sand);
}

.marquee-sep { color: var(--accent); }

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ── COUNTERS ────────────────────────────────────────────────── */
.counters {
    padding: 70px 0;
    background: var(--bg-glass);
    border-bottom: 1px solid var(--border-glass);
    border-top: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.counter-item {
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid var(--border-glass);
}

.counter-item:last-child { border-right: none; }

.counter-num {
    font-size: 56px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.counter-num .counter-val { color: var(--text); }
.counter-num .counter-suffix { color: var(--accent); }

.counter-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

/* ── PRODUCTS ────────────────────────────────────────────────── */
.products { padding: 120px 0; }

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}

.sec-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 12px;
}

.sec-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
}

.sec-title .thin {
    font-weight: 300;
    color: var(--text-muted);
}

/* Horizontal scroll cards */
.products-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    /* padding-top даёт зазор для translateY hover-эффекта */
    padding-top: 16px;
    padding-bottom: 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.products-scroll::-webkit-scrollbar { display: none; }
.products-scroll:active { cursor: grabbing; }

.prod-card {
    min-width: 300px;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    transition: all 0.4s var(--ease-out);
    scroll-snap-align: start;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.prod-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid var(--border-gold);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 2;
}

.prod-card:hover {
    transform: translateY(-8px);
    background: var(--bg-glass-hover);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    border-color: var(--border-gold);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.08);
}

.prod-card:hover::before { opacity: 1; }

.prod-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.prod-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.prod-card:hover .prod-img img { transform: scale(1.08); }

.prod-cat-badge {
    position: absolute;
    top: 14px; left: 14px;
    padding: 5px 12px;
    text-transform: uppercase;
    background: rgba(18, 18, 18, 0.85);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
}
.breadcrumbs a:nth-child(1){
    color: var(--accent);
    font-weight: 500;
}
.breadcrumbs .divider {
    margin: 0 2px;
}
.prod-body {
    padding: 22px;
}
.product-price .prod-price {
    font-size: 80px;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}
.product-price .prod-price .oldPrice {
    font-size: 28px;
    font-weight: 400;
    color: rgba(32, 27, 27, 0.54);
    margin-left: 10px;
    text-decoration: line-through;
}

.prod-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.3;
}

.prod-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
    font-weight: 300;
}

.prod-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prod-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
}
.prod-price .oldPrice {
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    margin-left: 10px;
    text-decoration: line-through;
}

.prod-price-note {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 400;
}

.prod-add {
    width: 40px; height: 40px;
    background: var(--text);
    color: var(--cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out);
}

.prod-add:hover,
.prod-card:hover .prod-add {
    background: var(--accent);
    transform: rotate(90deg) scale(1.1);
}

/* ── CRAFT STORY ─────────────────────────────────────────────── */
/* Sticky scroll storytelling — how wood becomes art */
.craft-story {
    padding: 120px 0 0;
    background: var(--bark);
    position: relative;
}

.craft-intro {
    text-align: center;
    padding-bottom: 80px;
}

.craft-intro .sec-eyebrow {
    color: var(--gold);
}

.craft-intro .sec-title {
    color: var(--white);
    font-size: 52px;
}

.craft-intro .sec-title .thin { color: rgba(255,255,255,0.4); }

.craft-intro p {
    font-size: 16px;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    max-width: 520px;
    margin: 20px auto 0;
    line-height: 1.7;
}

/* Sticky steps */
.craft-steps {
    position: relative;
}

.craft-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: center;
}

/* Even steps: swap columns with order */
.craft-step.reverse .craft-step-img  { order: 2; }
.craft-step.reverse .craft-step-content { order: 1; }

.craft-step-img {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.craft-step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.craft-step:hover .craft-step-img img { transform: scale(1.03); }

/* Normal step: gradient fades right edge (toward content on right) */
.craft-step-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 55%, var(--bark));
}

/* Reversed step: gradient fades left edge (toward content on left) */
.craft-step.reverse .craft-step-img::after {
    background: linear-gradient(to left, transparent 55%, var(--bark));
}

.craft-step-content {
    padding: 80px 60px;
    position: relative;
    z-index: 2;
}

.step-big-num {
    font-size: 120px;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    margin-bottom: -20px;
    letter-spacing: -0.05em;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid rgba(200,151,74,0.4);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 24px;
}

.step-badge-dot {
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.step-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.step-title em {
    font-style: normal;
    color: var(--accent);
}

.step-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    font-weight: 300;
    max-width: 380px;
    margin-bottom: 32px;
}

.step-detail {
    display: flex;
    gap: 24px;
}

.detail-item {
    text-align: center;
}

.detail-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.detail-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
    margin-top: 3px;
}

/* ── VIDEO SECTION ───────────────────────────────────────────── */
.video-section {
    background: var(--bark);
    padding: 0 0 120px;
}

.video-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.video-box {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/7;
    background: var(--wood-dark);
    cursor: pointer;
}

.video-box img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
    filter: brightness(0.7);
}

.video-box:hover img { transform: scale(1.02); filter: brightness(0.8); }

.video-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 88px; height: 88px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out);
    z-index: 2;
}

.video-play::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 0; }
}

.video-box:hover .video-play {
    background: var(--accent);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play svg { color: var(--accent); transition: color 0.3s; }
.video-box:hover .video-play svg { color: var(--white); }

.video-label {
    position: absolute;
    bottom: 32px; left: 40px;
    color: var(--white);
    z-index: 2;
}

.video-label p {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    opacity: 0.6;
    margin-bottom: 4px;
}

.video-label h3 {
    font-size: 28px;
    font-weight: 800;
}

/* ── FEATURES SPLIT ─────────────────────────────────────────── */
.features {
    padding: 120px 0;
    background: var(--cream-2);
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Bug fix: overflow:visible so chips are not clipped */
.features-img {
    border-radius: 20px;
    overflow: visible;
    height: 560px;
    position: relative;
}

.features-img-inner {
    border-radius: 20px;
    overflow: hidden;
    width: 100%; height: 100%;
    position: relative;
}

.features-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* Floating chips on image */
.feature-chip {
    position: absolute;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 4;
}

.feature-chip:nth-child(2) {
    top: 32px; right: -28px;
    animation: float 4s ease-in-out infinite;
}

.feature-chip:nth-child(3) {
    bottom: 80px; left: -28px;
    animation: float 4s 2s ease-in-out infinite;
}

.chip-icon {
    width: 36px; height: 36px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.chip-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.chip-sub {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 400;
}

.features-content {}

.features-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-row {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(212,196,168,0.4);
    align-items: flex-start;
    transition: all 0.3s var(--ease-out);
    cursor: default;
}

.feature-row:last-child { border-bottom: none; }

.feature-row:hover {
    padding-left: 10px;
}

.feature-icon {
    width: 44px; height: 44px;
    background: var(--cream);
    border: 1.5px solid var(--sand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s var(--ease-out);
}

.feature-row:hover .feature-icon {
    background: var(--accent);
    border-color: var(--accent);
}

.feature-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform 0.3s var(--ease-out), filter 0.3s var(--ease-out);
}

.feature-row:hover .feature-icon-img {
    transform: scale(1.15);
    filter: brightness(0) invert(1);
}

.feature-text h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* ── REVIEWS ─────────────────────────────────────────────────── */
.reviews { padding: 120px 0; }

.reviews-head { margin-bottom: 56px; }

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.rev-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 34px;
    border: 1px solid var(--border-glass);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.rev-card::before {
    content: '"';
    position: absolute;
    top: -10px; right: 24px;
    font-size: 120px;
    font-weight: 800;
    color: rgba(255,79,0,0.06);
    line-height: 1;
    font-family: serif;
}

.rev-card:hover {
    transform: translateY(-6px);
    background: var(--bg-glass-hover);
    border-color: var(--border-gold);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.08);
}

.rev-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.rev-stars span {
    color: var(--accent);
    font-size: 14px;
}

.rev-text {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 26px;
    font-weight: 300;
}

.rev-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 22px;
    border-top: 1px solid rgba(212,196,168,0.3);
}

.rev-ava {
    width: 42px; height: 42px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--cream-2);
}

.rev-ava img { width: 100%; height: 100%; object-fit: cover; }

.rev-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.rev-handle {
    font-size: 11px;
    color: var(--text-muted);
}

/* ── CTA ─────────────────────────────────────────────────────── */
.cta {
    padding: 0 28px 120px;
}

.cta-box {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bark);
    border-radius: 28px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

/* Wood grain rings decorative */
.cta-box::before {
    content: '';
    position: absolute;
    bottom: -120px; right: -120px;
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 60px solid rgba(255,255,255,0.03);
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 280px; height: 280px;
    border-radius: 50%;
    border: 40px solid rgba(255,79,0,0.06);
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.cta-content h2 em {
    font-style: normal;
    color: var(--accent);
}

.cta-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    font-weight: 300;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.btn-cta {
    padding: 16px 44px;
    background: var(--accent);
    color: var(--white);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: all 0.3s var(--ease-out);
    border: 2px solid var(--accent);
}

.btn-cta:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-cta-ghost {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    transition: color 0.2s;
    white-space: nowrap;
}

.btn-cta-ghost:hover { color: rgba(255,255,255,0.7); }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
    background: var(--wood-dark);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 32px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand-logo img {
    height: 34px;
    border-radius: 6px;
}

.footer-brand-logo span {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--white);
}

.footer-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    line-height: 1.75;
    margin-bottom: 24px;
}

.social-row { display: flex; gap: 8px; }

.soc {
    width: 32px; height: 32px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    transition: all 0.25s;
}

.soc:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.ft-col h5 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
}

.ft-col ul { display: flex; flex-direction: column; gap: 12px; }

.ft-col a {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    transition: color 0.2s;
}

.ft-col a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255,255,255,0.2);
}

/* ══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE  ≤ 768px
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Cursor off on touch */
    .cursor-dot, .cursor-ring { display: none; }

    /* ── Header ── */
    nav, .lang-sw, .cart-btn { display: none; }
    .burger { display: flex; }
    .mobile-nav { display: flex; }

    /* ── Hero ── */
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px 60px;
        text-align: center;
    }

    .hero-h1 { font-size: clamp(40px, 11vw, 60px); }

    .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }

    .hero-btns { justify-content: center; flex-wrap: wrap; }

    .hero-tag { justify-content: center; }

    /* Mosaic: simpler stacked layout on mobile */
    .hero-right {
        height: 340px;
        width: 100%;
    }

    .hero-img-main {
        width: 80%;
        height: 85%;
        top: 0; right: 0; left: auto;
    }

    .hero-img-small {
        width: 46%;
        height: 48%;
        bottom: 0; left: 0;
    }

    /* Pill & badge repositioned */
    .hero-pill {
        top: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        animation: none;
        white-space: nowrap;
    }

    .hero-badge {
        width: 76px; height: 76px;
        right: -4px;
        bottom: 8%;
    }

    /* ── Counters ── */
    .counters-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 0;
    }

    .counter-item:nth-child(2) { border-right: none; }
    .counter-item { padding: 0 16px; }
    .counter-num { font-size: 40px; }

    /* ── Products ── */
    .products { padding: 72px 0; }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 0 20px;
        margin-bottom: 32px;
    }

    .sec-title { font-size: 30px; }

    .prod-card { min-width: 260px; }

    /* ── Craft Story ── */
    .craft-story { padding: 72px 0 0; }

    .craft-intro .sec-title { font-size: 32px; }
    .craft-intro p { font-size: 14px; padding: 0 8px; }

    /* Steps: full-width stacked, no sticky */
    .craft-step,
    .craft-step.reverse {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .craft-step .craft-step-img,
    .craft-step.reverse .craft-step-img {
        order: 0;
        position: relative;
        height: 280px;
        top: auto;
    }

    .craft-step .craft-step-content,
    .craft-step.reverse .craft-step-content {
        order: 1;
        padding: 40px 24px;
    }

    /* Gradient bottom-only on mobile */
    .craft-step-img::after,
    .craft-step.reverse .craft-step-img::after {
        background: linear-gradient(to bottom, transparent 50%, var(--bark));
    }

    .step-big-num { font-size: 72px; }
    .step-title { font-size: 30px; }
    .step-desc { font-size: 14px; max-width: 100%; }

    /* ── Video ── */
    .video-box { aspect-ratio: 16/9; border-radius: 16px; }
    .video-wrapper { padding: 0 16px; }
    .video-play { width: 64px; height: 64px; }
    .video-label h3 { font-size: 18px; }

    /* ── Features ── */
    .features { padding: 72px 0; }

    .features-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .features-img {
        height: 320px;
        overflow: hidden;
        border-radius: 16px;
    }

    .features-img-inner { border-radius: 16px; }

    /* Chips: repositioned for mobile */
    .feature-chip:nth-child(2) { top: 16px; right: 16px; }
    .feature-chip:nth-child(3) { bottom: 16px; left: 16px; }

    /* ── Reviews ── */
    .reviews { padding: 72px 0; }
    .reviews-grid { grid-template-columns: 1fr; gap: 16px; }

    /* ── CTA ── */
    .cta { padding: 0 16px 72px; }

    .cta-box {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 28px;
        border-radius: 20px;
    }

    .cta-content h2 { font-size: 30px; }
    .cta-actions { align-items: flex-start; }

    /* ── Footer ── */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Tablet 769–1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-h1 { font-size: clamp(44px, 5.5vw, 68px); }

    .hero-inner { gap: 36px; padding: 40px 28px; }

    .counters-grid { gap: 0; }

    .craft-step-content { padding: 60px 40px; }

    .step-title { font-size: 36px; }

    .features-layout { gap: 48px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

    .reviews-grid { grid-template-columns: 1fr 1fr; }

    .cta-box { padding: 60px 48px; }
}

/* ── SAWDUST PARTICLES ───────────────────────────────────────── */
.particles-wrap {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: sawdust linear infinite;
}

@keyframes sawdust {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(0deg);
    }
    10% { opacity: 1; }
    90% { opacity: 0.2; }
    100% {
        opacity: 0;
        transform: translateY(-100vh) rotate(720deg);
    }
}

/* ── CURSOR FOLLOWER ─────────────────────────────────────────── */
.cursor-dot {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, opacity 0.3s;
}

.cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(255,79,0,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: all 0.12s ease-out;
}

body:not(:hover) .cursor-dot,
body:not(:hover) .cursor-ring {
    opacity: 0;
}

a:hover ~ .cursor-ring,
button:hover ~ .cursor-ring {
    width: 48px; height: 48px;
}

/* ── SECTION DIVIDER ─────────────────────────────────────────── */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--sand), transparent);
    margin: 0 28px;
}

/* ── HORIZONTAL PROGRESS ─────────────────────────────────────── */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    background: var(--accent);
    z-index: 300;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s linear;
}
.btn-add-cart {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: var(--text);
    color: var(--cream);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font);
    white-space: nowrap;
}
.btn-add-cart:hover { background: var(--accent); transform: translateY(-2px); }

/* modal blocks */

.modal-popup {
    display: none;
}
.modal-popup.active {
    display: flex;
    top: 0;
    position: fixed;
}
.modal-popup .modal-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgb(256,256,256,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-popup .modal-overlay .content {
    width: 450px;
    height: 250px;
    box-shadow: 0 3px 8px 0 #686868;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    line-height: 26px;
    padding: 20px;
    position: relative;
    border-radius: 16px;
    max-width: 100%;
    background-color: #F5EAE2;
}
.modal-overlay .close {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 20px;
    right: 20px;
}
.modal-popup .modal-overlay .message {
    padding-left: 120px;
    background-image: url('/assets/icons/souvenir.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100px;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.modal-popup .modal-overlay .message .cartlink {
    width: 100%;
    text-align: left;
    color: var(--accent)
}
.page-hero-inner .breadcrumbs a,
.page-hero-inner .breadcrumbs .textbc,
.page-hero-inner .breadcrumbs .divider {
    color: var(--white);
}
.page-hero-inner .breadcrumbs .divider {
    background: transparent;
}
.User_data {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}
.User_data .fields_wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px
}
.User_data .fields_wrapper > div {
    width: calc((100% - 10px)/2);
}
.User_data .fields_wrapper > div > input {
    width: 100%;
    height: 42px;
    padding-left: 15px;
    display: flex;
    justify-content: left;
    border: 0;
    align-items: center;
    background-color: #EAEAEA;
}