#age-verification-overlay {
    position: fixed;
    inset: 0;
    background: #4747476e;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.sav-box {
    display: flex;
    width: 378px;
    padding: 32px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border-radius: var(--sizes-input-input-radius, 4px);
    background: var(--e-global-color-bg_page_body, #F7F5ED);
}

.sav-logo {
    display: block;
    margin: 0 auto 1rem;
    max-width: 188px;
    width: 188px;
    height: 80px;
    aspect-ratio: 47/20;
    object-fit: contain;
}

.sav-title {
    color: var(--text-base, #333129);
    text-align: center;

    /* Desktop/Headline/H3 */
    font-family: var(--e-global-typography-primary-font-family, "Roboto Slab");
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 140% */
    letter-spacing: -0.4px;
    text-transform: uppercase;

    margin: 0px;
}

.sav-subtext {
    color: var(--text-base, #333129);
    text-align: center;

    /* Desktop/Paragraph/P-lg */
    font-family: var(--e-global-typography-primary-font-family, "Roboto Slab");
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 140% */

    margin: 0px;
}

.sav-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-direction: column;
}

.sav-btn {
    display: flex;
    height: var(--Button-button-height, 48px);
    padding: 8px var(--Button-button-padding-width, 24px);
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: var(--Button-button-radius, 4px);
    background: var(--backgrounds-brand-02-bg-brand-02, #272726);
    cursor: pointer;
    background: transparent;
    transition: background 0.2s, box-shadow 0.2s;
}

.sav-btn--yes {
    color: var(--text-on-brand-02, #FCFBF7);

    /* Desktop/Button/B1 */
    font-family: var(--e-global-typography-primary-font-family, "Roboto Slab");
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px; /* 100% */
    border-radius: var(--sizes-input-input-radius, 4px);
    background: var(--bg-brand-02, #272726);

    transition: box-shadow 0.2s;
}
.sav-btn--yes:focus,
.sav-btn--yes:hover {
    color: var(--text-on-brand-02-hover);
    box-shadow: var(--shadow-500-effect-0), var(--shadow-500-effect-1), 0 0 0 1px var(--bg-page-body), 0 0 0 3px var(--border-base);
    background: var(--bg-brand-02-hover, #555);
}

.sav-btn--no {
    color: var(--text-global-text-base, #333129);

    /* Desktop/Button/B1 */
    font-family: var(--e-global-typography-primary-font-family, "Roboto Slab");
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px; /* 100% */

    border-radius: var(--sizes-input-input-radius, 4px);
    border: 1px solid var(--borders-global-border-base, #524F43);
    background: var(--bg-subtle, #FCFBF7);

    transition: box-shadow 0.2s;
}
.sav-btn--no:focus,
.sav-btn--no:hover {

    box-shadow: var(--shadow-500-effect-0), var(--shadow-500-effect-1), 0 0 0 1px var(--bg-page-body), 0 0 0 3px var(--border-base);
}

#age-verification-overlay {
    position: fixed;
    inset: 0;
    background: rgba(71,71,71,0.43);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.4s ease-out forwards;
}













.skeleton-wrapper {
    position: fixed;
    inset: 0;
    background: #fafafa;
    z-index: 9998;
    overflow-y: auto;
    padding: 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
}

.skeleton-block {
    width: 100%;
    background: #e0e0e0;
    background-image: linear-gradient(
            90deg,
            #e0e0e0 25%,
            #f0f0f0 50%,
            #e0e0e0 75%
    );
    background-size: 200% 100%;
    animation: shimmer 5.6s infinite;
    border-radius: 4px;
}

.skeleton-nav       { height: 50px;  }
.skeleton-hero      { height: 180px; }
.skeleton-section   { display: flex; flex-direction: column; gap: 1rem; }
.two-columns        { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.two-columns-rev    { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: center;}
.two-columns .column { display: flex; flex-direction: column; gap: 1rem; }
.skeleton-image     { height: 120px; }
.skeleton-card      { height: 250px; }
.image-gallery      { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.skeleton-thumb     { height: 80px; }
.skeleton-paragraph { height: 16px; }
.skeleton-paragraph.short { width: 50%; }
.skeleton-footer    { height: 60px; }

@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200%  0; }
}