/*
  © 2025 Eden Memory. All rights reserved.
  Main Site Styles
*/

/* === MODULE IMPORTS === */
@import 'modules/variables.css';
@import 'modules/video-demo.css';
@import 'modules/reset.css';
@import 'modules/typography.css';
@import 'modules/buttons.css';
@import 'modules/cards.css';
@import 'modules/layout.css';
@import 'modules/utilities.css';
@import 'modules/tools.css';
@import 'modules/squircle.css';
@import 'modules/ui-common.css';

/* === 0. GLOBAL IFRAME FIXES === */
html.is-iframe body {
    overflow: hidden !important;
}

html.is-iframe ::-webkit-scrollbar {
    display: none !important;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
header {
    background: transparent;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
}

.desktop-nav {
    display: none;
}

.mobile-nav {
    display: flex;
    align-items: center;
    padding: 0 12px;
    height: 60px;
    justify-content: space-between;
    position: relative;
}

.mobile-nav-brand-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
}

.nav-brand-group {
    display: flex;
    align-items: center;
    z-index: 2;
}

.nav-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.desktop-heading {
    display: none;
}

.mobile-heading {
    display: inline;
}

@media (min-width: 768px) {
    .desktop-heading {
        display: inline;
    }

    .mobile-heading {
        display: none;
    }
}

@media (min-width: 1024px) {
    .mobile-nav {
        display: none;
    }

    .desktop-nav {
        display: flex;
        align-items: center;
        height: 72px;
        width: 100%;
        padding: 0 20px;
        position: relative;
        justify-content: space-between;
    }

    .nav-brand-icon {
        height: 56px;
        width: 56px;
        cursor: pointer;
        z-index: 10;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    height: 100vh;
    min-height: 100vh;
    min-height: 100dvh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-image: url('../images/hero-background-9-16.webp');
}


@media (orientation: landscape) {
    .hero {
        background-image: url('../images/hero-background-16-9.webp');
        min-height: 100vh;
    }
}

@media (orientation: landscape) {
    .hero {
        background-image: url('../images/hero-background-16-9.webp');
        min-height: 100vh;
    }
}

.hero-content-wrapper {
    position: absolute;
    bottom: 80px;
    right: 5%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 32px;
    z-index: 2;
    text-align: right;
    width: fit-content;
    max-width: 1000px;
}

.hero-title-new {
    position: static;
    font-family: 'Manrope', sans-serif;
    color: #fff;
    letter-spacing: -0.03em;
    font-weight: 800;
    line-height: 1.0;
    font-size: clamp(38px, 5.5vw, 4.5rem);
    max-width: none;
    margin-left: auto;
}

.hero-kicker {
    display: none;
}

.hero-subtitle {
    display: none;
}

@media (max-width: 767px) {
    .hero-subtitle {
        padding: 15px 20px;
        border-radius: 16px;
    }
}

.hero-buttons-row {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.hero-btn-secondary {
    display: inline-flex;
}

@media (max-width: 767px) {
    .hero-content-wrapper {
        left: 0;
        right: 0;
        width: 100%;
        bottom: 30px;
        top: auto;
        transform: none;
        gap: 25px;
        align-items: flex-start;
        text-align: left;
        padding: 0 24px;
        max-width: 100%;
    }

    .hero-title-new {
        width: 100%;
        max-width: none;
        margin-left: 0 !important;
        font-size: clamp(32px, 8vw, 44px);
    }

    .hero-kicker {
        font-size: 12px;
        padding: 8px 12px;
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 15px;
    }

    .hero-buttons-row {
        display: flex;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start;
        margin-left: -24px;
        margin-right: -24px;
        width: calc(100% + 48px);
        padding: 0 24px 10px 24px;
        gap: 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .hero-buttons-row::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 380px) {
    .hero-content-wrapper {
        padding: 0 20px;
        bottom: 30px;
    }

    .hero-title-new {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-buttons-row {
        gap: 10px;
    }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: 100px 0 40px;
}

.about-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text-content p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    color: var(--text-secondary);
}

@media (max-width: 767px) {
    .about-section {
        padding: 60px 0 20px;
    }

    .about-text-content p {
        font-size: 16px;
    }
}

/* ========================================
   PRODUCT SECTION
   ======================================== */
.product {
    padding-top: 80px;
}

@media (max-width: 767px) {
    .product {
        padding-top: 80px;
    }
}

section#product .product-content {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.product-info {
    text-align: left;
}

.product-info-card {
    display: flex;
    flex-direction: column;
}

.product-info p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 25px;
}

.product-specs {
    margin-top: 30px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
}

.spec-item:first-child {
    border-top: none;
}

.spec-label {
    color: #555555;
    flex-shrink: 0;
}

.spec-value {
    color: #1d1d1f;
    font-weight: 500;
    text-align: right;
}

@media (max-width: 1023px) {
    .product-info {
        text-align: left;
    }

    .product-specs {
        margin-top: 40px;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .product-info,
    .film-description,
    .advantages-text,
    .order-description-copy {
        width: calc(100% + 32px) !important;
        margin-left: -16px !important;
        margin-right: -16px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        overflow-y: visible;
        overflow-x: scroll !important;
        overscroll-behavior-x: contain;
    }

    .product-content {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        min-width: 0;
    }

    .product-content > .swiper {
        margin-bottom: 18px;
    }

    .product-gallery-slider {
        order: 1;
    }

    .product-info {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 14px;
        padding: 16px 16px 32px;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .product-info::-webkit-scrollbar {
        display: none;
    }

    .product-info > .product-info-card {
        flex: 0 0 calc(100vw - 56px);
        max-width: calc(100vw - 56px);
        margin: 0;
        padding: 18px 20px;
        border: 1px solid #ececef;
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        scroll-snap-align: start;
    }

    .product-info .product-info-card .product-specs {
        margin-top: 0;
    }

    .product-info .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 0;
        border: none;
    }

    .product-info .product-pull-text {
        font-style: normal;
        margin: 16px 0 !important;
    }

    .product-info .product-info-card-compact .spec-item {
        padding: 0;
        border: none;
        gap: 6px;
    }

    .product-info .product-info-card-compact .product-specs + .product-pull-text + .product-specs .spec-item {
        padding-top: 16px;
        border-top: 1px solid #e0e0e0 !important;
    }
}

@media (min-width: 1024px) {
    .product-info {
        display: flex;
        flex-direction: column;
    }

    .product-info > .product-info-card:first-child {
        flex-grow: 1;
    }
}

/* ========================================
   GALLERY SLIDERS
   ======================================== */
.product-gallery-slider,
.film-gallery-slider,
.reviews-slider,
.how-it-works-slider {
    width: 100%;
    border-radius: 14px;
}

.product-gallery-slider,
.film-gallery-slider {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.product-gallery-slider {
    aspect-ratio: 1 / 1;
}

.film-gallery-slider {
    aspect-ratio: 1 / 1;
}

.product-gallery-slider .swiper-slide,
.film-gallery-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-gallery-slider img,
.film-gallery-slider img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background-color: #cccccc;
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: background-color 0.4s ease, transform 0.4s ease;
}

.swiper-pagination-bullet-active {
    background-color: #1d1d1f;
}

.product-gallery-slider .swiper-pagination-bullet,
.film-gallery-slider .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
}

.product-gallery-slider .swiper-pagination-bullet-active,
.film-gallery-slider .swiper-pagination-bullet-active {
    background-color: #ffffff;
}

/* Product Gallery Controls */
.product-gallery-slider .slider-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    transform: none;
    z-index: 20;
    margin-top: 0;
    width: auto;
    gap: 15px;
}

