:root {
    --bg: #ffffff;
    --bg-soft: #f8f8f8;
    --bg-panel: #ffffff;
    --bg-panel-strong: #efeee3;
    --bg-card: #ffffff;
    --line: rgba(17, 17, 17, 0.08);
    --line-strong: rgba(30, 48, 96, 0.24);
    --text: #222222;
    --muted: #666666;
    --muted-strong: #444444;
    --blue: #1e3060;
    --blue-strong: #1e68c4;
    --silver: #444444;
    --steel: #1e3060;
    --glow: 0 18px 36px rgba(31, 37, 51, 0.08);
    --red: #b62438;
    --success: #6dd7a2;
    --container: 1240px;
    --pad: 28px;
    --radius: 24px;
    --transition: 0.28s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: #ffffff;
    min-height: 100vh;
}

body::before {
    display: none;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    border: 0;
    background: none;
    cursor: pointer;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.home-shell {
    width: min(var(--container), calc(100% - (var(--pad) * 2)));
    margin: 0 auto;
}

.site-content {
    position: relative;
}

.button-primary,
.button-secondary,
.product-card__button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.button-primary,
.product-card__button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    color: #fff;
    background: var(--blue);
    box-shadow: none;
}

.button-secondary {
    color: var(--blue);
    border: 1px solid var(--line-strong);
    background: #ffffff;
}

.button-primary:hover,
.button-secondary:hover,
.product-card__button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    transform: translateY(-2px);
    background: var(--red);
    border-color: var(--red);
    color: #ffffff;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.section-heading--with-actions {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.section-heading h2,
.page-hero__title,
.product-summary-card h1,
.contact-panel h2 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.section-heading p,
.page-hero__intro {
    margin: 0;
    max-width: 720px;
    color: var(--muted);
}

.home-section {
    padding: 72px 0;
}

.page-hero {
    padding: 42px 0 24px;
}

.page-hero__crumbs,
.woocommerce-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 13px;
}

.page-hero__crumbs span,
.woocommerce-breadcrumb span {
    color: var(--line-strong);
}

/* Age gate */
.age-gate-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(1, 5, 12, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
}

.age-gate-modal {
    width: min(520px, 100%);
    padding: 38px;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.age-gate-brand {
    margin-bottom: 20px;
}

.age-gate-brand img {
    width: min(100%, 300px);
}

.age-gate-modal h2 {
    margin: 0 0 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
}

.age-gate-text {
    margin: 0 0 20px;
    color: var(--muted);
}

.age-gate-form {
    display: grid;
    gap: 12px;
}

.age-gate-email,
.contact-form input,
.contact-form textarea,
.woocommerce .woocommerce-product-search input[type="search"],
.shop-results__ordering select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.age-gate-email:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.woocommerce .woocommerce-product-search input[type="search"]:focus,
.shop-results__ordering select:focus {
    outline: 0;
    border-color: var(--line-strong);
    box-shadow: 0 0 0 4px rgba(70, 149, 255, 0.12);
}

.age-gate-btn {
    min-height: 50px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), #1c5dff);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
}

.header-utility {
    border-bottom: 1px solid #eeeeee;
    background: #ffffff;
}

.header-utility__inner,
.header-main__inner {
    width: min(var(--container), calc(100% - (var(--pad) * 2)));
    margin: 0 auto;
}

.header-utility__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 44px;
}

.header-utility__features,
.header-utility__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    color: var(--muted);
    font-size: 12px;
}

.header-utility__features li,
.header-utility__contact li {
    position: relative;
}

.header-utility__features li:not(:last-child)::after,
.header-utility__contact li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(70, 149, 255, 0.5);
    transform: translateY(-50%);
}

.header-main {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.header-main__inner {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 22px;
    min-height: 88px;
}

.header-logo {
    width: 220px;
    justify-self: start;
}

.logo-link {
    position: relative;
    display: block;
    width: 220px;
    height: 48px;
    overflow: hidden;
}

.brand-lockup {
    display: inline-grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
}

.site-logo-image {
    display: block;
    width: auto;
    height: 220px;
    max-width: none;
    max-height: none;
    transform: translate(-58px, -86px);
}

.brand-lockup--compact {
    transform: scale(0.92);
    transform-origin: left center;
}

.brand-lockup__mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(70, 149, 255, 0.16));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), var(--glow);
    overflow: hidden;
}

.brand-lockup__mark::before {
    content: '';
    position: absolute;
    inset: -40% 20%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent 34%, rgba(70, 149, 255, 0.22));
    transform: rotate(16deg);
}

.brand-lockup__mark-top,
.brand-lockup__mark-bottom {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.08em;
}

