/*
  © 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/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.jpg');
}

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

.hero-content-wrapper {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
    z-index: 2;
    text-align: right;
    max-width: 100%;
}

.hero-title-new {
    position: static;
    font-family: 'Unbounded', sans-serif;
    color: #fff;
    letter-spacing: -0.02em;
    font-weight: 500;
    line-height: 1.2;
    font-size: clamp(24px, 6vw, 2.8rem);
    max-width: none;
    margin-left: auto;
}

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

@media (max-width: 767px) {
    .hero-content-wrapper {
        left: 0;
        right: 0;
        width: 100%;
        bottom: 20px;
        gap: 15px;
        align-items: flex-start;
        text-align: left;
        padding: 0 20px;
    }

    .hero-title-new {
        width: 100%;
        max-width: none;
        margin-left: 0 !important;
        font-size: 6.5vw;
    }

    .hero-buttons-row {
        display: flex;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start;
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
        padding: 0 20px 10px 20px;
        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-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 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 (min-width: 1024px) {
    .product-info {
        display: flex;
        flex-direction: column;
    }

    .product-info>p:first-of-type {
        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: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
    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-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;
    }
}

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

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works-section {
    margin-top: 60px;
    text-align: center;
    padding: 60px 0;
    position: relative;
}

.how-it-works-slider {
    padding-bottom: 40px !important;
    padding-top: 50px;
}

.how-it-works-controls {
    display: none !important;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.how-it-works-step {
    text-align: center;
}

.how-it-works-step p {
    color: #555555;
    font-size: 16px;
}

.how-it-works-step .image-wrapper {
    margin-bottom: 15px;
}

.how-it-works-step .image-wrapper img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.2));
    transition: transform 0.5s ease;
}

.how-it-works-connector {
    display: none;
}

.how-it-works-section .container {
    max-width: 1100px;
}

@media (max-width: 767px) {
    .how-it-works-step {
        text-align: left !important;
    }

    .how-it-works-section h2 {
        text-align: center !important;
        margin-bottom: 16px !important;
    }

    .how-it-works-section .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .how-it-works-slider {
        overflow: visible !important;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .how-it-works-controls {
        display: flex !important;
    }

    .how-it-works-step {
        width: 100%;
        flex-shrink: 0;
        padding-top: 30px;
        text-align: center;
        overflow: visible;
    }

    .how-it-works-step p {
        padding: 0 24px;
        text-align: center;
    }

    .how-it-works-step .image-wrapper {
        transform: none !important;
        margin-bottom: 25px;
        overflow: visible;
        width: 75%;
        margin-left: auto;
        margin-right: auto;
    }

    .how-it-works-step .image-wrapper img {
        transform: none !important;
        width: 100%;
        height: auto;
    }
}

@media (min-width: 768px) {
    .how-it-works-section {
        margin-top: 80px;
        padding: 60px 0 80px;
    }

    #howItWorksSection .swiper-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .how-it-works-slider {
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        overflow: visible;
    }

    #howItWorksSection .swiper-pagination {
        display: none;
    }

    .how-it-works-step {
        width: 300px;
        flex-shrink: 0;
        text-align: center;
    }

    .how-it-works-step .image-wrapper {
        width: 100%;
        max-width: none;
    }

    .how-it-works-connector {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-grow: 1;
        padding: 0 40px;
        opacity: 0.6;
    }

    .how-it-works-connector svg {
        width: 100%;
        height: auto;
        display: block;
    }

    .how-it-works-controls {
        display: none !important;
    }
}

/* ========================================
   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;
    }

    .advantage-item {
        text-align: left;
    }
}

/* ========================================
   ORDER SECTION (CTA)
   ======================================== */
.order-description {
    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%;
}

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

    .order-description {
        order: 2;
        text-align: left;
    }

    .order-description p {
        flex-grow: 0;
    }

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

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

@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;
}

.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;
    }

    .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: 140px 24px 80px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

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

/* ========================================
   TOOLS SECTION (HOME PAGE)
   ======================================== */
.tools-section {
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 120px;
    padding-top: 60px;
    border-top: 1px solid #e0e0e0;
    padding-bottom: 80px;
    padding-left: 24px;
    padding-right: 24px;
    text-align: left;
}

.tools-section .section-title {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.tools-grid {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 40px 50px;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    width: 110px;
    background: transparent;
    border: none;
    padding: 0;
    transition: opacity 0.3s ease;
}

.tool-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1px solid #d2d2d7;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
}

.tool-circle svg {
    width: 44px;
    height: 44px;
    color: #1d1d1f;
    transition: transform 0.3s ease;
    stroke-width: 1.2px;
}

.tool-label {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1d1d1f;
    text-align: center;
    line-height: 1.3;
}

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

@media (hover: hover) {
    .tool-item:hover .tool-circle {
        border-color: #000000;
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    }

    .tool-item:hover .tool-label {
        color: #000000;
        font-weight: 600;
    }
}

.tool-item.disabled {
    cursor: default;
}

.tool-item.disabled .tool-circle {
    background: #fbfbfd;
    border-style: dashed;
}

@media (hover: hover) {
    .tool-item.disabled:hover .tool-circle {
        transform: none;
        border-color: #d2d2d7;
        box-shadow: none;
    }

    .tool-item.disabled:hover .tool-label {
        font-weight: 500;
    }
}

@media (max-width: 768px) {
    .tools-section {
        padding-left: 0;
        padding-right: 0;
        overflow: visible;
    }

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

    .tools-grid {
        gap: 20px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
    }

    .tools-grid::-webkit-scrollbar {
        display: none;
    }

    .tool-item {
        width: 90px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .tool-circle {
        width: 90px;
        height: 90px;
    }

    .tool-circle svg {
        width: 36px;
        height: 36px;
    }

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

/* === 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: 400px;
        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: 400px;
        /* 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;
}

/* Footer legal links right alignment */
@media (min-width: 768px) {
    .footer-legal-link {
        margin-left: auto !important;
    }
}