.product-gallery-slider .nav-arrow {
    background: #ffffff;
    backdrop-filter: none;
    border: 1px solid #e0e0e0;
    box-shadow: none;
    width: 48px;
    height: 48px;
}

.product-gallery-slider .swiper-pagination {
    display: none;
}

@media (max-width: 767px) {
    .product-gallery-slider .slider-controls {
        width: 100%;
        left: 0;
        padding: 0 20px;
        justify-content: space-between;
    }
}

/* ========================================
   FILM CREATION SECTION
   ======================================== */
.film-description {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.film-creation-content .demo-interactive-side {
    width: 100%;
}

.film-description-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.film-description-item p {
    font-size: 16px;
    color: #555555;
}

@media (max-width: 767px) {
    .film-gallery-slider {
        order: -1;
    }

    .film-description {
        text-align: left;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 14px;
        padding: 16px 16px 32px;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .film-description::-webkit-scrollbar {
        display: none;
    }

    .film-description-item {
        flex: 0 0 calc(100vw - 56px);
        max-width: calc(100vw - 56px);
        padding: 18px 20px;
        border: 1px solid #ececef;
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        scroll-snap-align: start;
    }
}

@media (min-width: 1024px) {
    .film-description {
        display: flex;
        flex-direction: column;
    }
}






/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews-slider {
    padding-bottom: 40px;
    border-radius: 0;
    overflow: hidden;
}

.review-item {
    width: 300px;
    height: 400px;
    flex-shrink: 0;
}

.review-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

@media (max-width: 767px) {
    .reviews-slider {
        overflow: visible !important;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        border-radius: 0;
    }

    .review-item {
        width: 260px !important;
        height: auto !important;
        aspect-ratio: 3/4;
        flex-shrink: 0;
    }
}

@media (min-width: 1024px) {
    .reviews-slider {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}

/* ========================================
   ADVANTAGES SECTION
   ======================================== */
.advantages-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.advantage-item {
    text-align: left;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.advantage-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.advantage-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 10px;
}

.advantage-item p {
    font-size: 16px;
    color: #555555;
    margin: 0;
}

.advantages-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .advantages-image {
        order: 1;
    }

    .advantages-text {
        order: 2;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 14px;
        padding: 16px 16px 32px;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .advantages-text::-webkit-scrollbar {
        display: none;
    }

    .advantage-item {
        flex: 0 0 calc(100vw - 56px);
        max-width: calc(100vw - 56px);
        text-align: left;
        padding: 18px 20px;
        border: 1px solid #ececef;
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        scroll-snap-align: start;
    }
}

/* ========================================
   ORDER SECTION (CTA)
   ======================================== */
.order-description {
    display: flex;
    flex-direction: column;
}

.order-description-copy {
    display: flex;
    flex-direction: column;
}

.order-description p {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
}

.order-details {
    margin: 30px 0;
}

.order-price-wrapper {
    margin-top: auto;
}

.order-cta-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
}

#order-section #orderButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #000000;
    border: 1.5px solid #000000;
    color: #ffffff;
    text-decoration: none;
    box-shadow: none;
}

#order-section #orderButton:hover {
    background: #1d1d1f;
    border-color: #1d1d1f;
}

