@import url("fontawesome-all.min.css");

:root {
    --lukher-accent: #f5a623;
    --lukher-accent-2: #ffca5f;
    --lukher-dark: #0f172a;
    --lukher-navy: #102447;
    --lukher-blue: #174ea6;
    --lukher-text: #102447;
    --lukher-muted: #5d6b82;
    --lukher-border: rgba(16, 36, 71, .12);
    --lukher-card: rgba(255, 255, 255, .94);
    --lukher-soft: #f8f5ef;
    --lukher-success: #1f9d55;
    --lukher-danger: #dc2626;

    --page-width: 1560px;
    --page-gap: 4rem;

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --shadow-soft: 0 20px 60px rgba(16, 36, 71, .08);
    --shadow-card: 0 22px 65px rgba(16, 36, 71, .09);
}

/* =========================
   RESET / BASE
========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--lukher-text);
    background:
        radial-gradient(circle at top right, rgba(245, 166, 35, .18), transparent 28%),
        radial-gradient(circle at top left, rgba(255, 255, 255, .9), transparent 32%),
        linear-gradient(135deg, #fbf7ef 0%, #f7efe3 48%, #eef3fb 100%);
    overflow-x: hidden;
}

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

a {
    color: var(--lukher-blue);
    text-decoration: none;
    transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

a:hover {
    color: var(--lukher-navy);
}

p {
    margin: 0 0 1rem;
    color: var(--lukher-muted);
}

ul,
ol {
    margin-top: 0;
    color: var(--lukher-muted);
}

li {
    color: var(--lukher-muted);
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
    color: var(--lukher-navy);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.025em;
}

h1 {
    font-size: clamp(3rem, 5vw, 5.6rem);
}

h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
    font-size: 1.35rem;
}

hr {
    border: 0;
    border-top: 1px solid rgba(16, 36, 71, .1);
    margin: 1.5rem 0;
}

input,
select,
textarea,
button {
    font: inherit;
}

input,
textarea,
select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(16, 36, 71, .14);
    border-radius: 12px;
    background: rgba(255, 255, 255, .95);
    color: var(--lukher-navy);
    padding: .75rem .9rem;
    outline: 0;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

label {
    display: block;
    margin: 0 0 .45rem;
    color: var(--lukher-navy);
    font-weight: 800;
}

#page-wrapper {
    min-height: 100vh;
}

/* =========================
   LAYOUT HELPERS
========================= */

.container,
.home-shell,
.product-shell,
.products-grid,
.home-trust-strip,
.store-footer-inner,
.store-footer-bottom {
    width: min(var(--page-width), calc(100% - var(--page-gap)));
    margin-left: auto;
    margin-right: auto;
}

.wrapper {
    padding: 4rem 0;
    background: transparent;
}

.wrapper.style1,
.wrapper.style2,
.wrapper.style2.special.fade {
    background: transparent;
    color: var(--lukher-text);
}

.special {
    text-align: center;
}

.major {
    text-align: center;
    margin-bottom: 2rem;
}

.major h2 {
    margin-bottom: .75rem;
}

