/* ══════════════════════════════════════════════════════════
   Alfalab Landing Builder — Frontend Styles
══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

body.alb-landing {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, 'Segoe UI', sans-serif;
    color: #1d2327;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

/* ── Container ─────────────────────────────────────────── */
.alb-container {
    max-width: 820px;
    margin: 0 auto;
}
.alb-container-wide {
    /* max-width: 1100px; */
    margin: 0 auto;
}

/* ── Section titles ────────────────────────────────────── */
.alb-section-title {
    font-size: clamp( 22px, 4vw, 32px );
    font-weight: 700;
    text-align: center;
    margin: 0 0 32px;
    line-height: 1.2;
}

/* ── Buttons ───────────────────────────────────────────── */
.alb-btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.15s, opacity 0.15s;
    line-height: 1;
}
.alb-btn:hover    { transform: translateY( -2px ); opacity: 0.92; }
.alb-btn:active   { transform: translateY( 0 ); }
.alb-btn-cta      { color: #fff; }

/* ══════════════════════════════════════════════════════════
   ROWS & COLUMNS
══════════════════════════════════════════════════════════ */
.alb-layoutgrid { padding: 56px 0; }
.alb-layoutgrid-row {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}
.alb-layoutgrid-row:last-child { margin-bottom: 0; }
.alb-layoutgrid-cols-1 { grid-template-columns: 1fr; }
.alb-layoutgrid-cols-2 { grid-template-columns: repeat( 2, minmax(0, 1fr) ); }
.alb-layoutgrid-cols-3 { grid-template-columns: repeat( 3, minmax(0, 1fr) ); }
.alb-layoutgrid-cols-4 { grid-template-columns: repeat( 4, minmax(0, 1fr) ); }
.alb-layoutgrid-col {
    min-height: 20px;
}
.alb-layoutgrid-col > section { margin: 0; }
.alb-layoutgrid-col > section + section { margin-top: 14px; }
.alb-layoutgrid-col .alb-container,
.alb-layoutgrid-col .alb-container-wide {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.alb-layoutgrid-col .alb-hero.alb-has-split {
    width: 100%;
}
.alb-layoutgrid-col .alb-hero.alb-has-split .alb-hero-inner {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.alb-layoutgrid-col .alb-section-title {
    text-align: left;
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.alb-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}
.alb-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba( 0, 0, 0, 0.35 );
}
.alb-hero .alb-container,
.alb-hero .alb-hero-inner { position: relative; z-index: 1; }
.alb-hero.alb-layout-centered { text-align: center; }
.alb-hero-heading {
    margin-bottom: 20px;
}
.alb-hero-overline {
    font-size: clamp( 14px, 2vw, 18px );
    font-weight: 400;
    margin: 0 0 6px;
    line-height: 1.3;
    opacity: 0.95;
}
.alb-hero h1.alb-hero-title {
    font-size: clamp( 32px, 6vw, 64px );
    font-weight: 800;
    margin: 0;
    line-height: 1.05;
    letter-spacing: -0.02em;
}
.alb-hero p.alb-hero-subheadline {
    font-size: clamp( 18px, 3vw, 28px );
    font-weight: 700;
    margin: 4px 0 0;
    line-height: 1.2;
    opacity: 1;
}
.alb-hero-body {
    font-size: clamp( 14px, 1.8vw, 16px );
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 520px;
    opacity: 0.92;
}
.alb-hero-body p {
    margin: 0 0 0.75em;
}
.alb-hero-body p:last-child {
    margin-bottom: 0;
}
.alb-hero.alb-layout-centered .alb-hero-heading,
.alb-hero.alb-layout-centered .alb-hero-body {
    margin-left: auto;
    margin-right: auto;
}

/* Split layout — flex row; DOM order sets image left/right (see hero.php) */
.alb-hero.alb-has-split .alb-hero-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}
.alb-hero.alb-has-split .alb-hero-text,
.alb-hero.alb-has-split .alb-hero-image {
    min-width: 0;
}
.alb-hero.alb-has-split .alb-hero-image {
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 1;
}
.alb-hero.alb-has-split .alb-hero-image img { width: 100%; display: block; }

/* ══════════════════════════════════════════════════════════
   ESSENTIAL CARDS
══════════════════════════════════════════════════════════ */
.alb-essentialcards {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: var(--alb-ec-margin-top, 0) auto var(--alb-ec-margin-bottom, 0);
    border-radius: var(--alb-ec-radius, 28px);
    overflow: visible;
    min-height: var(--alb-ec-min-h, 520px);
    padding: var(--alb-ec-padding, 48px 28px 28px 28px);
    color: var(--alb-ec-title-color, #fff);
}
.alb-essentialcards-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}
.alb-essentialcards-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, var(--alb-ec-overlay, 0.25));
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
}
.alb-essentialcards-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    min-height: 100%;
}
.alb-essentialcards-title {
    margin: 0;
    /*max-width: 16ch;*/
    font-size: var(--alb-ec-title-size, 42px) !important;
    font-weight: 500 !important;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--alb-ec-title-color, #fff);
    text-align: var(--alb-ec-title-align, left);
}
.alb-essentialcards-bar {
    margin-top: auto;
    width: 100%;
}
.alb-essentialcards-has-glass .alb-essentialcards-bar {
    background: var(--alb-ec-glass-bg, rgba(255, 255, 255, 0.12));
    backdrop-filter: blur(var(--alb-ec-glass-blur, 18px));
    -webkit-backdrop-filter: blur(var(--alb-ec-glass-blur, 18px));
    border-radius: var(--alb-ec-glass-radius, 20px);
    padding: var(--alb-ec-glass-padding, 28px);
}
.alb-essentialcards-has-glass .alb-essentialcards-card {
    position: relative;
    background: var(--alb-ec-glass-bg, rgba(255, 255, 255, 0.12)) !important;
    backdrop-filter: blur(var(--alb-ec-glass-blur, 18px));
    -webkit-backdrop-filter: blur(var(--alb-ec-glass-blur, 18px));
    border-radius: var(--alb-ec-mobile-card-radius, 22px);
    padding: 18px;
    box-sizing: border-box;
}
.alb-essentialcards-has-glass .alb-essentialcards-slide-glass {
    background: var(--alb-ec-glass-bg, rgba(255, 255, 255, 0.12));
    backdrop-filter: blur(var(--alb-ec-glass-blur, 18px));
    -webkit-backdrop-filter: blur(var(--alb-ec-glass-blur, 18px));
}
.alb-essentialcards-has-glass .alb-essentialcards-slide-media,
.alb-essentialcards-has-glass .alb-essentialcards-slide-body {
    background: transparent !important;
}
.alb-essentialcards-slide-inner:not(.alb-essentialcards-slide-glass) {
    background: var(--alb-ec-mobile-card-bg, #ebe4f7);
    height: 100%;
}
.alb-essentialcards-desktop {
    display: block;
}
.alb-essentialcards-grid {
    display: grid;
    grid-template-columns: repeat(var(--alb-ec-cols, 4), minmax(0, 1fr));
    gap: var(--alb-ec-cards-gap, 24px);
}
.alb-essentialcards-card,
.alb-essentialcards-slide {
    min-width: 0;
}
.alb-essentialcards-icon-wrap {
    display: block;
    width: var(--alb-ec-card-icon-w, 40px);
    height: var(--alb-ec-card-icon-h, 40px);
    margin-bottom: 14px;
    flex-shrink: 0;
}
.alb-essentialcards-icon-wrap .alb-essentialcards-icon {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: var(--alb-ec-card-icon-fit, contain);
    object-position: left center;
}
.alb-essentialcards-card-title {
    margin: 0 0 8px;
    font-size: var(--alb-ec-card-title-size, 18px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--alb-ec-card-title-color, #fff);
}
.alb-essentialcards-card-desc {
    margin: 0;
    font-size: var(--alb-ec-card-desc-size, 14px);
    line-height: 1.45;
    color: var(--alb-ec-card-desc-color, rgba(255, 255, 255, 0.88));
}
/* Full-width track; "Mobile card width (%)" → --alb-ec-slide-width on .alb-essentialcards-slide (like Media Gallery) */
.alb-essentialcards-mobile {
    display: none;
    width: 100%;
    max-width: 100%;
}
/* Mobile track — same scroll pattern as Media Gallery */
.alb-essentialcards-track {
    display: flex;
    gap: var(--alb-ec-track-gap, 8px);
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    padding-bottom: 2px;
    scrollbar-width: none;
}
.alb-essentialcards-track-end {
    flex: 0 0 var(--alb-ec-end-spacer, calc(100% - var(--alb-ec-slide-width, 88%)));
    width: var(--alb-ec-end-spacer, calc(100% - var(--alb-ec-slide-width, 88%)));
    height: 1px;
    pointer-events: none;
}
.alb-essentialcards-track::-webkit-scrollbar {
    display: none;
}
.alb-essentialcards-slide {
    flex: 0 0 var(--alb-ec-slide-width, 88%);
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-sizing: border-box;
    border-radius: var(--alb-ec-mobile-card-radius, 22px);
    overflow: hidden;
    border: var(--alb-ec-mobile-card-border, 0 solid transparent);
    min-height: var(--alb-ec-mobile-card-min-h, 260px);
    height: var(--alb-ec-mobile-card-height, auto);
}
.alb-essentialcards-slide-inner {
    height: 100%;
    min-height: inherit;
    border-radius: inherit;
    overflow: hidden;
    box-sizing: border-box;
}
.alb-essentialcards-slide-media {
    border-radius: inherit;
    overflow: hidden;
    line-height: 0;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.alb-essentialcards-slide-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
.alb-essentialcards-slide-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}
.alb-essentialcards-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 0;
    width: 100%;
}
.alb-essentialcards-dot {
    width: 28px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.2s ease, width 0.2s ease;
}
.alb-essentialcards-dot.is-active {
    width: 36px;
    background: #fff;
}

/* ══════════════════════════════════════════════════════════
   ADVANCED HERO
══════════════════════════════════════════════════════════ */
.alb-advancedhero {
    padding: var(--alb-ah-padding, 24px 16px);
    margin: var(--alb-ah-margin-top, 0) var(--alb-ah-margin-right, 0) var(--alb-ah-margin-bottom, 0) var(--alb-ah-margin-left, 0);
    box-sizing: border-box;
}
.alb-advancedhero-grid {
    display: grid;
    grid-template-columns: minmax(0, var(--alb-ah-visual, 34%)) minmax(0, 1fr);
    gap: var(--alb-ah-gap, 12px);
    align-items: stretch;
}
.alb-advancedhero-visual {
    background-color: var(--alb-ah-visual-bg, #ebe4f7);
    border-radius: var(--alb-ah-radius, 24px);
    min-height: var(--alb-ah-visual-min-h, 320px);
    padding: var(--alb-ah-visual-pad, 28px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
}
.alb-advancedhero-visual--product-cover {
    padding: 0;
    background-size: var(--alb-ah-product-fit, cover);
    background-position: center;
}
.alb-advancedhero-product-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: var(--alb-ah-product-fit, contain);
    display: block;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.12));
}
.alb-advancedhero-panel {
    position: relative;
    background: var(--alb-ah-panel-bg, #fff);
    border-radius: var(--alb-ah-radius, 24px);
    padding: var(--alb-ah-panel-pad, 32px);
    min-width: 0;
    overflow: hidden;
}
.alb-advancedhero-panel--bg-image .alb-advancedhero-panel-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: var(--alb-ah-panel-bg, #fff);
    background-repeat: no-repeat;
    background-position: var(--alb-ah-panel-img-pos, right center);
    background-size: var(--alb-ah-panel-img-fit, cover);
    pointer-events: none;
}
.alb-advancedhero-panel--bg-image .alb-advancedhero-panel-inner {
    position: relative;
    z-index: 1;
}
.alb-advancedhero-panel--bg-image .alb-advancedhero-copy {
    max-width: var(--alb-ah-panel-copy-max, 58%);
}
.alb-advancedhero-panel-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, var(--alb-ah-panel-media, 40%));
    gap: 20px;
    align-items: start;
    min-height: 100%;
}
.alb-advancedhero-panel-inner.alb-advancedhero-panel-inner--copy-only {
    grid-template-columns: minmax(0, 1fr);
}
.alb-advancedhero-headline {
    margin: 0 0 14px;
    font-size: var(--alb-ah-headline-size, 28px);
    line-height: 1.25;
    font-weight: 700;
    color: var(--alb-ah-headline-color, #1d2327);
}
.alb-advancedhero-intro {
    margin: 0 0 22px;
    font-size: var(--alb-ah-intro-size, 15px);
    line-height: 1.55;
    color: var(--alb-ah-intro-color, #4a4f57);
}
.alb-advancedhero-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.alb-advancedhero-feature-title {
    margin: 0 0 6px;
    font-size: var(--alb-ah-feature-title-size, 16px);
    line-height: 1.3;
    font-weight: 700;
    color: var(--alb-ah-feature-title-color, #1d2327);
}
.alb-advancedhero-feature-desc {
    margin: 0;
    font-size: var(--alb-ah-feature-desc-size, 14px);
    line-height: 1.5;
    color: var(--alb-ah-feature-desc-color, #5c6370);
}
.alb-advancedhero-side-media {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 100%;
}
.alb-advancedhero-side-media img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: bottom right;
}

/* ══════════════════════════════════════════════════════════
   STORY
══════════════════════════════════════════════════════════ */
.alb-story { padding: 64px 0; }
.alb-story-inner {
    display: flex;
    gap: 48px;
    align-items: center;
}
.alb-story.alb-image-right .alb-story-inner { flex-direction: row-reverse; }
.alb-story-text { flex: 1; }
.alb-story-image { flex: 0 0 42%; }
.alb-story-image img { width: 100%; border-radius: 8px; display: block; }
.alb-story h2 { font-size: clamp( 20px, 3vw, 28px ); margin: 0 0 18px; font-weight: 700; }
.alb-story p.alb-story-body {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin: 0;
    white-space: pre-wrap;
}

/* ══════════════════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════════════════ */
.alb-reviews {
    position: relative;
    margin: var(--alb-rev-margin-top, 0) 0 var(--alb-rev-margin-bottom, 0);
    padding: var(--alb-rev-padding, 40px 28px);
    border-radius: var(--alb-rev-radius, 28px);
    overflow: hidden;
    box-sizing: border-box;
}

.alb-reviews-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.alb-reviews-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: rgba(0, 0, 0, var(--alb-rev-overlay, 0));
    pointer-events: none;
}

.alb-reviews-inner {
    position: relative;
    z-index: 1;
}

body.alb-landing .alb-reviews-title {
    margin: 0 0 28px;
    font-size: var(--alb-rev-title-size, 32px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--alb-rev-title-color, #ffffff);
    text-align: var(--alb-rev-title-align, center);
}

.alb-reviews-slider {
    margin-top: 0;
}

.alb-reviews-track {
    display: flex;
    gap: var(--alb-rev-slides-gap, 16px);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.alb-reviews-track::-webkit-scrollbar {
    display: none;
}

.alb-reviews-slide {
    flex: 0 0 var(--alb-rev-slide-width, 88%);
    min-width: 0;
    scroll-snap-align: start;
}

.alb-review-card {
    display: flex;
    flex-direction: column;
    background: var(--alb-rev-glass-bg, rgba(255, 255, 255, 0.22));
    border: var(--alb-rev-card-border, 1px solid rgba(255, 255, 255, 0.35));
    border-radius: var(--alb-rev-card-radius, 20px);
    padding: var(--alb-rev-card-padding, 24px);
    height: 100%;
    box-sizing: border-box;
}

.alb-reviews-has-glass .alb-review-card {
    backdrop-filter: blur(var(--alb-rev-glass-blur, 16px));
    -webkit-backdrop-filter: blur(var(--alb-rev-glass-blur, 16px));
}

.alb-review-stars {
    color: var(--alb-rev-stars-color, #fbbf24);
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.alb-review-text {
    font-size: var(--alb-rev-text-size, 15px);
    line-height: 1.7;
    color: var(--alb-rev-text-color, #ffffff);
    margin: 0 0 18px;
}

.alb-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.alb-review-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 40px;
}

.alb-review-name {
    font-size: var(--alb-rev-name-size, 14px);
    font-weight: 600;
    color: var(--alb-rev-name-color, #ffffff);
}

.alb-reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.alb-reviews-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--alb-rev-dot-color, rgba(255, 255, 255, 0.45));
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
}

.alb-reviews-dot.is-active {
    background: var(--alb-rev-dot-active, #ffffff);
    transform: scale(1.15);
}

@media (min-width: 768px) {
    .alb-reviews-slide {
        flex-basis: var(--alb-rev-slide-width-desktop, 42%);
    }
}

@media (max-width: 640px) {
    body.alb-landing .alb-reviews-title {
        margin-bottom: 20px;
    }
}

/* ══════════════════════════════════════════════════════════
   VIDEO
══════════════════════════════════════════════════════════ */
.alb-video-module {
    padding: var(--alb-vid-padding, 40px 16px);
    margin: var(--alb-vid-margin-top, 0) 0 var(--alb-vid-margin-bottom, 0);
    box-sizing: border-box;
}

body.alb-landing .alb-video-title {
    margin: 0 0 24px;
    font-size: var(--alb-vid-title-size, 32px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--alb-vid-title-color, #1d2327);
    text-align: var(--alb-vid-title-align, center);
}

.alb-video-frame {
    position: relative;
    border-radius: var(--alb-vid-radius, 24px);
    overflow: hidden;
    aspect-ratio: var(--alb-vid-aspect, 16 / 9);
    background: #101114;
}

.alb-video-facade {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.alb-video-facade.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.alb-video-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.alb-video-facade-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, var(--alb-vid-poster-overlay, 0.15));
    pointer-events: none;
}

.alb-video-play-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--alb-vid-play-size, 72px);
    height: var(--alb-vid-play-size, 72px);
    padding: 0;
    border: 2px solid var(--alb-vid-play-ring, rgba(255, 255, 255, 0.85));
    border-radius: 50%;
    background: transparent;
    pointer-events: none;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.alb-video-facade:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.alb-video-play-btn:hover {
    transform: scale(1.05);
}

.alb-video-play-icon {
    display: block;
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 18px solid var(--alb-vid-play-color, #ffffff);
}

.alb-video-embed {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.alb-video-player.is-playing .alb-video-embed {
    z-index: 3;
}

.alb-video-embed video,
.alb-video-embed iframe,
.alb-video-html5,
.alb-video-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    object-fit: cover;
    background: #000;
}

.alb-video-player--bare.is-playing .alb-video-embed,
.alb-video-player.is-playing .alb-video-embed {
    z-index: 3;
}

/* ══════════════════════════════════════════════════════════
   INGREDIENTS
══════════════════════════════════════════════════════════ */
.alb-ingredients { padding: 64px 0; }
.alb-ingredients-grid {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax( 160px, 1fr ) );
    gap: 24px;
    margin-top: 8px;
}
.alb-ingredient-card { text-align: center; }
.alb-ingredient-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
    display: block;
    background: #f0f0f1;
}
.alb-ingredient-name { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.alb-ingredient-desc { font-size: 14px; color: #555; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.alb-faq {
    padding: var(--alb-faq-padding, 64px 0);
}
.alb-faq-header {
    margin-bottom: 32px;
}

.alb-faq .alb-section-title {
    font-size: var(--alb-faq-title-size, 32px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--alb-faq-title-color, #1d2327);
    text-align: var(--alb-faq-title-align, center);
    margin: 0;
}

.alb-faq .alb-section-title.has-subtitle {
    margin-bottom: 10px;
}

body.alb-landing .alb-faq-subtitle {
    margin: 0;
    font-size: var(--alb-faq-subtitle-size, 17px);
    line-height: 1.55;
    font-weight: 400;
    color: var(--alb-faq-subtitle-color, #5c6370);
    text-align: var(--alb-faq-title-align, center);
}
.alb-faq-list { margin-top: 8px; }
.alb-faq-item {
    border-bottom: 1px solid var(--alb-faq-divider, var(--alb-faq-item-border, #e5e7eb));
}
.alb-faq-border-before-first .alb-faq-item:first-child {
    border-top: 1px solid var(--alb-faq-divider, var(--alb-faq-item-border, #e5e7eb));
}
.alb-faq-item:last-child { border-bottom: 0; }
.alb-faq-border-after-last .alb-faq-item:last-child {
    border-bottom: 1px solid var(--alb-faq-divider, var(--alb-faq-item-border, #e5e7eb));
}
.alb-faq-question {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--alb-faq-q-size, 17px);
    font-weight: 500;
    color: var(--alb-faq-q-color, #2d2f34);
    user-select: none;
    gap: 16px;
}
.alb-faq-question::after {
    content: '+';
    font-size: var(--alb-faq-toggle-size, 26px);
    line-height: 1;
    color: var(--alb-faq-toggle-color, #9ca3af);
    flex-shrink: 0;
    transition: transform 0.2s;
}
.alb-faq-item.open .alb-faq-question::after { transform: rotate( 45deg ); }
.alb-faq-answer {
    display: none;
    padding: 0 0 20px;
    font-size: var(--alb-faq-a-size, 16px);
    color: var(--alb-faq-a-color, #555);
    line-height: 1.8;
}
.alb-faq-item.open .alb-faq-answer { display: block; }
.alb-faq-answer ul,
.alb-faq-answer ol {
    margin: 0.4em 0 0.8em;
    padding-left: 1.35em;
}
.alb-faq-answer ul { list-style-type: var(--alb-faq-list-style, disc); }
.alb-faq-answer ol { list-style-type: decimal; }
.alb-faq-answer li { margin: 0.25em 0; }
.alb-faq-answer ul li::marker,
.alb-faq-answer ol li::marker {
    color: var(--alb-faq-list-marker, var(--alb-faq-a-color, #555));
}
.alb-faq-answer p { margin: 0 0 0.6em; }
.alb-faq-answer p:last-child { margin-bottom: 0; }

/* FAQ + optional side image */
.alb-faq-split {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.alb-faq-media,
.alb-faq-main {
    min-width: 0;
}

.alb-faq-media {
    border-radius: var(--alb-faq-image-radius, 24px);
    overflow: hidden;
    background: #f1f3f5;
}

.alb-faq-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: var(--alb-faq-image-aspect-mobile, 1 / 1);
}

@media ( min-width: 992px ) {
    .alb-faq-has-image .alb-faq-media img {
        aspect-ratio: var(--alb-faq-image-aspect, 1 / 1);
    }
}

.alb-faq-has-image .alb-faq-main .alb-faq-header {
    margin-bottom: 12px;
}

@media ( min-width: 992px ) {
    .alb-faq-has-image .alb-faq-split {
        display: grid;
        grid-template-columns: minmax(0, var(--alb-faq-image-col, 48%)) minmax(0, var(--alb-faq-content-col, 52%));
        gap: var(--alb-faq-split-gap, 32px);
        align-items: start;
    }

    .alb-product-showcase-info .alb-faq-has-image .alb-faq-split {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

/* ══════════════════════════════════════════════════════════
   WHERE TO BUY
══════════════════════════════════════════════════════════ */
.alb-wheretobuy { padding: 64px 0; background: #f8f9fa; }
.alb-location-grid {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax( 240px, 1fr ) );
    gap: 16px;
    margin-top: 8px;
}
.alb-location-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e5e7eb;
}
.alb-location-name    { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.alb-location-address { font-size: 14px; color: #666; margin-bottom: 12px; }
.alb-location-link    { font-size: 14px; color: #2271b1; text-decoration: none; font-weight: 500; }
.alb-location-link:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════════
   ADD TO CART
══════════════════════════════════════════════════════════ */
.alb-addtocart { padding: 64px 0; text-align: center; }
.alb-addtocart .alb-product-price {
    font-size: clamp( 28px, 5vw, 42px );
    font-weight: 800;
    margin-bottom: 10px;
}
.alb-addtocart .alb-urgency {
    font-size: 15px;
    color: #e63946;
    font-weight: 600;
    margin-bottom: 24px;
}
.alb-addtocart form { display: inline-block; }
.alb-addtocart .alb-btn {
    font-size: clamp( 17px, 3vw, 22px );
    padding: 18px 60px;
    letter-spacing: 0.3px;
}

/* ══════════════════════════════════════════════════════════
   COUNTDOWN
══════════════════════════════════════════════════════════ */
.alb-countdown {
    padding: 44px 0;
    text-align: center;
    background: #1d2327;
    color: #fff;
}
.alb-countdown h3 { font-size: 18px; margin: 0 0 24px; opacity: 0.85; }
.alb-countdown-timer { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.alb-countdown-block { min-width: 60px; }
.alb-countdown-number {
    font-size: clamp( 36px, 7vw, 56px );
    font-weight: 800;
    line-height: 1;
    display: block;
}
.alb-countdown-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-top: 4px;
    display: block;
}

/* ══════════════════════════════════════════════════════════
   BENEFITS
══════════════════════════════════════════════════════════ */
.alb-benefits { padding: 64px 0; }
.alb-benefits-list {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax( 240px, 1fr ) );
    gap: 20px;
    margin-top: 8px;
}
.alb-benefit-item { display: flex; align-items: flex-start; gap: 14px; }
.alb-benefit-icon { font-size: 26px; flex-shrink: 0; line-height: 1.4; }
.alb-benefit-text { font-size: 16px; line-height: 1.6; color: #333; }

/* ══════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════════════════════════ */
.alb-announcement {
    position: relative;
    z-index: 30;
}
.alb-announcement-inner {
    text-align: center;
    font-weight: 500;
    line-height: 1.3;
}
.alb-announcement-link {
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.alb-announcement-link:hover {
    border-bottom-color: currentColor;
}

/* ══════════════════════════════════════════════════════════
   FLOATING HEADER (GLASS / STICKY)
══════════════════════════════════════════════════════════ */
.alb-floating-header {
    position: relative;
    z-index: 60;
    color: var(--alb-fh-color, #fff);
    padding-bottom: 0;
}
.alb-floating-header.is-sticky-enabled {
    position: sticky;
    top: var(--alb-fh-top, 10px);
}
.alb-floating-header-inner {
    width: min( calc(100% - 24px), var(--alb-fh-maxw, 1100px) );
    margin: 0 auto;
    min-height: 62px;
    border-radius: 18px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease, transform .25s ease;
}
.alb-floating-header.is-glass-enabled .alb-floating-header-inner {
    border-color: var(--alb-fh-border, rgba(255,255,255,.22));
    backdrop-filter: blur(var(--alb-fh-blur, 14px));
    -webkit-backdrop-filter: blur(var(--alb-fh-blur, 14px));
}
body.alb-landing.alb-scrolled .alb-floating-header.is-glass-enabled .alb-floating-header-inner {
    box-shadow: 0 8px 26px rgba(0,0,0,0.23);
}
.alb-floating-logo {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: clamp(20px, 2.3vw, 30px);
    font-weight: 600;
    line-height: 1;
    color: var(--alb-fh-color, #fff);
    background: rgba(255,255,255,0.12);
    margin-right: auto;
}
.alb-floating-logo-image {
    display: block;
    max-height: clamp(26px, 3.2vw, 44px);
    width: auto;
    max-width: min(42vw, 240px);
    object-fit: contain;
}
.alb-floating-logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    background: currentColor;
    opacity: 0.95;
}
.alb-floating-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--alb-fh-btn-bg, rgba(40, 61, 36, 0.9));
    color: var(--alb-fh-btn-color, #fff);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 10px 20px;
    min-height: 44px;
    font-size: clamp(16px, 1.7vw, 24px);
    font-weight: 600;
}
.alb-floating-menu-btn {
    border: 0;
    border-radius: 12px;
    padding: 8px 12px;
    min-height: 44px;
    min-width: 44px;
    cursor: pointer;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1;
    color: var(--alb-fh-color, #fff);
    background: rgba(255,255,255,0.12);
}
.alb-floating-menu-panel {
    position: absolute;
    left: 50%;
    top: calc(100% + 8px);
    transform: translateX(-50%);
    width: min( calc(100% - 24px), var(--alb-fh-maxw, 1100px) );
    border-radius: 16px;
    padding: 10px;
    border: 1px solid var(--alb-fh-border, rgba(255,255,255,.22));
    background: var(--alb-fh-shell, rgba(20,33,23,.35));
    backdrop-filter: blur(var(--alb-fh-blur, 14px));
    -webkit-backdrop-filter: blur(var(--alb-fh-blur, 14px));
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.alb-floating-menu-link {
    display: block;
    color: var(--alb-fh-color, #fff);
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: clamp(14px, 1.8vw, 18px);
    line-height: 1.2;
}
.alb-floating-menu-link:hover {
    background: rgba(255,255,255,0.14);
}

/* ══════════════════════════════════════════════════════════
   PRODUCT SHOWCASE (Media Gallery + Product Card split)
══════════════════════════════════════════════════════════ */
.alb-product-showcase {
    width: 100%;
}
.alb-product-showcase-inner {
    display: block;
}
.alb-product-showcase-media .alb-container-wide,
.alb-product-showcase-info .alb-container {
    max-width: none;
    margin: 0;
    width: 100%;
}
.alb-product-showcase-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}
.alb-product-showcase-info .alb-faq .alb-section-title,
.alb-product-showcase-info .alb-faq-subtitle {
    text-align: left;
}
@media ( min-width: 992px ) {
    .alb-product-showcase-inner {
        display: grid;
        grid-template-columns: minmax( 0, var( --alb-showcase-media, 55% ) ) minmax( 0, var( --alb-showcase-info, 45% ) );
        gap: var( --alb-showcase-gap, 32px );
        align-items: start;
    }
    .alb-product-showcase .alb-mediagallery-desktop {
        display: block;
    }
    .alb-product-showcase .alb-mediagallery-mobile {
        display: none;
    }
    .alb-product-showcase-info .alb-productcard {
        padding-left: 0;
        padding-right: 0;
    }
    .alb-product-showcase-has-faq .alb-product-showcase-info .alb-faq {
        padding-top: 24px;
    }
}

/* ══════════════════════════════════════════════════════════
   MEDIA GALLERY
══════════════════════════════════════════════════════════ */
.alb-mediagallery {
    padding-top: var(--alb-mg-pt, 18px);
    padding-bottom: var(--alb-mg-pb, 18px);
    --alb-mg-aspect: 1 / 1;
}
.alb-mediagallery .alb-section-title {
    text-align: left;
    margin-bottom: 14px;
}
.alb-mediagallery-desktop {
    display: block;
}
.alb-mediagallery-hero {
    border-radius: var(--alb-mg-radius, 16px);
    overflow: hidden;
    background: #f1f3f5;
}
.alb-mediagallery-hero img,
.alb-mediagallery-cell img,
.alb-mediagallery-slide img {
    width: 100%;
    display: block;
    aspect-ratio: var(--alb-mg-aspect);
    object-fit: cover;
}
.alb-mediagallery-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.alb-mediagallery-cell {
    border-radius: var(--alb-mg-radius, 16px);
    overflow: hidden;
    background: #f1f3f5;
}
.alb-mediagallery-mobile {
    display: none;
}
.alb-mediagallery-track {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
}
.alb-mediagallery-track::-webkit-scrollbar {
    display: none;
}
.alb-mediagallery-slide {
    flex: 0 0 var(--alb-mg-slide-width, 88%);
    min-width: 0;
    scroll-snap-align: start;
    border-radius: var(--alb-mg-radius, 16px);
    overflow: hidden;
    background: #f1f3f5;
}
/* ══════════════════════════════════════════════════════════
   PRODUCT CARD
══════════════════════════════════════════════════════════ */
.alb-productcard-wrap {
    color: var(--alb-pc-text, #2d2f34);
}
.alb-productcard {
    /* background: var(--alb-pc-bg, #fff); */
    /* border-radius: var(--alb-pc-radius, 20px); */
    padding: 18px 20px;
    color: var(--alb-pc-text, #2d2f34);
    /* box-shadow: 0 2px 16px rgba(0, 0, 0, .05); */
}
.alb-productcard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.alb-productcard-brand {
    margin: 0;
    font-size: var(--alb-pc-brand-size, 18px);
    line-height: var(--alb-pc-brand-lh, 1.2);
    letter-spacing: var(--alb-pc-brand-ls, normal);
    text-align: var(--alb-pc-brand-align, left);
    color: var(--alb-pc-brand-color, var(--alb-pc-text, #2d2f34));
    opacity: .75;
}
.alb-productcard-rating {
    display: inline-flex;
    align-items: center;
    justify-content: var(--alb-pc-rating-justify, flex-start);
    gap: 8px;
    font-size: var(--alb-pc-rating-size, 17px);
    line-height: var(--alb-pc-rating-lh, 1.2);
    letter-spacing: var(--alb-pc-rating-ls, normal);
    text-align: var(--alb-pc-rating-align, left);
    color: var(--alb-pc-rating-color, var(--alb-pc-text, #2d2f34));
}
.alb-productcard-stars {
    color: var(--alb-pc-accent, #b49adf);
    letter-spacing: inherit;
    line-height: 1;
}
.alb-productcard-reviews {
    opacity: .65;
    font-size: 0.82em;
}
.alb-productcard-title-row {
    display: flex;
    align-items: center;
    justify-content: var(--alb-pc-title-justify, flex-start);
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0 4px;
}
.alb-productcard-title {
    margin: 0;
    font-size: var(--alb-pc-title-size, 56px);
    line-height: var(--alb-pc-title-lh, 1.05);
    letter-spacing: var(--alb-pc-title-ls, normal);
    text-align: var(--alb-pc-title-align, left);
    color: var(--alb-pc-title-color, var(--alb-pc-text, #2d2f34));
    font-weight: 800;
}
.alb-productcard-title-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.alb-productcard-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border: 1px solid color-mix(in srgb, var(--alb-pc-accent, #b49adf) 55%, #bbb 45%);
    border-radius: 999px;
    color: color-mix(in srgb, var(--alb-pc-accent, #b49adf) 68%, #444 32%);
    background: color-mix(in srgb, var(--alb-pc-accent, #b49adf) 18%, #fff 82%);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}
.alb-productcard-description {
    font-size: var(--alb-pc-desc-size, 28px);
    line-height: var(--alb-pc-desc-lh, 1.45);
    letter-spacing: var(--alb-pc-desc-ls, normal);
    text-align: var(--alb-pc-desc-align, left);
    color: var(--alb-pc-desc-color, var(--alb-pc-text, #2d2f34));
    margin: 10px 0 16px;
}
.alb-productcard-description p {
    margin: 0 0 0.6em;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-align: inherit;
}
.alb-productcard-description p:last-child {
    margin-bottom: 0;
}
.alb-productcard-price-row {
    display: flex;
    align-items: center;
    justify-content: var(--alb-pc-price-justify, flex-start);
    gap: 12px;
    margin: 4px 0 8px;
    flex-wrap: wrap;
}
.alb-productcard-price strong {
    font-size: var(--alb-pc-price-size, 70px);
    line-height: var(--alb-pc-price-lh, 1);
    letter-spacing: var(--alb-pc-price-ls, -0.03em);
    text-align: var(--alb-pc-price-align, left);
    color: var(--alb-pc-price-color, var(--alb-pc-text, #2d2f34));
}
.alb-productcard-price span {
    font-size: calc(var(--alb-pc-price-size, 70px) * 0.6);
    color: var(--alb-pc-price-color, var(--alb-pc-text, #2d2f34));
    margin-left: 8px;
    font-weight: 700;
    opacity: .65;
}
.alb-productcard-old-price {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    opacity: .55;
}
.alb-productcard-old-price s {
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1;
}
.alb-productcard-old-price span {
    font-size: clamp(20px, 3.1vw, 28px);
    line-height: 1;
}
.alb-productcard-subtitle {
    margin: 0 0 20px;
    font-size: var(--alb-pc-subtitle-size, 31px);
    line-height: var(--alb-pc-subtitle-lh, 1.35);
    letter-spacing: var(--alb-pc-subtitle-ls, normal);
    text-align: var(--alb-pc-subtitle-align, left);
    color: var(--alb-pc-subtitle-color, var(--alb-pc-text, #2d2f34));
    opacity: .72;
}
.alb-productcard-cart-form {
    margin: 0;
}
.alb-productcard-actions {
    display: flex;
    align-items: stretch;
    gap: 10px;
}
.alb-productcard-qty {
    display: flex;
    align-items: center;
    align-self: stretch;
    flex-shrink: 0;
    border: 1px solid var(--alb-pc-qty-border-color, color-mix(in srgb, var(--alb-pc-accent, #b49adf) 45%, #d0d0d0 55%));
    border-radius: 999px;
    background: var(--alb-pc-qty-background, color-mix(in srgb, var(--alb-pc-accent, #b49adf) 10%, #fff 90%));
    overflow: hidden;
}
.alb-productcard-qty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-height: 100%;
    border: 0;
    background: var(--alb-pc-qty-btn-bg, color-mix(in srgb, var(--alb-pc-accent, #b49adf) 14%, #fff 86%)) !important;
    color: var(--alb-pc-qty-text-color, var(--alb-pc-text, #2d2f34)) !important;
    font-size: var(--alb-pc-btn-size, 38px);
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    box-shadow: none !important;
}
.alb-productcard-qty-btn:hover {
    background: var(--alb-pc-qty-btn-hover-bg, color-mix(in srgb, var(--alb-pc-accent, #b49adf) 24%, #fff 76%)) !important;
}
.alb-productcard-wrap .alb-productcard-qty-input {
    width: 52px;
    border: 0 !important;
    text-align: center;
    font-size: var(--alb-pc-btn-size, 38px);
    font-weight: 700;
    line-height: var(--alb-pc-btn-lh, 1.1);
    letter-spacing: var(--alb-pc-btn-ls, normal);
    color: var(--alb-pc-qty-text-color, var(--alb-pc-text, #2d2f34)) !important;
    background: var(--alb-pc-qty-input-bg, var(--alb-pc-qty-background, color-mix(in srgb, var(--alb-pc-accent, #b49adf) 10%, #fff 90%))) !important;
    padding: 0 4px;
    -moz-appearance: textfield;
    appearance: textfield;
    box-shadow: none !important;
}
.alb-productcard-wrap .alb-productcard-qty-input:-webkit-autofill,
.alb-productcard-wrap .alb-productcard-qty-input:-webkit-autofill:hover,
.alb-productcard-wrap .alb-productcard-qty-input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--alb-pc-qty-text-color, var(--alb-pc-text, #2d2f34));
    -webkit-box-shadow: 0 0 0 1000px var(--alb-pc-qty-input-bg, var(--alb-pc-qty-background, color-mix(in srgb, var(--alb-pc-accent, #b49adf) 10%, #fff 90%))) inset !important;
    box-shadow: 0 0 0 1000px var(--alb-pc-qty-input-bg, var(--alb-pc-qty-background, color-mix(in srgb, var(--alb-pc-accent, #b49adf) 10%, #fff 90%))) inset !important;
    transition: background-color 99999s ease-out 0s;
}
.alb-productcard-qty-input::-webkit-outer-spin-button,
.alb-productcard-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.alb-productcard-wrap .alb-productcard-btn {
    display: block;
    flex: 1;
    width: auto;
    min-width: 0;
    align-self: stretch;
    border: 0;
    text-align: var(--alb-pc-btn-align, center);
    text-decoration: none;
    color: var(--alb-pc-btn-text-color, #fff) !important;
    background: var(--alb-pc-btn-bg, var(--alb-pc-accent, #b49adf)) !important;
    border-radius: 999px;
    padding: 18px 20px;
    font-size: var(--alb-pc-btn-size, 38px);
    font-weight: 700;
    line-height: var(--alb-pc-btn-lh, 1.1);
    letter-spacing: var(--alb-pc-btn-ls, normal);
    cursor: pointer;
    box-shadow: none;
    font-family: inherit;
}
.alb-productcard-wrap a.alb-productcard-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.alb-productcard-wrap button.alb-productcard-btn:hover,
.alb-productcard-wrap a.alb-productcard-btn:hover {
    filter: brightness(0.96);
    color: var(--alb-pc-btn-text-color, #fff) !important;
    background: var(--alb-pc-btn-bg, var(--alb-pc-accent, #b49adf)) !important;
}
.alb-productcard-footnote {
    margin: 14px 0 0;
    text-align: var(--alb-pc-footnote-align, center);
    color: var(--alb-pc-footnote-color, var(--alb-pc-text, #2d2f34));
    opacity: .55;
    font-size: var(--alb-pc-footnote-size, 24px);
    line-height: var(--alb-pc-footnote-lh, 1.35);
    letter-spacing: var(--alb-pc-footnote-ls, normal);
}

/* Sticky price + CTA bar (Product Card) */
.alb-productcard-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9990;
    padding: var(--alb-sticky-padding-top, 12px) var(--alb-sticky-padding-x, 16px) calc(var(--alb-sticky-padding-top, 12px) + env(safe-area-inset-bottom, 0px));
    background: var(--alb-pc-bg, #fff);
    border-top: 1px solid color-mix(in srgb, var(--alb-pc-text, #2d2f34) 12%, transparent);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease, visibility 0.25s ease;
}
.alb-productcard-sticky-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.alb-productcard-sticky-bar .alb-productcard-cta {
    margin: 0;
}
.alb-productcard-sticky-layout {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.alb-productcard-sticky-thumb {
    flex: 0 0 auto;
}
.alb-productcard-sticky-thumb img,
.alb-productcard-sticky-thumb-link {
    display: block;
    width: var(--alb-sticky-image-size, 56px);
    height: var(--alb-sticky-image-size, 56px);
    border-radius: 10px;
    object-fit: cover;
}
.alb-productcard-sticky-thumb-link {
    overflow: hidden;
    line-height: 0;
}
.alb-productcard-sticky-content {
    flex: 1 1 auto;
    min-width: 0;
}
.alb-productcard-sticky-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0 0 8px;
    min-width: 0;
}
.alb-productcard-sticky-name {
    margin: 0;
    font-size: var(--alb-sticky-title-size, clamp(15px, 3.8vw, 18px));
    font-weight: 700;
    line-height: 1.2;
    color: var(--alb-pc-title-color, var(--alb-pc-text, #2d2f34));
    text-decoration: none;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
a.alb-productcard-sticky-name:hover {
    color: var(--alb-pc-accent, #b49adf);
}
.alb-productcard-sticky-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1;
    color: var(--alb-pc-rating-color, var(--alb-pc-text, #2d2f34));
}
.alb-productcard-sticky-rating .alb-productcard-stars {
    color: var(--alb-pc-accent, #b49adf);
    letter-spacing: 0.02em;
}
.alb-productcard-sticky-rating .alb-productcard-reviews {
    opacity: 0.65;
    font-size: 0.9em;
}
.alb-productcard-sticky-bar .alb-productcard-price-row {
    margin: 0 0 6px;
    gap: 8px;
}
.alb-productcard-sticky-bar .alb-productcard-price strong {
    font-size: var(--alb-sticky-price-size, clamp(28px, 7vw, calc(var(--alb-pc-price-size, 70px) * 0.42)));
    color: var(--alb-pc-price-color, var(--alb-pc-text, #2d2f34));
}
.alb-productcard-sticky-bar .alb-productcard-price span {
    font-size: clamp(16px, 4vw, calc(var(--alb-pc-price-size, 70px) * 0.26));
    margin-left: 4px;
}
.alb-productcard-sticky-bar .alb-productcard-old-price s {
    font-size: clamp(18px, 4.5vw, 28px);
}
.alb-productcard-sticky-bar .alb-productcard-old-price span {
    font-size: clamp(14px, 3.5vw, 20px);
}
.alb-productcard-sticky-bar .alb-productcard-pill {
    font-size: 11px;
    padding: 3px 10px;
}
.alb-productcard-sticky-bar .alb-productcard-subtitle {
    margin: 0 0 10px;
    font-size: var(--alb-sticky-subtitle-size, clamp(13px, 3.4vw, calc(var(--alb-pc-subtitle-size, 31px) * 0.42)));
    line-height: 1.3;
    color: var(--alb-pc-subtitle-color, var(--alb-pc-text, #2d2f34));
}
.alb-productcard-sticky-bar .alb-productcard-actions {
    gap: 8px;
}
.alb-productcard-sticky-bar .alb-productcard-qty-btn {
    width: 38px;
    font-size: var(--alb-sticky-btn-size, clamp(15px, 3.8vw, calc(var(--alb-pc-btn-size, 38px) * 0.55)));
    font-weight: 700;
}
.alb-productcard-sticky-bar .alb-productcard-wrap .alb-productcard-qty-input,
.alb-productcard-sticky-bar .alb-productcard-qty-input {
    width: 44px;
    font-size: var(--alb-sticky-btn-size, clamp(15px, 3.8vw, calc(var(--alb-pc-btn-size, 38px) * 0.55)));
}
.alb-productcard-sticky-bar .alb-productcard-btn {
    padding: 14px 16px;
    font-size: var(--alb-sticky-btn-size, clamp(15px, 3.8vw, calc(var(--alb-pc-btn-size, 38px) * 0.55)));
    background: var(--alb-pc-btn-bg, #b49adf);
    color: var(--alb-pc-btn-text-color, #fff);
}
.alb-productcard-sticky-layout .alb-productcard-sticky-head {
    margin-bottom: 4px;
}
.alb-productcard-sticky-layout .alb-productcard-price-row {
    margin-bottom: 4px;
}
.alb-productcard-sticky-layout .alb-productcard-subtitle {
    margin-bottom: 6px;
}
body.alb-pc-sticky-active {
    padding-bottom: var(--alb-pc-sticky-offset, 0px);
}
@media (min-width: 641px) {
    .alb-productcard-wrap[data-sticky-mobile-only="1"] .alb-productcard-sticky-bar,
    .alb-post-sticky-wrap[data-sticky-mobile-only="1"] .alb-productcard-sticky-bar {
        display: none !important;
    }
}
.alb-post-sticky-wrap {
    position: static;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
}
body.alb-post-has-sticky .alb-post-sticky-wrap .alb-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}
body.alb-post-has-sticky .alb-productcard-sticky-bar {
    z-index: 99999;
}

/* ══════════════════════════════════════════════════════════
   TIMELINE
══════════════════════════════════════════════════════════ */
.alb-timeline {
    padding: var(--alb-tl-padding, 24px 16px);
    margin: var(--alb-tl-margin-top, 0) var(--alb-tl-margin-right, 0) var(--alb-tl-margin-bottom, 0) var(--alb-tl-margin-left, 0);
    box-sizing: border-box;
}

.alb-timeline-title {
    margin: 0 0 12px;
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    color: #1d2327;
}

.alb-timeline-description {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.55;
    color: #4a4f57;
    max-width: 42em;
}

.alb-timeline-list {
    display: flex;
    flex-direction: column;
}

.alb-timeline-item {
    display: grid;
    grid-template-columns: var(--alb-tl-track-col, 28px) minmax(0, 1fr);
    column-gap: var(--alb-tl-track-gap, 16px);
    padding-bottom: var(--alb-tl-item-gap, 18px);
}

.alb-timeline-item:last-child {
    padding-bottom: 0;
}

.alb-timeline-marker {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: calc(var(--alb-tl-badge-py, 10px) + 7px - (var(--alb-tl-track-dot-size, 10px) / 2));
}

.alb-timeline-track-dot {
    width: var(--alb-tl-track-dot-size, 10px);
    height: var(--alb-tl-track-dot-size, 10px);
    border-radius: 50%;
    background: var(--alb-tl-track-dot-inactive, #b6b6b6);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.alb-timeline-item.is-active .alb-timeline-track-dot {
    background: var(--alb-tl-track-dot-active, #1d2327);
}

.alb-timeline-marker::after {
    content: '';
    position: absolute;
    top: calc(var(--alb-tl-badge-py, 10px) + 7px + (var(--alb-tl-track-dot-size, 10px) / 2));
    left: 50%;
    transform: translateX(-50%);
    width: var(--alb-tl-line-w, 2px);
    bottom: calc(-1 * var(--alb-tl-item-gap, 18px));
    background: var(--alb-tl-line-inactive, #c8c8c8);
    z-index: 1;
}

.alb-timeline-marker.is-line-active::after {
    background: var(--alb-tl-line-active, #1d2327);
}

.alb-timeline-item:last-child .alb-timeline-marker::after {
    display: none;
}

.alb-timeline-body {
    min-width: 0;
    transition: opacity 0.5s ease;
}

.alb-timeline-item:not(.is-active) .alb-timeline-body {
    opacity: 0.28;
}

.alb-timeline-track-dot,
.alb-timeline-marker::after {
    transition: background 0.5s ease;
}

.alb-timeline-badge,
.alb-timeline-item-title,
.alb-timeline-points li {
    transition: background 0.5s ease, color 0.5s ease;
}

@media (prefers-reduced-motion: reduce) {
    .alb-timeline-body,
    .alb-timeline-track-dot,
    .alb-timeline-marker::after,
    .alb-timeline-badge,
    .alb-timeline-item-title,
    .alb-timeline-points li {
        transition: none;
    }

    .alb-timeline-item:not(.is-active) .alb-timeline-body {
        opacity: 1;
    }
}

.alb-timeline-item-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
}

.alb-timeline-item-title {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    font-size: var(--alb-tl-title-size, 16px);
    font-weight: 700;
    line-height: 1.35;
    color: var(--alb-tl-title-inactive, #9aa0a8);
}

.alb-timeline-item.is-active .alb-timeline-item-title {
    color: var(--alb-tl-title-active, #165e2d);
}

.alb-timeline-badge {
    display: inline-block;
    background: var(--alb-tl-badge-bg-inactive, #cfd2d7);
    color: var(--alb-tl-badge-color-inactive, #6b6f75);
    padding: var(--alb-tl-badge-py, 10px) var(--alb-tl-badge-px, 16px);
    border-radius: var(--alb-tl-badge-radius, 999px);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 0;
}

.alb-timeline-item.is-active .alb-timeline-badge {
    background: var(--alb-tl-badge-bg-active, #165e2d);
    color: var(--alb-tl-badge-color-active, #ffffff);
}

.alb-timeline-points {
    margin: var(--alb-tl-points-mt, 8px) 0 var(--alb-tl-points-mb, 0);
    padding-left: var(--alb-tl-points-pl, 22px);
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: var(--alb-tl-points-gap, 6px);
}

.alb-timeline-points li {
    color: var(--alb-tl-text-inactive, #7b7f86);
    font-size: 14px;
    line-height: 1.55;
}

.alb-timeline-item.is-active .alb-timeline-points li {
    color: var(--alb-tl-text-active, #1d2327);
}

.alb-timeline-points li::marker {
    color: var(--alb-tl-dot-color-inactive, #b6b6b6);
}

.alb-timeline-item.is-active .alb-timeline-points li::marker {
    color: var(--alb-tl-dot-color-active, #1d2327);
}

/* ══════════════════════════════════════════════════════════
   INFO BLOCK
══════════════════════════════════════════════════════════ */
.alb-infoblock {
    padding: var(--alb-ib-padding, 16px);
    margin: var(--alb-ib-margin-top, 0) var(--alb-ib-margin-right, 0) var(--alb-ib-margin-bottom, 0) var(--alb-ib-margin-left, 0);
    box-sizing: border-box;
}

.alb-infoblock-box {
    display: flex;
    align-items: flex-start;
    gap: var(--alb-ib-gap, 14px);
    background: var(--alb-ib-bg, #f0f1f3);
    border-radius: var(--alb-ib-radius, 18px);
    padding: var(--alb-ib-inner-py, 18px) var(--alb-ib-inner-px, 20px);
}

.alb-infoblock--image-right .alb-infoblock-box {
    flex-direction: row-reverse;
}

.alb-infoblock-media {
    flex: 0 0 var(--alb-ib-image-w, 72px);
    width: var(--alb-ib-image-w, 72px);
    max-width: var(--alb-ib-image-w, 72px);
}

.alb-infoblock-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center top;
}

.alb-infoblock-content {
    flex: 1 1 auto;
    min-width: 0;
}

body.alb-landing .alb-infoblock-heading {
    margin: 0 0 6px;
    font-size: var(--alb-ib-heading-size, 16px);
    font-weight: 700;
    line-height: 1.35;
    color: var(--alb-ib-heading-color, #1d2327);
}

body.alb-landing .alb-infoblock-body,
body.alb-landing .alb-infoblock-body p {
    font-size: var(--alb-ib-text-size, 14px);
    line-height: 1.55;
    color: var(--alb-ib-text-color, #5c6370);
    font-family: inherit;
}

body.alb-landing .alb-infoblock-body p {
    margin: 0 0 0.65em;
}

body.alb-landing .alb-infoblock-body p:last-child {
    margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════
   COMPARISON
══════════════════════════════════════════════════════════ */
.alb-comparison {
    position: relative;
    margin: var(--alb-cmp-margin-top, 0) 0 var(--alb-cmp-margin-bottom, 0);
    padding: var(--alb-cmp-padding, 40px 28px);
    border-radius: var(--alb-cmp-radius, 28px);
    overflow: hidden;
    box-sizing: border-box;
}

.alb-comparison-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.alb-comparison-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: rgba(0, 0, 0, var(--alb-cmp-overlay, 0));
    pointer-events: none;
}

.alb-comparison-inner {
    position: relative;
    z-index: 1;
}

body.alb-landing .alb-comparison-title {
    margin: 0 0 28px;
    font-size: var(--alb-cmp-title-size, 32px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--alb-cmp-title-color, #ffffff);
    text-align: var(--alb-cmp-title-align, center);
}

.alb-comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--alb-cmp-cards-gap, 20px);
    align-items: stretch;
}

.alb-comparison-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--alb-cmp-card-padding, 28px);
    border-radius: var(--alb-cmp-card-radius, 20px);
    border: var(--alb-cmp-card-border, 1px solid rgba(255, 255, 255, 0.35));
    background: var(--alb-cmp-glass-bg, rgba(255, 255, 255, 0.22));
    box-sizing: border-box;
    min-width: 0;
}

.alb-comparison-has-glass .alb-comparison-card {
    backdrop-filter: blur(var(--alb-cmp-glass-blur, 16px));
    -webkit-backdrop-filter: blur(var(--alb-cmp-glass-blur, 16px));
}

body.alb-landing .alb-comparison-card-title {
    margin: 0 0 12px;
    font-size: var(--alb-cmp-card-title-size, 22px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--alb-cmp-card-title-color, #ffffff);
    width: 100%;
}

.alb-comparison-divider {
    width: 100%;
    height: 1px;
    background: var(--alb-cmp-divider-color, rgba(255, 255, 255, 0.55));
    margin: 0 0 20px;
}

.alb-comparison-points {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--alb-cmp-points-gap, 10px);
}

.alb-comparison-points li {
    margin: 0;
    font-size: var(--alb-cmp-point-size, 15px);
    line-height: 1.45;
}

.alb-comparison-card--left .alb-comparison-points li {
    color: var(--alb-cmp-left-point-color, #ffffff);
    font-weight: 700;
}

.alb-comparison-card--right .alb-comparison-points li {
    color: var(--alb-cmp-right-point-color, rgba(255, 255, 255, 0.92));
    font-weight: 400;
}

@media (max-width: 640px) {
    .alb-comparison:not(.alb-comparison-mobile-row) .alb-comparison-grid {
        grid-template-columns: 1fr;
    }

    .alb-comparison-mobile-row .alb-comparison-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .alb-comparison-mobile-row .alb-comparison-card {
        padding: clamp(12px, 3vw, var(--alb-cmp-card-padding, 28px));
    }

    body.alb-landing .alb-comparison-mobile-row .alb-comparison-card-title {
        font-size: clamp(13px, 3.4vw, var(--alb-cmp-card-title-size, 22px));
        margin-bottom: 8px;
    }

    .alb-comparison-mobile-row .alb-comparison-divider {
        margin-bottom: 12px;
    }

    .alb-comparison-mobile-row .alb-comparison-points li {
        font-size: clamp(10px, 2.6vw, var(--alb-cmp-point-size, 15px));
        line-height: 1.35;
    }

    body.alb-landing .alb-comparison-title {
        margin-bottom: 20px;
    }
}

/* Timeline desktop split + 3-photo gallery */
.alb-timeline-split {
    display: block;
}

.alb-timeline-main,
.alb-timeline-gallery {
    min-width: 0;
}

.alb-timeline-gallery-desktop {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    gap: var(--alb-tl-gallery-gap, 10px);
    align-items: stretch;
    min-height: 420px;
}

.alb-timeline-gallery-hero,
.alb-timeline-gallery-stack-cell {
    border-radius: var(--alb-tl-gallery-radius, 16px);
    overflow: hidden;
    background: #f1f3f5;
    min-height: 0;
}

.alb-timeline-gallery-hero {
    height: 100%;
}

.alb-timeline-gallery-hero img,
.alb-timeline-gallery-stack-cell img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.alb-timeline-gallery-stack {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: var(--alb-tl-gallery-gap, 10px);
    min-height: 0;
    height: 100%;
}

.alb-timeline-gallery-desktop.is-single {
    grid-template-columns: 1fr;
    min-height: 360px;
}

.alb-timeline-gallery-stack-cell:only-child {
    grid-row: 1 / -1;
}

@media ( min-width: 992px ) {
    .alb-timeline-has-split .alb-timeline-split {
        display: grid;
        grid-template-columns: minmax(0, var(--alb-tl-content-col, 48%)) minmax(0, var(--alb-tl-gallery-col, 52%));
        gap: var(--alb-tl-split-gap, 32px);
        align-items: start;
    }

    .alb-timeline-has-split .alb-timeline-description {
        max-width: none;
    }
}

@media ( max-width: 991px ) {
    .alb-timeline-has-split .alb-timeline-split {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .alb-timeline-has-split .alb-timeline-gallery-desktop {
        min-height: 300px;
    }

    .alb-timeline-has-split .alb-timeline-gallery-desktop.is-single {
        min-height: 260px;
    }
}

@media ( max-width: 640px ) {
    .alb-timeline-has-split .alb-timeline-gallery-desktop {
        min-height: 240px;
    }

    .alb-timeline-has-split .alb-timeline-gallery-desktop.is-single {
        min-height: 220px;
    }
}

/* ═════════════════════════════════════════════════════════=
   Mobile
══════════════════════════════════════════════════════════ */
@media ( max-width: 640px ) {
    .alb-layoutgrid-row,
    .alb-layoutgrid-cols-2,
    .alb-layoutgrid-cols-3,
    .alb-layoutgrid-cols-4 { grid-template-columns: 1fr; }
    .alb-hero { padding: 52px 0; }
    .alb-story-inner { flex-direction: column !important; }
    .alb-advancedhero-grid {
        grid-template-columns: 1fr;
    }
    .alb-advancedhero-panel {
        order: 1;
    }
    .alb-advancedhero-visual {
        order: 2;
        width: 100%;
        padding: 0;
        aspect-ratio: 1 / 1;
        min-height: 0;
    }
    .alb-advancedhero-panel-inner:not(.alb-advancedhero-panel-inner--copy-only) {
        grid-template-columns: minmax(0, 1fr) minmax(0, var(--alb-ah-panel-media, 38%));
        gap: 12px;
    }
    .alb-advancedhero-panel--bg-image .alb-advancedhero-copy {
        max-width: var(--alb-ah-panel-copy-max, 55%);
    }
    .alb-advancedhero-panel--bg-image .alb-advancedhero-panel-bg {
        right: var(--alb-ah-panel-bg-mobile-right, 0);
    }
    .alb-advancedhero-panel {
        padding: clamp(20px, 5vw, var(--alb-ah-panel-pad, 32px));
    }
    .alb-advancedhero-headline {
        font-size: clamp(20px, 5.5vw, var(--alb-ah-headline-size, 28px));
    }
    /* Split hero: keep two columns on mobile (same as desktop) */
    .alb-hero.alb-has-split .alb-hero-inner {
        gap: 16px;
    }
    .alb-hero.alb-has-split .alb-hero-overline {
        font-size: clamp( 11px, 2.8vw, 14px );
        margin-bottom: 4px;
    }
    .alb-hero.alb-has-split h1.alb-hero-title {
        font-size: clamp( 20px, 5.5vw, 32px );
    }
    .alb-hero.alb-has-split p.alb-hero-subheadline {
        font-size: clamp( 12px, 3.2vw, 18px );
    }
    .alb-hero.alb-has-split .alb-hero-body {
        font-size: clamp( 11px, 2.8vw, 14px );
        margin-bottom: 14px;
        max-width: none;
    }
    .alb-hero.alb-has-split .alb-hero-heading {
        margin-bottom: 10px;
    }
    .alb-hero.alb-has-split .alb-btn-cta {
        display: inline-block;
        padding: 10px 16px;
        font-size: 13px;
        max-width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
    .alb-story-image { flex: none; width: 100%; }
    .alb-hero.alb-has-split .alb-hero-image { width: 100%; }
    .alb-countdown-number { font-size: 36px; }
    .alb-addtocart .alb-btn { padding: 16px 36px; }
    .alb-faq-question { font-size: calc(var(--alb-faq-q-size, 17px) * 0.94); }
    .alb-faq-answer { font-size: calc(var(--alb-faq-a-size, 16px) * 0.94); }
    .alb-faq .alb-section-title {
        font-size: var(--alb-faq-title-size-mobile, 26px);
    }
    body.alb-landing .alb-faq-subtitle {
        font-size: var(--alb-faq-subtitle-size-mobile, 15px);
    }
    body.alb-landing .alb-infoblock-heading {
        font-size: var(--alb-ib-heading-size-mobile, 15px);
    }
    body.alb-landing .alb-infoblock-body,
    body.alb-landing .alb-infoblock-body p {
        font-size: var(--alb-ib-text-size-mobile, 13px);
    }
    .alb-announcement { padding-left: 10px; padding-right: 10px; }
    .alb-floating-header-inner {
        width: calc(100% - 12px);
        min-height: 52px;
        gap: 8px;
        padding: 8px 10px;
        border-radius: 14px;
    }
    .alb-floating-logo {
        padding: 7px 12px;
        font-size: clamp(14px, 5vw, 24px);
    }
    .alb-floating-logo-image {
        max-height: clamp(20px, 7vw, 34px);
        max-width: min(46vw, 170px);
    }
    .alb-floating-logo-dot {
        width: 8px;
        height: 8px;
    }
    .alb-floating-btn {
        padding: 8px 14px;
        min-height: 38px;
        font-size: clamp(11px, 4vw, 18px);
    }
    .alb-floating-menu-btn {
        min-height: 38px;
        min-width: 38px;
        font-size: clamp(17px, 5vw, 24px);
        padding: 6px 10px;
    }
    .alb-floating-menu-panel {
        width: calc(100% - 12px);
        border-radius: 12px;
        padding: 8px;
        top: calc(100% + 6px);
    }
    .alb-floating-menu-link {
        padding: 9px 10px;
        font-size: clamp(13px, 4vw, 17px);
    }
    .alb-mediagallery-desktop {
        display: none;
    }
    .alb-mediagallery-mobile {
        display: block;
    }
    .alb-essentialcards {
        border-radius: var(--alb-ec-radius, 22px);
        min-height: min(var(--alb-ec-min-h, 520px), 88vh);
        overflow: visible;
        display: flex;
        flex-direction: column;
    }
    .alb-essentialcards-inner {
        overflow: visible;
        flex: 1 1 auto;
        min-height: min(var(--alb-ec-min-h, 520px), 88vh);
        justify-content: flex-start;
        gap: 20px;
    }
    .alb-essentialcards-title {
        max-width: 13em;
        font-size: clamp(26px, 7vw, calc(var(--alb-ec-title-size, 42px) * 0.82)) !important;
        flex-shrink: 0;
        padding-top: 4px;
        width: 58%;
    }
    .alb-essentialcards-bar-desktop {
        display: none;
    }
    .alb-essentialcards-mobile {
        display: block;
        align-self: stretch;
        min-width: 0;
        margin-top: auto;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    .alb-essentialcards-track {
        gap: var(--alb-ec-track-gap, 8px);
        padding-bottom: 2px;
        scroll-padding-inline: 0;
        width: 100%;
    }
    .alb-essentialcards-track > .alb-essentialcards-slide {
        flex: 0 0 var(--alb-ec-slide-width, 88%);
        width: auto;
        max-width: none;
        min-width: 0;
    }
    .alb-essentialcards-slide:last-child {
        scroll-snap-align: end;
    }
    .alb-essentialcards-slide-body {
        padding: 22px 20px 24px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        flex: 1 1 auto;
        min-height: 100%;
        gap: 0;
    }
    .alb-essentialcards-slide-media {
        width: 100%;
        max-height: 120px;
        margin-bottom: 12px;
        border-radius: 12px;
        overflow: hidden;
        flex: 0 0 auto;
    }
    .alb-essentialcards-slide-media img {
        width: 100%;
        height: 100%;
        max-height: 120px;
        object-fit: cover;
        padding: 0;
    }
    .alb-essentialcards-has-glass .alb-essentialcards-slide {
        border: var(--alb-ec-mobile-card-border, 1px solid rgba(255, 255, 255, 0.28));
        /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12); */
    }
    .alb-essentialcards-slide .alb-essentialcards-card-title,
    .alb-essentialcards-slide .alb-essentialcards-card-desc {
        color: var(--alb-ec-card-title-color, #fff);
    }
    .alb-essentialcards-slide .alb-essentialcards-card-desc {
        color: var(--alb-ec-card-desc-color, rgba(255, 255, 255, 0.88));
        opacity: 0.92;
    }
    .alb-essentialcards-slide .alb-essentialcards-icon-wrap {
        margin-bottom: 16px;
    }
    .alb-essentialcards-dots {
        margin-top: 18px;
        padding-bottom: 4px;
    }
    .alb-productcard {
        padding: 0;
    }
    .alb-productcard-brand {
        font-size: calc(var(--alb-pc-brand-size, 18px) * 0.82);
    }
    .alb-productcard-rating {
        font-size: calc(var(--alb-pc-rating-size, 17px) * 0.82);
        gap: 6px;
    }
    .alb-productcard-title {
        font-size: calc(var(--alb-pc-title-size, 56px) * 0.72);
    }
    .alb-productcard-description {
        font-size: calc(var(--alb-pc-desc-size, 28px) * 0.9);
    }
    .alb-productcard-price strong {
        font-size: calc(var(--alb-pc-price-size, 70px) * 0.75);
    }
    .alb-productcard-price span {
        font-size: calc(var(--alb-pc-price-size, 70px) * 0.45);
    }
    .alb-productcard-old-price s {
        font-size: clamp(18px, 5vw, 28px);
    }
    .alb-productcard-old-price span {
        font-size: clamp(14px, 4vw, 20px);
    }
    .alb-productcard-subtitle {
        font-size: calc(var(--alb-pc-subtitle-size, 31px) * 0.72);
        margin-bottom: 14px;
    }
    .alb-productcard-qty-btn {
        width: 38px;
        font-size: calc(var(--alb-pc-btn-size, 38px) * 0.90);
    }
    .alb-productcard-qty-input,
    .alb-productcard-wrap .alb-productcard-qty-input {
        width: 44px;
        font-size: calc(var(--alb-pc-btn-size, 38px) * 0.90);
    }
    .alb-productcard-wrap .alb-productcard-btn {
        padding: 14px 14px;
        font-size: calc(var(--alb-pc-btn-size, 38px) * 0.90);
    }
    .alb-productcard-footnote {
        font-size: calc(var(--alb-pc-footnote-size, 24px) * 0.72);
    }
}