@media (max-width: 767px) {
    #orderPreviewContainer {
        order: 1;
    }

    .order-description {
        order: 2;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 18px;
        width: 100%;
        min-width: 0;
    }

    .order-price-wrapper {
        order: 1;
        margin-top: 0;
    }

    .order-description-copy {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 14px;
        padding: 16px 16px 32px;
        margin-bottom: 18px;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .order-description-copy::-webkit-scrollbar {
        display: none;
    }

    .order-description-copy > p,
    .order-description-copy > .order-details {
        flex: 0 0 calc(100vw - 56px);
        max-width: calc(100vw - 56px);
        margin: 0;
        padding: 18px 20px;
        border: 1px solid #ececef;
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        scroll-snap-align: start;
    }

    .order-description-copy > p {
        order: 2;
    }

    .order-description-copy > .order-details {
        order: 1;
    }

    .order-details {
        text-align: left;
        margin: 0;
    }

    .order-details .spec-item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid #e0e0e0;
        gap: 12px;
    }

    .order-details .spec-item:first-child {
        padding-top: 0;
    }

    .order-details .spec-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .order-cta-layout {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
    }

    #order-section #orderButton {
        width: 100%;
        min-width: unset;
        padding-left: 28px;
        padding-right: 28px;
    }
}

@media (min-width: 1024px) {
    #order-section .order-description p {
        flex-grow: 1;
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-wrapper {
    margin: 0 auto;
    display: grid;
    gap: 25px;
}

.faq-item {
    background: none;
    padding: 0;
    border-radius: 0;
    border: none;
    transition: none;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 25px;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h3.faq-question {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #1d1d1f;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.4s ease;
}

.faq-item p {
    font-size: 16px;
    color: #555555;
    margin: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0.0, 0.2, 1),
        padding-top 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 1500px;
    padding-top: 10px;
}

.faq-question::after {
    content: '+';
    font-size: 28px;
    line-height: 1;
    font-weight: 300;
    color: #888;
    transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.faq-item.active .faq-question::after {
    content: '–';
    transform: rotate(180deg);
}

@media (max-width: 1023px) {
    .faq-wrapper {
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .faq-item {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .faq-wrapper {
        max-width: 1100px;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-links-inline {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #777;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.contact-link-item svg {
    width: 20px;
    height: 20px;
    fill: #777;
    transition: all 0.2s ease;
}

.contact-link-item:hover {
    color: #1d1d1f;
}

.contact-link-item:hover svg {
    fill: #1d1d1f;
}

.footer-link-honeycomb {
    display: grid;
    grid-template-columns: max-content repeat(5, minmax(0, 1fr)) max-content;
    column-gap: 0;
    row-gap: 18px;
    align-items: center;
    width: 100%;
    padding-inline: 0;
    box-sizing: border-box;
}

.footer-link-honeycomb .contact-link-item {
    justify-content: center;
    min-height: 44px;
    text-align: center;
    white-space: nowrap;
}

.footer-link-honeycomb .contact-link-item svg {
    flex: 0 0 20px;
}

.footer-link-honeycomb .footer-link-cooperation {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
}

.footer-link-honeycomb .footer-link-privacy {
    grid-column: 5;
    grid-row: 1;
}

.footer-link-honeycomb .footer-link-terms {
    grid-column: 7;
    grid-row: 1;
    justify-self: end;
}

.footer-link-honeycomb .footer-link-petition {
    grid-column: 3;
    grid-row: 1;
}

.footer-link-honeycomb .footer-link-store {
    grid-column: 2;
    grid-row: 2;
    justify-self: center;
}

.footer-link-honeycomb .footer-link-memorytag {
    grid-column: 4;
    grid-row: 2;
    justify-self: center;
}

.footer-link-honeycomb .footer-link-photo-restoration {
    grid-column: 6;
    grid-row: 2;
    justify-self: center;
}

.footer-link-honeycomb .footer-legal-link {
    margin-left: 0 !important;
}

.contact-delivery-info {
    font-size: 14px;
    color: #999;
    margin-left: auto;
    padding-left: 20px;
}

@media (max-width: 767px) {
    .contact-links-inline {
        flex-direction: row;
        align-items: flex-start;
        gap: 25px;
    }

    .site-footer {
        padding-bottom: 30px !important;
    }

    .footer-link-honeycomb {
        display: grid;
        grid-template-columns: repeat(7, max-content);
        column-gap: 24px;
        row-gap: 16px;
        
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        padding: 0 20px 10px 20px;
    }

    .footer-link-honeycomb::-webkit-scrollbar {
        display: none;
    }

    .footer-link-honeycomb .contact-link-item {
        justify-content: center;
        align-items: center;
        text-align: center;
        white-space: nowrap;
        flex-direction: row; /* Revert back to icon left of text */
        gap: 10px;
        font-size: 14px;
        line-height: normal;
    }

    .contact-delivery-info {
        order: -1;
        margin-left: 0;
        width: 100%;
        padding-left: 0;
        margin-bottom: 15px;
        margin-top: 0;
    }
}

/* ========================================
   SUBNAV (FREE TOOLS ICONS)
   ======================================== */
.product-subnav {
    background-color: transparent;
    padding: 12px 0;
    margin-bottom: 40px;
}

.subnav-list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.subnav-list::-webkit-scrollbar {
    display: none;
}

.subnav-item {
    flex-shrink: 0;
}

.subnav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #1d1d1f;
    transition: opacity 0.3s ease, color 0.3s ease;
    gap: 10px;
    opacity: 0.7;
}

.subnav-link:hover {
    color: #000000;
    opacity: 1;
}

.subnav-icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subnav-icon svg {
    width: 100%;
    height: 100%;
    stroke: #1d1d1f;
    fill: #1d1d1f;
    transition: stroke 0.3s ease;
}

@media (max-width: 767px) {
    .subnav-list {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 15px 20px !important;
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }

    .subnav-icon {
        width: 60px;
        height: 60px;
    }
}

/* ========================================
   PRODUCTS SECTION (HOME PAGE GRID)
   ======================================== */
.products-section {
    padding: 10px 24px 80px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.products-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}





.store-hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: #f4f4f5;
    color: #5e5e63;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store-hero-title {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1;
    letter-spacing: -0.04em;
    color: #1d1d1f;
    max-width: 850px;
}

.store-hero-text,
.store-guide-copy p,
.memorytag-difference-lead,
.memorytag-intent-card p,
.memorytag-difference-card p {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: #4d4d52;
}

.store-seo-integrated {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #e0e0e0;
}

.store-seo-integrated.no-border {
    margin-top: 0;
    padding-top: 0;
    border: none;
}

.store-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
}

.bento-item {
    background: #ffffff;
    border: 1px solid #ececef;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.bento-image-box {
    padding: 0 !important;
    overflow: hidden;
    display: block;
    position: relative;
    aspect-ratio: 1;
}

.bento-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.bento-image-box:hover img {
    transform: scale(1.05);
}

.bento-shop-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.bento-shop-overlay svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.bento-fact h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 12px;
    line-height: 1.2;
}

.bento-fact p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #4d4d52;
}

.bento-wide {
    grid-column: span 2;
}

.bento-row-span-2 {
    grid-row: span 2;
    aspect-ratio: auto !important; /* Allow height to be determined by content rows */
    height: 100%;
}

.bento-action-card-integrated {
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    overflow: hidden;
}

.bento-action-card-integrated .stretched-bento-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100px;
    height: 100%;
    padding: 24px 32px;
    border-radius: 24px;
}