.major p {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.major::after {
    content: "";
    display: block;
    width: 260px;
    max-width: 55%;
    height: 4px;
    margin: 2rem auto 0;
    border-radius: 999px;
    background: #e44c65;
}

.box {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(16, 36, 71, .1);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
}

.box.alt {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.image {
    display: block;
}

.image.fit {
    display: block;
    width: 100%;
}

.image.fit img {
    display: block;
    width: 100%;
    border-radius: var(--radius-md);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

.actions.special {
    justify-content: center;
}

.actions.fit {
    display: grid;
    grid-template-columns: 1fr;
}

.actions li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.row.gtr-uniform {
    gap: 1.25rem;
}

.row.gtr-150 {
    gap: 2rem;
}

.row.gtr-50 {
    gap: .75rem;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-6 {
    flex: 0 0 calc(50% - .625rem);
    max-width: calc(50% - .625rem);
}

.col-4 {
    flex: 0 0 calc(33.333% - .84rem);
    max-width: calc(33.333% - .84rem);
}

/* =========================
   BUTTONS
========================= */

.button,
button,
input[type="submit"] {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    padding: 0 1.25rem;
    background: rgba(16, 36, 71, .08);
    color: var(--lukher-navy) !important;
    font-weight: 800;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    box-shadow: none;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
    transform: translateY(-1px);
}

.button.primary,
.button.dark-cta,
button.button.dark-cta {
    background: var(--lukher-navy);
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(16, 36, 71, .16);
}

.button.light-cta {
    background: #fff;
    color: var(--lukher-navy) !important;
    border: 1px solid rgba(16, 36, 71, .15);
    box-shadow: 0 8px 20px rgba(16, 36, 71, .08);
}

.button.fit {
    width: 100%;
}

/* =========================
   ICONS / ACCESSIBILITY
========================= */

.icon {
    text-decoration: none;
}

.icon.solid::before,
.icon.brands::before {
    display: inline-block;
}

.label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

/* =========================
   HEADER
========================= */

#header.store-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(16, 36, 71, .08);
    box-shadow: 0 8px 28px rgba(16, 36, 71, .045);
    z-index: 10000;
}

.store-header-inner {
    width: min(var(--page-width), calc(100% - var(--page-gap)));
    height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.store-logo {
    display: flex;
    align-items: center;
    height: 82px;
    margin: 0;
}

.store-logo a {
    height: 82px;
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    color: var(--lukher-navy) !important;
}

.store-logo-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 12px;
    display: inline-grid;
    place-items: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .28), transparent 34%),
        linear-gradient(135deg, #102447, #174ea6);
    color: #fff;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: -.04em;
    box-shadow: 0 10px 24px rgba(16, 36, 71, .16);
}

.store-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.store-logo-name {
    color: var(--lukher-navy);
    font-size: 1rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.035em;
}

.store-logo-subtitle {
    margin-top: .22rem;
    color: rgba(16, 36, 71, .56);
    font-size: .68rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .01em;
}

.store-nav {
    height: 82px;
    display: flex;
    align-items: center;
    position: static;
    line-height: normal;
}

.store-nav ul {
    height: 82px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.store-nav ul li {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.store-nav ul li a {
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    color: rgba(16, 36, 71, .72) !important;
    font-size: .92rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.store-nav ul li a:hover {
    color: var(--lukher-navy) !important;
    transform: translateY(-1px);
}

.store-nav ul li a.store-contact-button {
    height: 38px;
    padding: 0 1.05rem;
    border-radius: 999px;
    background: rgba(16, 36, 71, .06);
    color: var(--lukher-navy) !important;
    border: 1px solid rgba(16, 36, 71, .14);
    box-shadow: none;
}

.store-nav ul li a.store-contact-button:hover {
    background: var(--lukher-navy);
    color: #fff !important;
    border-color: var(--lukher-navy);
    box-shadow: 0 8px 18px rgba(16, 36, 71, .12);
}

/* =========================
   BADGES / HELPERS
========================= */

.badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    padding: .35em .85em;
    font-size: .78rem;
    font-weight: 800;
    border: 1px solid rgba(16, 36, 71, .12);
    margin-bottom: .8em;
}

.badge.active {
    background: rgba(31, 157, 85, .15);
    color: #15803d;
    border-color: rgba(31, 157, 85, .35);
}

.badge.coming_soon {
    background: rgba(245, 166, 35, .18);
    color: #92400e;
    border-color: rgba(245, 166, 35, .45);
}

.badge.draft,
.badge.hidden {
    background: rgba(16, 36, 71, .08);
    color: var(--lukher-text);
}

.stars {
    color: #f7b500;
    letter-spacing: .08em;
    white-space: nowrap;
}

.muted {
    color: var(--lukher-muted);
}

/* =========================
   HOME PAGE
========================= */

.home-hero {
    padding: 9.25rem 0 3rem;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(520px, 1.05fr) minmax(520px, .95fr);
    gap: 4rem;
    align-items: center;
}

.home-title {
    max-width: 780px;
    font-size: clamp(3rem, 5vw, 5.6rem);
    line-height: 1.02;
    margin: 0 0 1.2rem;
    color: var(--lukher-navy);
    font-weight: 900;
    letter-spacing: -.055em;
}

.home-lead {
    font-size: 1.25rem;
    line-height: 1.65;
    color: var(--lukher-muted);
    max-width: 760px;
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 1.8rem;
}

.home-visual {
    min-height: 460px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 70% 25%, rgba(245, 166, 35, .22), transparent 26%),
        linear-gradient(135deg, rgba(238, 244, 255, .9), rgba(255, 255, 255, .82) 48%, rgba(245, 234, 219, .8));
    border: 1px solid rgba(16, 36, 71, .07);
    box-shadow: 0 25px 70px rgba(16, 36, 71, .08);
    position: relative;
    overflow: hidden;
}

.home-visual img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    display: block;
}

.home-floating-card {
    position: absolute;
    left: 10%;
    top: 13%;
    right: 10%;
    bottom: 13%;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(16, 36, 71, .1);
    border-radius: 22px;
    box-shadow: 0 25px 70px rgba(16, 36, 71, .13);
    padding: 1.4rem;
}

.home-floating-card .line {
    height: 12px;
    border-radius: 999px;
    background: #e6eaf2;
    margin: .8rem 0;
}

.home-floating-card .line.short {
    width: 55%;
}

.home-floating-card .panel {
    height: 120px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eef2f8, #ffffff);
    border: 1px solid rgba(16, 36, 71, .08);
    margin-top: 1.2rem;
}

.home-floating-badge {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    background: white;
    border-radius: 18px;
    padding: 1rem 1.2rem;
    box-shadow: 0 18px 45px rgba(16, 36, 71, .14);
    color: var(--lukher-navy);
    font-weight: 800;
}

.home-trust-strip {
    margin: 0 auto 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(16, 36, 71, .1);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(16, 36, 71, .08);
}

.home-trust-item {
    padding: 1.45rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    border-right: 1px solid rgba(16, 36, 71, .08);
}

.home-trust-item:last-child {
    border-right: 0;
}

.home-trust-item i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(16, 36, 71, .08);
    color: var(--lukher-navy);
    flex: 0 0 44px;
    font-size: 1.25rem;
}

.home-trust-item h3 {
    margin: 0 0 .25rem;
    color: var(--lukher-navy);
    font-size: 1rem;
}

.home-trust-item p {
    margin: 0;
    color: var(--lukher-muted);
    font-size: .92rem;
}

/* =========================
   PRODUCT CARDS / HOME
========================= */

.products-section {
    padding: 1.25rem 0 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(320px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.product-card {
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(16, 36, 71, .1);
    border-radius: 22px;
    padding: 1.8rem;
    min-height: 520px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card > div:first-child {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card > div:last-child {
    margin-top: auto;
}

.product-card h3 {
    font-size: 1.45rem;
    line-height: 1.25;
    margin-bottom: .6rem;
}

.product-card .price {
    color: var(--lukher-navy);
    font-size: 2.2rem;
    font-weight: 900;
    margin-top: auto;
    padding-top: 1.5rem;
    margin-bottom: 1rem;
}

.product-card .button {
    width: 100%;
    text-align: center;
}

/* =========================
   PRODUCT PAGE
========================= */

.product-page-wrap {
    padding: 8.5rem 0 4rem;
    color: var(--lukher-text);
}

.product-back {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: 1.5rem;
    color: var(--lukher-navy);
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
}

.product-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) 420px;
    gap: 2.5rem;
    align-items: start;
}

.product-main-card {
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.product-buy-panel,
.product-section-card,
.product-trust-bar {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(16, 36, 71, .1);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.product-hero-content {
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(420px, .9fr);
    gap: 3rem;
    align-items: center;
    min-height: 470px;
}

.product-hero-content > div:first-child {
    max-width: 760px;
}

.product-title {
    max-width: 760px;
    font-size: clamp(3rem, 4.6vw, 5.2rem);
    line-height: 1.02;
    margin: .25rem 0 1rem;
    color: var(--lukher-navy);
    font-weight: 900;
    letter-spacing: -.05em;
}

.product-lead {
    font-size: 1.25rem;
    line-height: 1.65;
    color: var(--lukher-muted);
    max-width: 720px;
}

.product-rating-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .65rem;
    margin: 1.1rem 0 1.5rem;
    font-size: 1rem;
}

.product-mini-benefits {
    max-width: 720px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .9rem;
    margin: 1.8rem 0;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(16, 36, 71, .1);
}

.mini-benefit {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    font-size: 1rem;
}

.mini-benefit i {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    display: inline-grid;
    place-items: center;
    background: rgba(16, 36, 71, .07);
    color: var(--lukher-navy);
    flex: 0 0 36px;
}

.mini-benefit strong {
    display: block;
    line-height: 1.25;
}

.mini-benefit span {
    color: var(--lukher-muted);
    font-size: .9rem;
}

/* =========================
   PRODUCT HERO VISUAL
========================= */

.product-hero-visual {
    position: relative;
    min-height: 420px;
    border-radius: var(--radius-lg);
    overflow: visible;
    background:
        radial-gradient(circle at 70% 25%, rgba(245, 166, 35, .22), transparent 26%),
        linear-gradient(135deg, rgba(238, 244, 255, .9), rgba(255, 255, 255, .82) 48%, rgba(245, 234, 219, .8));
    border: 1px solid rgba(16, 36, 71, .07);
    box-shadow: 0 25px 70px rgba(16, 36, 71, .08);
}

.product-hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.product-image-placeholder {
    display: grid;
    place-items: center;
    padding: 2rem;
}

.product-placeholder-card {
    width: min(100%, 420px);
    min-height: 320px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(16, 36, 71, .1);
    box-shadow: 0 24px 65px rgba(16, 36, 71, .12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .9rem;
    text-align: center;
    padding: 2rem;
    transform: scale(1.05);
}

.product-placeholder-icon {
    width: 86px;
    height: 86px;
    border-radius: 26px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(16, 36, 71, .1), rgba(245, 166, 35, .16));
    color: var(--lukher-navy);
    font-size: 2.2rem;
}

.product-placeholder-card h3 {
    margin: .5rem 0 0;
    font-size: 1.35rem;
    color: var(--lukher-navy);
}

.product-placeholder-card p {
    max-width: 320px;
    margin: 0;
    color: var(--lukher-muted);
    font-size: .95rem;
}

.product-placeholder-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin-top: .5rem;
}

.product-placeholder-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: .4rem .7rem;
    background: rgba(16, 36, 71, .07);
    color: var(--lukher-navy);
    font-size: .78rem;
    font-weight: 800;
}

/* =========================
   BUY PANEL
========================= */

.product-buy-panel {
    position: sticky;
    top: 6rem;
    padding: 2.2rem;
    min-width: 420px;
}

.product-buy-panel h3 {
    margin: 0 0 .6rem;
    font-size: 1.35rem;
}

.product-buy-panel .price {
    font-size: 3rem;
    line-height: 1;
    font-weight: 900;
    color: var(--lukher-navy);
    margin: .4rem 0 1rem;
    letter-spacing: -.04em;
}

.paypal-placeholder-note {
    color: var(--lukher-muted);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.payment-logos {
    display: flex;
    gap: .5rem;
    align-items: center;
    justify-content: center;
    padding: .8rem 0;
    border-bottom: 1px solid rgba(16, 36, 71, .1);
}

.payment-logos span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 28px;
    border-radius: 7px;
    background: #fff;
    border: 1px solid rgba(16, 36, 71, .1);
    font-size: .72rem;
    font-weight: 800;
    color: var(--lukher-navy);
}

.buy-trust-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.buy-trust-list li {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    padding: .65rem 0;
    border-bottom: 1px solid rgba(16, 36, 71, .07);
    font-size: 1rem;
    line-height: 1.5;
}

.buy-trust-list li:last-child {
    border-bottom: 0;
}

.buy-trust-list i {
    color: var(--lukher-navy);
    margin-top: .15rem;
}

#paypal-button-container iframe {
    border-radius: 10px !important;
}

/* =========================
   PRODUCT SECTIONS
========================= */

.product-section {
    margin-top: 1.2rem;
}

.product-section-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.product-section-card {
    padding: 1.4rem;
}

body.store-home .product-section-card {
    padding: 1.7rem;
}

.product-section-card h2 {
    font-size: 1.7rem;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(16, 36, 71, .1);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(16, 36, 71, .08);
}

.feature-pill-card {
    background: transparent;
    border-right: 1px solid rgba(16, 36, 71, .08);
    padding: 1.75rem;
    min-height: 150px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-pill-card:last-child {
    border-right: 0;
}

.feature-pill-card i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(16, 36, 71, .08);
    color: var(--lukher-navy);
    flex: 0 0 44px;
    font-size: 1.25rem;
}

.feature-pill-card h3 {
    margin: 0 0 .25rem;
    font-size: 1.05rem;
}

.feature-pill-card p {
    margin: 0;
    font-size: .98rem;
    line-height: 1.65;
}

.clean-list,
.check-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    border: 1px solid rgba(16, 36, 71, .08);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, .6);
}