.brand-lockup__mark-top {
    inset: 3px auto auto 12px;
    color: transparent;
    background: linear-gradient(180deg, #ffffff, #b3bcc8);
    background-clip: text;
    -webkit-background-clip: text;
}

.brand-lockup__mark-bottom {
    inset: 16px 8px auto auto;
    color: transparent;
    background: linear-gradient(180deg, #58a9ff, #165eff);
    background-clip: text;
    -webkit-background-clip: text;
}

.brand-lockup__copy {
    display: grid;
    gap: 2px;
}

.brand-lockup__name,
.brand-lockup__suffix {
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    letter-spacing: -0.05em;
}

.brand-lockup__name {
    font-size: clamp(20px, 2vw, 34px);
    font-weight: 800;
    color: transparent;
    background: linear-gradient(90deg, #edf2fb 0%, #c8cfd5 22%, #59a3ff 62%, #1f79ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 0 0 18px rgba(70, 149, 255, 0.24);
}

.brand-lockup__suffix {
    font-size: 13px;
    font-weight: 700;
    color: var(--silver);
    letter-spacing: 0.22em;
}

.brand-lockup__tag {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--muted);
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-link {
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    transition: color var(--transition);
}

.nav-link:hover,
.header-action-link:hover {
    color: var(--red);
}

.primary-nav__meta {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-action-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 12px;
    border: 0;
    border-radius: 10px;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    transition: border-color var(--transition), background var(--transition);
    background: transparent;
}

.header-action-link svg {
    flex: 0 0 auto;
}

.header-action-link--icon {
    width: 44px;
}

.header-action-label {
    font-size: 14px;
}

.header-action-link--cart {
    gap: 10px;
    padding-right: 44px;
}

.cart-count {
    position: absolute;
    right: 8px;
    top: 50%;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), #1c5dff);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    transform: translateY(-50%);
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: var(--text);
}

/* Hero */
.home-hero {
    padding: 54px 0 32px;
    background: #ffffff;
}

.home-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 38px;
    align-items: center;
}

.home-hero__copy h1 {
    margin: 0 0 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.home-hero__copy p {
    margin: 0 0 24px;
    max-width: 640px;
    color: var(--muted-strong);
    font-size: 18px;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.hero-points {
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.hero-points li {
    position: relative;
    padding-left: 24px;
}

.hero-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), #1c5dff);
    box-shadow: 0 0 12px rgba(70, 149, 255, 0.42);
}

.home-hero__visual {
    position: relative;
    padding: 20px;
    border-radius: 0;
    border: 0;
    background: transparent;
    overflow: hidden;
}

.home-hero__visual img {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    margin: 0 auto;
}

.hero-glow {
    display: none;
}

/* Split + cards */
.split-panel,
.page-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: center;
}

.split-panel__media img,
.page-split__media img {
    width: 100%;
    border-radius: 28px;
    border: 1px solid var(--line);
}

.split-panel__copy,
.page-split__copy,
.contact-panel,
.page-article__content,
.notice-panel,
.product-summary-card,
.product-details-panel,
.shop-sidebar,
.shop-results,
.domestic-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg-card);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.split-panel__copy,
.page-split__copy,
.contact-panel,
.page-article__content,
.notice-panel,
.product-summary-card,
.product-details-panel,
.shop-sidebar,
.shop-results,
.domestic-panel {
    padding: 28px;
}

.split-panel__copy h2,
.page-split__copy h2,
.domestic-copy h2 {
    margin: 0 0 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(30px, 3.7vw, 48px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.split-panel__copy p,
.page-split__copy p,
.domestic-copy p,
.feature-card p,
.trust-card p,
.notice-panel p {
    margin: 0 0 14px;
    color: var(--muted);
}

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

.feature-card,
.trust-card,
.contact-card,
.spec-item {
    border: 1px solid #eeeeee;
    border-radius: 16px;
    padding: 22px;
    background: #ffffff;
}

.feature-card h3,
.trust-card h3,
.contact-card strong,
.spec-item strong {
    margin: 0 0 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
}

.domestic-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: start;
}

.domestic-copy h2 span {
    color: var(--blue);
}

.domestic-bullets,
.page-checklist {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.domestic-bullets li,
.page-checklist li {
    position: relative;
    padding-left: 24px;
}

.domestic-bullets li::before,
.page-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), #1c5dff);
}

.domestic-banner {
    margin-top: 18px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--line);
}

.domestic-banner img {
    width: 100%;
    min-height: 240px;
    object-fit: cover;
}

.notice-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    background: #ffffff;
}

.notice-panel h2 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 3.2vw, 42px);
    letter-spacing: -0.05em;
}

/* Product cards and carousel */
.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--blue);
    background: #ffffff;
}