.bento-image-box.bento-row-span-2 img {
    height: 100%;
    object-fit: cover;
}

.bento-guide-append {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.bento-guide-append p {
    font-size: 15px;
    color: #1d1d1f;
    font-weight: 500;
}

.bento-guide-append .guide-muted {
    font-size: 14px;
    color: #86868b;
    font-weight: 400;
}

.bento-full-width {
    grid-column: span 3;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

.stretched-bento-action {
    width: 100%;
    box-sizing: border-box;
    background: #000000 !important;
    border-color: #000000 !important;
    transition: all 0.3s ease;
}

.stretched-bento-action:hover {
    background: #1d1d1f !important;
    transform: translateY(-2px);
}

.stretched-bento-action .paid-product-name,
.stretched-bento-action .paid-product-price {
    color: #ffffff !important;
}

.stretched-bento-action .paid-product-subtitle {
    color: rgba(255, 255, 255, 0.6) !important;
}

.stretched-bento-action .paid-product-main svg {
    width: 32px;
    height: 32px;
    color: #ffffff !important;
}

.bento-row-wrapper {
    grid-column: span 3;
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.bento-video-box {
    flex: 1.8;
    aspect-ratio: 16 / 9;
    padding: 0 !important;
    overflow: hidden;
    position: relative;
    min-width: 0;
}

.bento-guide-card {
    flex: 1;
    min-width: 0;
}

.bento-video-box .demo-player-wrap {
    height: auto;
    width: 100%;
}

.bento-video-box .demo-video-container {
    height: 100%;
}

.store-demo-film-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #111111;
    opacity: 1 !important;
    z-index: 6;
}

.store-demo-film-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
}

.store-demo-film-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #ffffff;
    line-height: 1.15;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.store-demo-film-kicker {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.store-demo-film-caption strong {
    font-size: 22px;
    font-weight: 800;
}

.store-demo-film-caption small {
    max-width: 420px;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.92);
}

.store-demo-film-card::after {
    content: "";
    position: absolute;
    inset: 54% 0 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

.store-demo-upload-overlay {
    background: transparent !important;
    justify-content: center;
}

.store-demo-upload-overlay svg,
.store-demo-upload-overlay .demo-photo-counter {
    filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.75));
}