.clean-list li {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 1rem;
    padding: .9rem 1rem;
    border-bottom: 1px solid rgba(16, 36, 71, .08);
}

.clean-list li:last-child,
.check-list li:last-child {
    border-bottom: 0;
}

.check-list li {
    position: relative;
    padding: .9rem 1rem .9rem 2.5rem;
    border-bottom: 1px solid rgba(16, 36, 71, .08);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 1rem;
    top: .9rem;
    color: var(--lukher-success);
    font-weight: 900;
}

.faq-list details {
    background: rgba(255, 255, 255, .65);
    border: 1px solid rgba(16, 36, 71, .08);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-bottom: .65rem;
}

.faq-list summary {
    cursor: pointer;
    color: var(--lukher-navy);
    font-weight: 800;
}

.faq-list p {
    margin: .8rem 0 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(16, 36, 71, .08);
    border-radius: 12px;
    background: rgba(255, 255, 255, .65);
    margin-bottom: .75rem;
}

.timeline-version {
    font-weight: 900;
    color: var(--lukher-navy);
}

.timeline-date {
    color: var(--lukher-muted);
    font-size: .85rem;
}

/* =========================
   REVIEWS / TRUST BAR
========================= */

.review-card {
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(16, 36, 71, .1);
    border-radius: 14px;
    padding: 1.25rem;
    color: var(--lukher-text);
    box-shadow: 0 12px 35px rgba(16, 36, 71, .06);
}

