:root {
    --bg: #2a1716;
    --bg-soft: #3a2421;
    --text: #f6efe9;
    --accent: #c3a57b;
    --accent-strong: #e7c792;
    --card: #2f1d1b;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    --radius: 14px;
}
* {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Helvetica, Arial, sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: var(--text);
    text-decoration: none;
}
.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

/* Hero */
header.hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: flex-end;
    padding: 18vh 0 4rem;
    background: radial-gradient(80% 80% at 50% 20%, rgba(227, 189, 140, 0.18), transparent 60%), #241412 url("banner.jpg") center/cover no-repeat;
}
header.hero.min {
    min-height: 50vh;
    background: radial-gradient(80% 80% at 50% 20%, rgba(227, 189, 140, 0.18), transparent 60%), #241412;
}
.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(24, 14, 13, 0.85), rgba(24, 14, 13, 0.15));
}
.hero .content {
    position: relative;
    z-index: 1;
}
.badge {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    background: rgba(195, 165, 123, 0.18);
    border: 1px solid rgba(195, 165, 123, 0.4);
    color: var(--accent-strong);
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}
h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin: 0.7rem 0 1rem;
}
.sub {
    font-size: 1.06rem;
    /* max-width: 52ch; */
    color: #f0e4d6;
}
.cta-row {
    display: flex;
    gap: 1rem;
    margin-top: 1.4rem;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(227, 199, 146, 0.35);
    background: linear-gradient(180deg, var(--accent), var(--accent-strong));
    color: #2a1a16;
    font-weight: 700;
    box-shadow: var(--shadow);
    cursor: pointer;
}
.btn.secondary {
    background: transparent;
    border-color: rgba(227, 199, 146, 0.4);
    color: var(--text);
}
.section {
    padding: 4rem 0;
    border-top: 1px solid rgba(227, 199, 146, 0.12);
}
.kicker {
    color: var(--accent-strong);
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    text-transform: uppercase;
}
.grid {
    display: grid;
    gap: 1.2rem;
}
.grid.features {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
    background: var(--card);
    border: 1px solid rgba(227, 199, 146, 0.14);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow);
}
.card .title {
    font-weight: 700;
    margin: 0.2rem 0 0.35rem;
}
.value {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(227, 199, 146, 0.15);
    border: 1px dashed rgba(227, 199, 146, 0.4);
    color: var(--accent-strong);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-weight: 700;
}
.steps {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.step {
    background: var(--card);
    padding: 1.1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(227, 199, 146, 0.14);
    position: relative;
}
.step .num {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: #2a1a16;
    font-weight: 800;
    border: 2px solid #2a1a16;
    box-shadow: var(--shadow);
}
.apply {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: 1fr;
}
.form {
    background: var(--bg-soft);
    border: 1px solid rgba(227, 199, 146, 0.16);
    border-radius: var(--radius);
    padding: 1.2rem;
}
.input {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(227, 199, 146, 0.25);
    background: #221512;
    color: var(--text);
}
.input:focus {
    border-color: var(--accent-strong);
    box-shadow: 0 0 0 3px rgba(227, 199, 146, 0.18);
}
.checkbox {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    margin: 0.6rem 0;
}
.gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.gallery img {
    border-radius: var(--radius);
    border: 1px solid rgba(227, 199, 146, 0.14);
}
.faq details {
    background: var(--card);
    border: 1px solid rgba(227, 199, 146, 0.14);
    border-radius: 12px;
    padding: 1rem;
    margin: 0.7rem 0;
}
footer {
    padding: 3rem 0;
    color: #e8d9c2;
}
footer .row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(227, 199, 146, 0.12);
    padding-top: 1rem;
}
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    z-index: 30;
    padding: 0.75rem;
    background: linear-gradient(180deg, rgba(20, 10, 9, 0), rgba(20, 10, 9, 0.9) 25%, rgba(20, 10, 9, 0.95));
}
.sticky-cta .btn {
    width: min(540px, 92%);
}
@media (min-width: 960px) {
    .apply {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

/* Movement highlight */
.section.why {
    position: relative;
    overflow: hidden;
    background: radial-gradient(1200px 500px at 10% 0%, rgba(227, 199, 146, 0.14), transparent 60%), radial-gradient(900px 400px at 90% 30%, rgba(195, 165, 123, 0.1), transparent 65%);
}
.section.why .halo {
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 60%;
    pointer-events: none;
    filter: blur(40px) saturate(120%);
    background: conic-gradient(from 0deg, rgba(227, 199, 146, 0.25), rgba(195, 165, 123, 0.05), rgba(227, 199, 146, 0.25));
    opacity: 0.35;
    animation: slowSpin 24s linear infinite;
}
.section.why h2 {
    position: relative;
    display: inline-block;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(227, 199, 146, 0.2), rgba(227, 199, 146, 0) 60%);
    text-shadow: 0 2px 18px rgba(227, 199, 146, 0.25);
}
@keyframes slowSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* LOADER */
@font-face {
    font-family: 'Manhattan';
    src: url('https://cdn.shopify.com/s/files/1/0813/4488/9166/files/ManhattanRegular.woff?v=1744187624') format('woff'),
        url('https://cdn.shopify.com/s/files/1/0813/4488/9166/files/ManhattanRegular.ttf?v=1744187624') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
.preloader {
    width: 100dvw;
    height: 100dvh;
    max-width: 100%;
    z-index: 9999999999999 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
}
.preloader .loader {
    position: absolute;
    display: block !important;
    padding: 8px;
    width: fit-content;
    font-weight: bold;
    font-family: monospace;
    font-size: 5rem;
    color: #0000;
    background: linear-gradient(90deg,#7e3f3a calc(50% + 0.5ch),#000 0) right/calc(200% + 1ch) 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: l7 2s infinite steps(11);
}
.loader:before {
    content: "LVW";
    font-family: 'Manhattan';
}
@keyframes l7 {to{background-position: left}}
/* LOADER - END */

/* FORM */
.ninja {
    display: none !important;
}
.error {
	color: #FF0000;
}
.mt-3 {
    margin-top: 1.5rem !important;
}
.mb-3 {
    margin-bottom: 1.5rem !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.formElementHolder {
    margin-bottom: 1rem;
}
/* FORM - END */

/* CUSTOM */
.productSizesHolder {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 8px;
}
button.product_size_chooser {
    height: 40px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid var(--accent-strong);
    color: var(--text);
    font-weight: 500;
}
button.product_size_chooser.activeSize {
    background: var(--accent-strong);
    color: var(--bg);
}
.influencer_product_choice_button {
    height: 40px !important;
    border-radius: 10px;
    background: transparent;
    border: 1px solid var(--accent-strong);
    color: var(--text);
    font-weight: 500;
}
button.influencer_product_choice_button.activeProduct {
    background: var(--accent-strong);
    color: var(--bg);
}
h2 {
    margin-top: 0;
}
.label {
    display: block;
    font-size: .9rem;
    margin: .4rem 0 .4rem;
    color: #ecd8bf;
}
.help-inline {
    font-size: .9rem;
    color: #e8d9c2;
    opacity: .85;
    margin-top: .25rem;
}
.productItem .row {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.productItem .col-4 {
    flex: 0 0 35%;
}
.productItem .col-8 {
    flex: 0 0 65%;
}
.productItem h5 {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.productItem h5 span s {
    color: indianred;
}
.productItem h5 span {
    color: var(--accent-strong);
    font-size: 0.6rem;
}
.productItem p {
    margin: 1rem 0;
    font-size: 0.8rem;
}
input[type="checkbox"]:checked {
    background-color: var(--accent-strong);
    border-color: var(--accent-strong);
}
/* CUSTOM - END */