.free-film-service-section {
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid #e0e0e0;
}

.free-film-bento-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    gap: 20px;
    margin-top: 20px;
    color: inherit;
}

.free-film-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.free-film-hero-copy .store-hero-title {
    font-size: clamp(30px, 4.2vw, 48px);
    max-width: 760px;
}

.free-film-promo-copy {
    min-width: 0;
}

.free-film-promo-copy h4 {
    margin: -4px 0 18px 0;
    color: #86868b;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.free-film-promo-action {
    aspect-ratio: 16 / 9;
    min-width: 0;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    overflow: hidden;
    text-decoration: none;
}

.free-film-action-card {
    position: relative;
    height: 100%;
    min-height: 0;
    padding: 0;
    border-radius: 24px;
    align-items: stretch;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    overflow: hidden;
}

.free-film-mobile-url-icon {
    display: none;
}

.mobile-label {
    display: none;
}

.free-film-promo-action:hover .free-film-action-card {
    background: #1d1d1f !important;
    transform: translateY(-2px);
}

.free-film-action-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #111111;
}

.free-film-action-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.86;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.free-film-promo-action:hover .free-film-action-visual img {
    transform: scale(1.04);
    opacity: 0.95;
}

.free-film-action-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 80px 32px 30px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 46%, rgba(0, 0, 0, 0.96) 100%);
    z-index: 2;
}

.free-film-action-bottom .paid-product-info {
    max-width: 68%;
}

.free-film-price {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    min-width: 96px;
    flex-shrink: 0;
}

.free-film-price .paid-product-price-old {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    line-height: 1;
}

.free-film-price .paid-product-price-current {
    color: #ffffff;
    font-size: 44px;
    font-weight: 900;
    line-height: 0.95;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .bento-row-wrapper {
        display: contents;
    }
    
    .bento-video-box {
        width: 100%;
        aspect-ratio: 16 / 9;
        margin-bottom: 0;
    }

    .store-demo-film-caption {
        left: 18px;
        right: 18px;
        bottom: 18px;
        gap: 4px;
        max-width: calc(100% - 36px);
    }

    .store-demo-film-caption strong {
        font-size: 18px;
        line-height: 1.15;
    }

    .store-demo-film-caption small {
        display: none;
    }

    .store-demo-upload-overlay {
        position: absolute !important;
        top: 14px !important;
        right: 14px !important;
        bottom: auto !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding: 0 !important;
        background: transparent !important;
        gap: 2px;
    }

    .store-demo-upload-overlay svg {
        width: 24px !important;
        height: 24px !important;
    }

    .store-demo-upload-overlay .demo-photo-counter {
        font-size: 11px;
        line-height: 1;
    }

    .bento-guide-card {
        order: 4;
        width: 100%;
    }

    .free-film-bento-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .free-film-service-section {
        margin-top: 56px;
        padding-top: 40px;
    }

    .free-film-promo-action {
        aspect-ratio: 16 / 9;
    }

    .free-film-action-card {
        padding: 0;
    }

    .free-film-action-bottom {
        padding: 64px 22px 22px;
    }

    .free-film-action-bottom .paid-product-info {
        max-width: 68%;
    }

    .free-film-mobile-url-icon {
        position: absolute;
        top: 18px;
        right: 18px;
        z-index: 3;
        display: flex;
        width: 30px;
        height: 30px;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.55));
    }

    .free-film-mobile-url-icon svg {
        width: 24px;
        height: 24px;
    }

    .desktop-label {
        display: none;
    }

    .mobile-label {
        display: inline;
    }

    .free-film-action-bottom .paid-product-subtitle,
    .free-film-price {
        display: none;
    }

    .free-film-action-bottom .paid-product-info {
        max-width: calc(100% - 54px);
    }

    .free-film-price {
        align-items: flex-end;
        width: auto;
    }

    .free-film-price .paid-product-price-current {
        font-size: clamp(24px, 8vw, 34px);
        white-space: nowrap;
    }
}

.bento-facts-slider {
    display: contents;
}