.review-meta {
    font-size: .9rem;
    color: var(--lukher-muted);
}

.product-trust-bar {
    margin-top: 1.5rem;
    padding: 1.2rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(255, 246, 221, .92), rgba(255, 255, 255, .82));
    border-color: rgba(245, 166, 35, .32);
}

.trust-left {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.trust-left i {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(245, 166, 35, .18);
    color: #8a5a00;
    font-size: 1.35rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border-radius: 999px;
    padding: .55rem .85rem;
    background: white;
    border: 1px solid rgba(16, 36, 71, .08);
    color: var(--lukher-navy);
    font-size: .85rem;
    font-weight: 800;
}

/* =========================
   THANK YOU PAGE
========================= */

.thank-you-box {
    max-width: 960px;
    margin: 0 auto;
}

/* =========================
   FOOTER
========================= */

.store-footer {
    margin-top: 4rem;
    background: #0f172a !important;
    padding: 0 !important;
    color: rgba(255, 255, 255, .72);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.store-footer-inner {
    min-height: 120px;
    padding: 3rem 0 2rem;
    display: grid;
    grid-template-columns: minmax(320px, 1fr) auto auto;
    gap: 2rem;
    align-items: center;
}

.store-footer-brand strong {
    display: block;
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: .4rem;
}

.store-footer-brand p {
    margin: 0;
    color: rgba(255, 255, 255, .55) !important;
    max-width: 520px;
    line-height: 1.6;
}

.store-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
}

.store-footer-links a {
    color: rgba(255, 255, 255, .68) !important;
    font-size: .92rem;
}

.store-footer-links a:hover {
    color: #fff !important;
}

.store-footer-icons {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.store-footer-icons a {
    position: relative;
    overflow: hidden;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .82) !important;
    font-size: 1rem;
}

.store-footer-icons a::before {
    margin: 0;
}

.store-footer-icons a:hover {
    background: rgba(245, 166, 35, .18);
    border-color: rgba(245, 166, 35, .38);
    color: #fff !important;
}

.store-footer-bottom {
    padding: 1rem 0 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, .38);
    font-size: .8rem;
}