.carousel-btn:disabled {
    opacity: 0.32;
    cursor: not-allowed;
}

.carousel-wrapper {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.45s ease;
}

.carousel-slide {
    flex: 0 0 calc((100% - 48px) / 4);
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #eeeeee;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.product-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    padding: 24px;
    background: #fbfbfb;
}

.product-card__image img {
    width: 100%;
    max-height: 230px;
    object-fit: contain;
}

.product-card__body {
    display: grid;
    gap: 10px;
    padding: 22px;
}

.product-card__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f3f7ff;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-card__title {
    min-height: 68px;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
}

.product-card__specs {
    display: grid;
    gap: 4px;
    color: var(--muted-strong);
    font-size: 13px;
}

.product-card__specs span {
    display: block;
}

.product-card__price {
    display: grid;
    gap: 2px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
}

.product-card__price .amount {
    color: inherit;
}

.product-card__price span:last-child {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.product-card__button {
    width: 100%;
}

/* Shop */
.shop-shell {
    padding-bottom: 68px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 24px;
}

.shop-sidebar__section + .shop-sidebar__section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #eeeeee;
}

.shop-sidebar__section h2 {
    margin: 0 0 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
}

.woocommerce .woocommerce-product-search {
    display: grid;
    gap: 10px;
}

.woocommerce .woocommerce-product-search button {
    width: 100%;
    min-height: 46px;
    border-radius: 10px;
    background: var(--blue);
    color: #ffffff;
    border: 1px solid var(--line);
}

.shop-sidebar__links {
    display: grid;
    gap: 12px;
}

.shop-sidebar__links a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted-strong);
}

.shop-results__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

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

.shop-pagination {
    margin-top: 30px;
}

.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    gap: 10px;
    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li span,
.woocommerce nav.woocommerce-pagination ul li a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    border-color: var(--line-strong);
    background: linear-gradient(135deg, var(--blue), #1c5dff);
}

/* Product page */
.product-shell {
    padding-bottom: 72px;
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
    align-items: start;
}

.product-media__frame {
    padding: 36px;
    border-radius: 20px;
    border: 1px solid #eeeeee;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
}

.product-media__image {
    width: 100%;
    max-height: 560px;
    object-fit: contain;
}

.product-summary-card__status {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f3f7ff;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-summary-card__price {
    margin: 18px 0;
    font-size: 36px;
    font-weight: 700;
}

.product-summary-card__description {
    color: var(--muted-strong);
}

.product-highlights {
    display: grid;
    gap: 10px;
    margin: 24px 0;
}

.product-highlights li {
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
}

.product-summary-card__coa {
    margin-bottom: 20px;
}

.product-purchase {
    display: grid;
    grid-template-columns: 152px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.qty-wrapper {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
}

.qty-btn {
    height: 50px;
    color: var(--text);
    font-size: 20px;
}

.qty-input {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text);
    text-align: center;
}

.product-summary-card__button {
    width: 100%;
}

.product-meta-panel {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
}

.product-meta-panel > div {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.product-meta-panel strong {
    display: block;
    margin-bottom: 8px;
}

.product-meta-panel img {
    max-width: 260px;
}

.product-disclaimer {
    padding: 18px;
    border: 1px solid rgba(182, 36, 56, 0.28);
    border-radius: 18px;
    background: #fff7f8;
}

.product-disclaimer p {
    margin: 10px 0 0;
    color: var(--muted-strong);
}

.product-details-panel__copy {
    color: var(--muted-strong);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.spec-item span,
.contact-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* FAQ */
.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid #eeeeee;
    border-radius: 14px;
    background: #ffffff;
    overflow: hidden;
}

.faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 24px;
    color: var(--text);
    text-align: left;
    gap: 20px;
}

.faq-trigger span:first-child {
    font-weight: 600;
}

.faq-icon {
    transition: transform var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 24px 22px;
    color: var(--muted);
}

/* Content pages */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
}

.contact-panel p,
.page-article__content p {
    color: var(--muted-strong);
}

.contact-note {
    margin-top: 18px;
    color: var(--muted);
}

.contact-cta {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #eeeeee;
}

.contact-cta h3 {
    margin: 0 0 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
}

.contact-form {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form label span {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-strong);
}

.form-status {
    padding: 14px 16px;
    border-radius: 16px;
    margin-top: 14px;
    font-size: 14px;
}

.form-status--success {
    background: rgba(109, 215, 162, 0.12);
    border: 1px solid rgba(109, 215, 162, 0.26);
    color: var(--success);
}

.form-status--error {
    background: rgba(182, 36, 56, 0.12);
    border: 1px solid rgba(182, 36, 56, 0.26);
    color: #ff9eab;
}