@media (min-width: 769px) {
    .bento-seo-secondary:nth-of-type(1) { grid-column: 2; grid-row: 1; }
    .bento-seo-secondary:nth-of-type(2) { grid-column: 3; grid-row: 1; }
    .bento-image-box { grid-column: 1; grid-row: 1 / span 2; }
    .bento-wide { grid-column: 2 / span 2; grid-row: 2; }
    .bento-combined-mobile { display: none !important; }
}

@media (max-width: 768px) {
    .pc-only { display: none !important; }
    .bento-combined-mobile { display: flex !important; }
    .secondary-segment { margin-top: 24px; }
}

@media (max-width: 768px) {
    .bento-facts-slider {
        display: contents !important;
    }

    .bento-facts-slider .bento-item {
        flex: none;
        width: 100%;
        min-height: auto;
    }

    .bento-combined-mobile {
        order: 2;
    }
}

.bento-guide-card {
    flex: 1;
    min-width: 0;
    align-self: stretch;
}

@media (max-width: 768px) {
    .bento-video-box {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
}

.bento-video-box .demo-status-text {
    position: absolute;
    top: 12px;
    bottom: auto;
    left: 0;
    width: 100%;
    z-index: 20;
    pointer-events: none;
    text-shadow: none;
    color: #1d1d1f;
    margin: 0;
    text-align: center;
    padding: 0 14px;
}

.bento-video-box .demo-status-text:not(:empty)::before {
    content: "";
    position: absolute;
    inset: -8px 12px;
    z-index: -1;
    border: 1px solid rgba(29, 29, 31, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.demo-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
    gap: 8px;
}

.demo-play-overlay svg {
    width: 48px;
    height: 48px;
    color: #fff;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.demo-player-wrap:hover .demo-play-overlay svg {
    transform: scale(1.1);
}

.demo-photo-counter {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    z-index: 15;
}

.bento-gallery-slider {
    width: 100%;
    height: 100%;
    position: absolute !important;
    top: 0;
    left: 0;
}

.bento-gallery-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-gallery-slider .swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5;
}

.bento-gallery-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff !important;
}




.bento-photo-stack {
    position: relative;
    width: 100%;
    height: 160px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stack-img {
    position: absolute;
    width: 60%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 3px solid #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stack-1 { transform: rotate(-10deg) translateX(-45px) translateY(-5px); z-index: 1; opacity: 0.8; }
.stack-2 { transform: rotate(8deg) translateX(45px) translateY(5px); z-index: 2; opacity: 0.9; }
.stack-3 { transform: rotate(-1deg); z-index: 3; width: 70%; }

.white-pill-btn {
    background: #ffffff !important;
    color: #1d1d1f !important;
    border: 1px solid #d2d2d7 !important;
    padding: 14px 44px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 999px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.white-pill-btn:hover {
    background: #ffffff !important;
    border-color: #86868b !important;
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.white-pill-btn:hover ~ .bento-photo-stack .stack-img {
    transform: scale(1.05) rotate(var(--or)); /* Optional interactive effect */
}

.bento-btn-pill {
    padding: 14px 40px;
    background: #ffffff;
    color: #1d1d1f;
    border: 1px solid #d2d2d7;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
}

.bento-btn-pill:hover {
    background: #ffffff;
    border-color: #86868b;
    transform: translateY(-1px);
}

/* Mobile Bento */
@media (max-width: 768px) {
    .store-bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }
    
    .bento-wide, .bento-full-width {
        grid-column: span 1;
    }

    .bento-row-span-2 {
        grid-row: span 1 !important;
        aspect-ratio: 1 !important;
        height: auto !important;
    }

    .bento-seo-secondary {
        display: flex; 
    }

    .bento-item {
        padding: 24px;
    }

    .bento-image-box, .bento-action-card {
        aspect-ratio: 1;
        position: relative;
        padding: 0;
    }
    
    .store-hero-title {
        font-size: 32px;
    }
}

.store-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.store-hero-point {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #ececef;
    color: #1d1d1f;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.3;
}

/* Standalone section styling handled by .container inside */
.memorytag-intent-section {
    padding: 0;
}

.memorytag-intent-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 60px;
}

.memorytag-intent-card {
    padding: 20px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #ececef;
}

.memorytag-intent-card h3 {
    margin: 0 0 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #1d1d1f;
}

.memorytag-intent-card p {
    font-size: 15px;
    line-height: 1.5;
    color: #555555;
    margin: 0;
}



.store-guide-copy {
    margin-top: 24px;
    max-width: 840px;
    display: grid;
    gap: 14px;
}

.store-inline-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: #1d1d1f;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(29, 29, 31, 0.2);
}



.order-heading-muted {
    color: #8c8c90;
}

.order-heading-soft {
    color: #6e6e73;
}

@media (min-width: 768px) {
    .products-section {
        padding: 80px 40px 100px 40px;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 720px; /* Capped to avoid gigantic cards */
    margin: 0 auto;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 800px;
    }
}

/* ========================================
   PAID PRODUCTS
   ======================================== */
.paid-products-section {
    margin-top: 48px;
}

.paid-product-list {
    display: grid;
    gap: 12px;
}

.paid-product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: #ffffff;
    border: 1px solid #ececef;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.paid-product-item:hover {
    background: #fafafa;
    border-color: #d2d2d7;
    transform: translateY(-2px);
}