.store-footer-bottom a {
    color: rgba(255, 255, 255, .55) !important;
}

/* =========================
   RESPONSIVE
========================= */

@media screen and (min-width: 1400px) {
    .product-top-grid {
        grid-template-columns: minmax(0, 1.25fr) 440px;
    }

    .product-hero-content {
        grid-template-columns: minmax(460px, 1fr) minmax(440px, .9fr);
    }
}

@media screen and (max-width: 1100px) {
    :root {
        --page-gap: 2rem;
    }

    .home-hero-grid,
    .product-top-grid,
    .product-hero-content,
    .product-section-grid {
        grid-template-columns: 1fr;
    }

    .product-buy-panel {
        position: relative;
        top: 0;
        min-width: 0;
    }

    .feature-strip,
    .home-trust-strip,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .col-4,
    .col-6,
    .col-6-medium,
    .col-12-medium {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 900px) {
    #header.store-header {
        height: 70px;
    }

    .store-header-inner {
        height: 70px;
        width: min(100% - 1.5rem, 980px);
    }

    .store-logo,
    .store-logo a {
        height: 70px;
    }

    .store-logo-text {
        display: none;
    }

    .store-nav,
    .store-nav ul {
        height: 70px;
    }

    .store-nav ul {
        gap: .75rem;
    }

    .store-nav ul li:nth-child(2) {
        display: none;
    }

    .store-nav ul li a {
        font-size: .8rem;
    }

    .store-nav ul li a.store-contact-button {
        padding: 0 .9rem;
    }

    .home-hero {
        padding-top: 6.5rem;
    }

    .product-page-wrap {
        padding-top: 6.25rem;
    }

    .store-footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .store-footer-links,
    .store-footer-icons {
        justify-content: center;
    }

    .store-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 760px) {
    :root {
        --page-gap: 1.5rem;
    }

    .home-visual,
    .home-visual img {
        min-height: 300px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: auto;
    }
}

@media screen and (max-width: 640px) {
    .home-hero,
    .product-page-wrap {
        padding-top: 5.25rem;
    }

    .product-main-card,
    .product-buy-panel,
    .product-section-card,
    .product-card {
        padding: 1.1rem;
    }

    .product-mini-benefits,
    .feature-strip,
    .home-trust-strip,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .clean-list li,
    .timeline-item {
        grid-template-columns: 1fr;
    }

    .home-title,
    .product-title {
        font-size: 2.35rem;
    }
}

@media screen and (max-width: 520px) {
    .store-nav ul li:nth-child(3) {
        display: none;
    }
}