.page-article__content h2,
.page-article__content h3 {
    font-family: 'Montserrat', sans-serif;
    margin-top: 28px;
}

.page-article__content ul,
.page-article__content ol {
    list-style: initial;
    padding-left: 20px;
    color: var(--muted-strong);
}

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

.process-card {
    padding: 28px;
    border: 1px solid #eeeeee;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.process-card__count {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: var(--blue);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.process-card h3 {
    margin: 0 0 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
}

.process-card p {
    margin: 0;
    color: var(--muted);
}

.process-cta {
    margin-top: 26px;
    text-align: center;
}

/* Footer */
.site-footer {
    margin-top: 60px;
    padding: 0 0 26px;
    border-top: 1px solid #111111;
    background: #111111;
}

.site-footer__inner,
.site-footer__legal {
    width: min(var(--container), calc(100% - (var(--pad) * 2)));
    margin: 0 auto;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr);
    gap: 28px;
    padding: 40px 0 28px;
}

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

.footer-column h3 {
    margin: 0 0 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.footer-column ul {
    display: grid;
    gap: 10px;
}

.footer-column a,
.footer-column p,
.site-footer__brand p {
    color: #999999;
}

.footer-column a::before {
    content: "\2192";
    margin-right: 8px;
    color: #ffffff;
}

.footer-contact-panel {
    margin-top: 20px;
    padding: 18px;
    border-radius: 18px;
    border: 0;
    background: linear-gradient(135deg, #1e3060 0%, #1e3060 100%);
}

.footer-contact-panel__label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-footer__legal {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #999999;
    font-size: 13px;
}

.site-footer__legal-meta {
    display: grid;
    gap: 12px;
    justify-items: end;
}

.footer-logo-image {
    width: 175px;
    height: auto;
}

.site-footer__payments {
    width: min(220px, 100%);
    height: auto;
}

.site-footer__legal p {
    margin: 0;
    max-width: 720px;
}

.no-products {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 22px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.03);
}

/* Frontend helper states */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.site-header.scrolled .header-main {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}

/* Responsive */
@media (max-width: 1180px) {
    .feature-grid,
    .trust-grid,
    .process-grid,
    .site-footer__links,
    .shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .carousel-slide {
        flex-basis: calc((100% - 16px) / 2);
    }

    .notice-panel,
    .split-panel,
    .page-split,
    .domestic-grid,
    .contact-layout,
    .product-layout,
    .shop-layout,
    .home-hero__grid,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .header-main__inner {
        grid-template-columns: 1fr auto auto;
    }

    .header-logo {
        width: 190px;
    }

    .logo-link {
        width: 190px;
        height: 42px;
    }

    .site-logo-image {
        height: 190px;
        transform: translate(-50px, -74px);
    }

    .primary-nav {
        position: absolute;
        left: var(--pad);
        right: var(--pad);
        top: calc(100% + 12px);
        display: none;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: #ffffff;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    }

    .primary-nav.active {
        display: grid;
        justify-content: stretch;
    }

    .nav-list {
        flex-direction: column;
        align-items: start;
    }

    .primary-nav__meta {
        display: grid;
        gap: 8px;
        margin-top: 14px;
        color: var(--muted);
        font-size: 13px;
    }

    .mobile-menu-toggle {
        display: inline-block;
    }
}

@media (max-width: 760px) {
    :root {
        --pad: 18px;
        --radius: 20px;
    }

    .header-utility {
        display: none;
    }

    .header-main__inner {
        grid-template-columns: 1fr auto auto;
        min-height: 74px;
    }

    .header-logo {
        width: 176px;
    }

    .logo-link {
        width: 176px;
        height: 36px;
    }

    .site-logo-image {
        height: 165px;
        transform: translate(-43px, -64px);
    }

    .header-actions {
        display: none;
    }

    .section-heading--with-actions {
        align-items: start;
    }

    .section-heading--with-actions,
    .shop-results__toolbar,
    .site-footer__legal {
        flex-direction: column;
        align-items: start;
    }

    .site-footer__legal-meta {
        justify-items: start;
    }

    .feature-grid,
    .trust-grid,
    .process-grid,
    .site-footer__links,
    .shop-grid,
    .spec-grid {
        grid-template-columns: 1fr;
    }

    .carousel-slide {
        flex-basis: 100%;
    }

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

    .product-card__image {
        min-height: 240px;
    }

    .age-gate-modal,
    .split-panel__copy,
    .page-split__copy,
    .contact-panel,
    .page-article__content,
    .notice-panel,
    .product-summary-card,
    .product-details-panel,
    .shop-sidebar,
    .shop-results,
    .domestic-panel {
        padding: 22px;
    }
}