.paid-product-name {
    font-size: 18px;
    font-weight: 700;
    color: #1d1d1f;
}

.paid-product-price {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    color: #1d1d1f;
}

.paid-product-price-promo {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.paid-product-price-old {
    font-size: 15px;
    font-weight: 600;
    color: #86868b;
    text-decoration: line-through;
}

.paid-product-price-current {
    font-size: 18px;
    font-weight: 800;
    color: #1d1d1f;
}

.paid-product-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.paid-product-main svg {
    width: 44px;
    height: 44px;
    color: #1d1d1f;
    flex-shrink: 0;
}

.paid-product-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.paid-product-subtitle {
    margin: 0;
    font-size: 14px;
    color: #86868b;
    font-weight: 400;
}
.tools-section {
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid #e0e0e0;
    padding-bottom: 80px;
    padding-left: 24px;
    padding-right: 24px;
    text-align: left;
}

.tools-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.tool-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    text-decoration: none;
    padding: 24px;
    border-radius: 24px;
    background: #ffffff; /* Correct standard: white surface on gray body */
    border: 1px solid #ececef;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.tool-item svg {
    width: 64px;
    height: 64px;
    color: #1d1d1f;
    stroke-width: 1.2px; /* Thinner stroke for larger size */
    flex-shrink: 0;
}

.tool-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tool-label {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1d1d1f;
    text-align: left;
    line-height: 1.2;
}

.tool-description {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #4d4d52;
    margin: 0;
}

.tool-status {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #86868b;
    margin-top: 2px;
    font-weight: 400;
    text-align: left;
}

@media (hover: hover) {
    .tool-item:hover {
        background: #ffffff;
        border-color: #000;
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }
}

@media (max-width: 768px) {
    .store-hero-title {
        font-size: clamp(32px, 10vw, 48px);
    }

    .store-hero-text,
    .store-guide-copy p,
    .memorytag-intent-card p {
        font-size: 15px;
    }
    .memorytag-intent-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 16px;
        margin-top: 20px !important;
        margin-left: -16px !important;
        margin-right: -16px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        padding-bottom: 32px;
        padding-top: 16px;
        gap: 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .memorytag-intent-grid::-webkit-scrollbar {
        display: none;
    }

    .memorytag-intent-card {
        flex-shrink: 0;
        width: calc(100vw - 56px);
        max-width: calc(100vw - 56px);
        scroll-snap-align: center;
    }

    .store-hero-points {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 24px;
        padding-top: 12px;
        margin: 0 -24px;
        padding-left: 24px;
        padding-right: 24px;
        width: calc(100% + 48px);
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .store-hero-points::-webkit-scrollbar {
        display: none;
    }

    .store-hero-point {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .bento-action-card-integrated .paid-product-item {
        position: relative;
        align-items: flex-end;
        padding: 28px 24px 22px;
    }

    .bento-action-card-integrated .paid-product-main {
        align-items: flex-start;
        gap: 14px;
        max-width: calc(100% - 48px);
    }

    .bento-action-card-integrated .paid-product-info {
        max-width: 220px;
    }

    .bento-action-card-integrated .paid-product-main svg {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 24px;
        height: 24px;
    }

    .bento-action-card-integrated .paid-product-price {
        padding-top: 0;
        white-space: nowrap;
        line-height: 1;
        font-size: 26px;
    }

    .paid-products-section .paid-product-item {
        position: relative;
        align-items: flex-end;
        padding-bottom: 22px;
        padding-right: 24px;
    }

    .paid-products-section .paid-product-main {
        align-items: flex-start;
        gap: 14px;
    }

    .paid-products-section .paid-product-main svg {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 24px;
        height: 24px;
    }

    .paid-products-section .paid-product-price {
        padding-top: 0;
        white-space: nowrap;
        line-height: 1;
        font-size: 26px;
    }

    .store-bento-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .bento-image-box { order: 1; }
    .bento-combined-mobile { order: 2; }
    .bento-video-box { order: 3; }
    .bento-guide-card { order: 4; }
    .bento-wide { order: 5; }

    .tools-section {
        margin-top: 60px;
        padding-top: 40px;
        padding-left: 0;
        padding-right: 0;
    }

    .tools-section .section-title {
        padding-left: 20px;
        padding-right: 20px;
    }

    .tools-grid {
        max-width: 100%;
        gap: 16px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .tool-item {
        padding: 20px;
        gap: 16px;
        border-radius: 20px;
        border-color: #ececef;
        background: #ffffff;
    }

    .tool-item svg {
        width: 48px;
        height: 48px;
    }

    .tool-label {
        font-size: 18px;
    }

    .tool-description {
        font-size: 14px;
    }
}

/* === ABOUT US REFINEMENTS === */
.about-blocks-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    /* Space between the 3 main sections */
}

.about-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-title.left-align {
    text-align: left !important;
    margin-left: 0;
    margin-bottom: 0;
}

/* Developments Block Special Layout */
.developments-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1024px) {
    .developments-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: start;
        /* Fix alignment: text starts at top, aligned with demo top */
        gap: 60px;
    }

    .developments-content .text-side {
        order: 1;
    }

    .developments-content .demo-side {
        order: 2;
        display: flex;
        justify-content: flex-end;
    }

    .developments-content .demo-interactive-side {
        max-width: 600px;
        width: 100%;
    }
}

/* Subheaders for About Us sections */
.about-subheader {
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    /* Similar to memory-tag subheaders */
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 24px;
    text-align: left;
}

@media (max-width: 767px) {
    .about-subheader {
        font-size: 24px;
    }
}

/* Email Copy Button Styles */
.email-copy-trigger {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.2s ease, background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    /* Ensure button size */
}

.email-copy-trigger:active {
    transform: scale(0.96);
}

.copy-feedback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    white-space: nowrap;
}

.email-copy-trigger.copied .copy-feedback {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
    /* Maybe irrelevant, but good practice */
}

.email-copy-trigger.copied .email-text,
.email-copy-trigger.copied .icon-svg {
    opacity: 0.2;
    transition: opacity 0.2s ease;
}

/* Fix for Visualization Size */
.about-demo-column {
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .about-demo-column {
        justify-content: flex-end;
        /* Align to right */
    }

    .about-demo-column .demo-interactive-side {
        max-width: 600px;
        /* Restrict width on desktop */
    }
}

/* === UI/UX & HEATMAP OPTIMIZATIONS === */
/* 1. Touch Target Standard (44x44px min for mobile touch points) */
.eden-back-btn,
.btn-action,
.custom-select-trigger {
    min-height: 44px;
    margin-bottom: 8px;
    /* Breathing room against fat-finger misclicks */
}

/* 2. QR Generator - High Contrast Calls to Action */
.qr-container .btn-action {
    background-color: #f3f4f6;
    border: 1px solid #d1d5db;
    transition: all 0.2s ease-in-out;
}

.qr-container .btn-action:hover {
    background-color: #e5e7eb;
    border-color: #9ca3af;
    transform: translateY(-1px);
}

/* 3. Global - Fix "Fat" Buttons that break Heatmap F-pattern on Desktop */
.btn-primary,
.upload-btn-wrapper {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ausnahme für full-width buttons */
.w-full {
    max-width: none !important;
}

/* 4. Screen-reader only class for SEO elements that shouldn't break design */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* === IMAGE VIEWER === */
.image-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    backdrop-filter: blur(0px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.image-viewer.visible {
    display: flex;
}

.image-viewer img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 100px rgba(0,0,0,0.6);
    cursor: default;
    z-index: 10001;
}

.close-viewer-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10002;
}

.close-viewer-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.close-viewer-btn svg {
    width: 24px;
    height: 24px;
}

/* ========================================
   MOBILE SLIDER CONTROLS
   ======================================== */
@media (max-width: 767px) {
    .slider-group-wrapper {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Reset bottom margins on the scrollable grids inside the wrapper so spacing is strictly controlled by the buttons' margin-top */
    .slider-group-wrapper > div:first-child {
        margin-bottom: 0 !important;
    }

    /* These wrappers need order:2 because on mobile the image/video goes first */
    .film-creation-content > .slider-group-wrapper,
    .advantages-layout > .slider-group-wrapper,
    .product-content > .slider-group-wrapper {
        order: 2 !important;
    }

    .mobile-only-controls,
    .reviews-controls,
    .product-controls {
        display: flex !important;
        position: static !important;
        justify-content: flex-end !important;
        gap: 12px !important;
        margin-top: 16px !important;
        margin-bottom: 0 !important;
        padding-right: 16px !important;
        width: 100% !important;
        left: auto !important;
        bottom: auto !important;
        transform: none !important;
    }

    .slider-controls .nav-arrow,
    .mobile-only-controls .nav-arrow {
        width: 44px !important;
        height: 44px !important;
        border-radius: 50% !important;
        background: #f2f2f7 !important;
        border: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #1d1d1f !important;
        cursor: pointer !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        padding: 0 !important;
        transition: transform 0.2s ease, background 0.2s ease !important;
    }

    .slider-controls .nav-arrow svg,
    .mobile-only-controls .nav-arrow svg {
        width: 20px !important;
        height: 20px !important;
    }

    .slider-controls .nav-arrow:active,
    .mobile-only-controls .nav-arrow:active {
        transform: scale(0.9) !important;
        background: #e5e5ea !important;
    }
}

@media (min-width: 768px) {
    .mobile-only-controls {
        display: none !important;
    }

    .slider-group-wrapper {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}
