/* --- DIGITAL PASSPORT POPUP --- */
.pop-up-passport {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2500;
    padding: 20px;
    /* opacity: 0; */
    transition: opacity 0.4s ease;
}

.pop-up-passport.active {
    display: flex;
    opacity: 1;
}

.passport-container {
    background: #fff;
    width: 90%;

    max-width: 900px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    height: auto;
    max-height: 90vh;
    display: flex;
    overflow: hidden;
}

.passport-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    height: 100%;
    width: 100%;
}

.passport-form-side {
    flex: 1;
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
}

.passport-title {
    font-family: 'EB Garamond', serif;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 0.18em;

    margin-bottom: 30px;
    color: var(--dark);
}

.passport-steps {
    padding-left: 20px;
    margin-bottom: 40px;
}

.passport-steps li {
    font-family: 'Gilroy', sans-serif;
    letter-spacing: 0.06em;
    list-style: decimal;
    font-size: 14px;
    color: var(--text-grey);

    margin-bottom: 32px;
}

.passport-form .input-group {
    margin-bottom: 20px;
}

.passport-form input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 12px 0;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}
.passport-form input::placeholder {
    font-family: 'Gilroy', sans-serif;
    color: var(--text-grey);
}
.passport-form input:focus {
    border-bottom-color: #1a1a1a;
}

.passport-submit {
    font-family: 'Gilroy', sans-serif;

    margin-top: 20px;
    width: 100%;
    background: #262626;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.3s;
}

.passport-submit:hover {
    background: #000;
}

.passport-image-side {
    background: #f0f0f0;
    height: 100%;
}

.passport-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pop-up-passport .pop-up-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}
.img-mobile {
    display: none;
}
/* --- АНИМИРОВАННОЕ ПОЯВЛЕНИЕ ПРИВЕТСТВИЯ --- */

.passport-stage-welcome-full.active-welcome {
    display: block;
    filter: blur(0px) brightness(1);
}

.passport-stage-welcome-full {
    position: fixed; /* Фиксируем на экране */
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 80%;
    height: auto;
    z-index: 3000; /* Выше чем у первого попапа */
    display: none; /* Скрыто по умолчанию */

    filter: blur(10px) brightness(0.6);
    transition: filter 0.8s ease-out;
}

.passport-stage-welcome-full.active-welcome {
    filter: blur(0px) brightness(1);
}

.welcome-full-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.welcome-full-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 60px 50px;
}

.welcome-full-text-wrap {
    width: 100%;
    max-width: 450px;
}

.welcome-full-text-wrap > * {
    color: #fff;
    opacity: 0;
    transform: translateY(-20px);
}

/* Анимация для последовательного появления текста */
.passport-stage-welcome-full.active-welcome .welcome-full-text-wrap > * {
    animation: fadeInDown 0.6s ease-out forwards;
}

.welcome-full-title {
    animation-delay: 0.3s;
}
.welcome-full-subtitle {
    animation-delay: 0.5s;
}
.welcome-full-desc {
    animation-delay: 0.7s;
}
.welcome-full-submit {
    animation-delay: 0.9s;
}

.welcome-full-title {
    font-family: 'EB Garamond', serif;

    font-size: 32px;
    letter-spacing: 0.22em;

    margin-bottom: 25px;
}

.welcome-full-subtitle {
    font-size: 16px;
    letter-spacing: 0.06em;

    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: 'Gilroy', sans-serif;
}

.welcome-full-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.06em;

    margin-bottom: 40px;
    font-family: 'Gilroy', sans-serif;
}

/* Белая кнопка */
.welcome-full-submit {
    font-family: 'Gilroy', sans-serif;
    letter-spacing: 0.06em;

    width: 100%;
    max-width: 250px;
    background: #fff;
    color: #262626;
    border: 1px solid #262626;
    padding: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.welcome-full-submit:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* Описание анимации появления */
@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0); /* Текст опускается на место */
    }
}
.pop-up-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
    transition: opacity 0.3s ease;
}

.pop-up-overlay.active {
    display: block;
}

/*  */
/*  */
/* ============================================
   АДАПТИВНЫЕ СТИЛИ (МЕДИА-ЗАПРОСЫ)
   ============================================ */
@media (max-width: 1100px) {
    .hero-watch-img {
        transform: translateY(0);
    }
}

@media (max-width: 956px) {
    .hero-watch-img img {
        min-width: 200px;
        width: 200px;
    }

    .hero-watch-img-dial {
        width: 170px !important;
        height: 170px !important;
    }

    .hero-title {
        font-size: 32px;
    }

    .dial-thumb img {
        width: 94px;
        height: 94px;
    }

    .dial-thumb-label {
        font-size: 10px;
    }

    .hero-content-change {
        padding-bottom: 32px;
    }

    .deal-label {
        font-size: 18px;
    }

    .deal-text,
    .tag {
        font-size: 14px;
    }

    .deal-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-anatomy .container {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .anatomy-right {
        height: 280px;
    }

    .section-artistry {
        padding: 50px 0;
    }

    .artistry-grid,
    .artistry-grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .section-specs {
        padding: 50px 0;
    }

    .specs-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .commitment {
        padding: 70px 0;
    }

    .tryon-container {
        padding: 50px 40px;
    }

    .pop-up {
        width: 540px;
    }

    .pop-up-title {
        font-size: 24px;
        margin-bottom: 0;
    }

    .pop-up-save {
        width: 530px;
    }

    .pop-up-watch-preview img {
        height: 414px;
    }

    .save-dial {
        width: 210px !important;
        height: 210px !important;
    }

    .tool-btn img {
        height: 24px;
        width: 24px;
    }
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .header_nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #0a0d0e;
        flex-direction: column;
        padding: 130px 20px;
        transition: 0.4s;
        align-items: flex-start;
    }

    .header_nav {
        align-items: flex-start;
    }

    .card_img-wrapp {
        display: none;
    }

    .header_logo,
    .header_lang {
        position: relative;
        z-index: 1;
    }

    .mega-menu-desktop {
        display: none !important;
    }

    .mobile-subnav.active {
        display: block;
    }

    .mega-menu,
    .resources-menu {
        display: none !important;
    }

    .container.mega-menu-desktop {
        gap: 40px;
    }

    .dropbtn {
        font-size: 24px;
        padding: 10px 0;
        width: 100%;
        justify-content: space-between;
    }

    body.no-scroll {
        overflow: hidden;
        height: 100vh;
        position: fixed;
        width: 100%;
    }

    .header_nav-list.open {
        right: 0;
    }

    .header_nav-list {
        flex-direction: column;
        width: 100%;
        gap: 30px;
    }

    .header_nav-list-item-link,
    .dropbtn {
        font-size: 20px;
        letter-spacing: 0.1em;
    }

    .mega-menu,
    .resources-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        background: none;
        padding: 20px 0 0 20px;
        border: none;
        margin-top: 10px;
    }

    .mega-menu.active,
    .resources-menu.active {
        display: block;
    }

    .burger.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .burger.open span:nth-child(2) {
        transform: rotate(-45deg);
    }

    .text-main {
        top: 140px;
    }

    .text-main-title {
        font-size: 48px;
    }

    .text-title {
        margin-bottom: 72px;
    }

    .btn-outline {
        font-size: 14px;
    }

    .footer_logo {
        height: 55px;
    }

    .footer_text,
    .footer_title,
    .footer_list a,
    .footer_contact-info p,
    .footer_contact-info a {
        font-size: 8.5px;
    }

    .footer {
        padding: 48px 0;
    }

    .footer_top {
        margin-bottom: 69px;
    }

    .footer_copy,
    .footer_legal a {
        font-size: 7.5px;
    }

    .footer_socials img {
        width: 12px;
        height: 12px;
    }

    .commitment__title {
        font-size: 24px;
    }

    .commitment-content-header {
        margin-bottom: 32px;
    }

    .commitment {
        padding: 50px 0;
    }

    .commitment__subtitle {
        white-space: nowrap;
        width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .commitment__image {
        height: 350px;
    }

    .section-model-summary {
        padding: 70px 0;
    }
    .stauf-h1-garamond {
        font-size: 24px;
        margin-bottom: 24px;
    }
    .spec-label,
    .spec-value {
        font-size: 16px;
        flex: none;
    }
    .spec-list li {
        flex-direction: column;
    }
    .stauf-p-garamond {
        font-size: 24px;
    }
    .section-origins {
        padding-top: 50px;
    }

    .page-info {
        height: 354px;
    }

    .page_info-text-desck {
        font-size: 18px;
    }

    .page_info-text {
        width: 250px;
    }
}

@media (max-width: 760px) {
    .welcome-full-content {
        padding: 40px;
    }
    .welcome-full-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .welcome-full-subtitle {
        font-size: 14px;
    }
    .passport-form-side {
        padding: 24px;
    }
    .passport-flex {
        grid-template-columns: 2fr 1fr;
    }
    .passport-title {
        font-size: 14px;
        margin-bottom: 33px;
    }
    .passport-steps li,
    .passport-form input {
        font-size: 10px;
        margin-bottom: 22px;
    }
    .passport-form .input-group {
        margin-bottom: 0;
    }
    .passport-submit {
        font-size: 11px;
    }
    .section-origins h2 {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .pop-up {
        width: 300px;
        padding: 24px;
    }

    #splide-popup {
        height: 300px;
    }

    #splide-popup .splide__track {
        height: 100%;
    }

    #splide-popup .splide__track img {
        object-fit: cover;
    }

    .pop-up-save {
        width: 300px;
    }

    .pop-up-watch-preview img {
        height: 300px;
    }

    .save-dial {
        width: 150px !important;
        height: 150px !important;
    }

    .section-anatomy .container,
    .section-specs .container {
        grid-template-columns: 1fr;
    }

    .specs-right.specs-right-mob {
        display: block;
        height: 500px;
        margin-bottom: 32px;
    }

    .specs-right img {
        object-fit: contain;
    }

    .specs-right {
        display: none;
    }

    .tryon-container {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .tryon-visual {
        order: 1;
        height: 222px;
    }

    .tryon-content {
        padding: 0 15px;
    }
    .summary-grid {
        grid-template-columns: 1fr;
    }
    .summary-image {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 530px) {
    .header_logo-link {
        height: 40px;
    }

    .text-main {
        top: 170px;
    }

    .text-main-title {
        font-size: 30px;
        width: 300px;
    }

    .splide__pagination__page {
        width: 21px !important;
        height: 2px !important;
    }

    .splide__pagination {
        margin-top: 32px !important;
    }

    .commitment__subtitle {
        width: 300px;
    }

    .commitment__image {
        height: 500px;
    }

    .footer_top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer_col.footer_col-info {
        display: none;
    }

    .footer_col.footer_col-info.footer_col-info-mob {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer_text,
    .footer_title,
    .footer_list a,
    .footer_contact-info p,
    .footer_contact-info a {
        font-size: 16px;
    }

    .footer_title {
        margin-bottom: 16px;
    }

    .footer_top {
        margin-bottom: 56px;
    }

    .footer_bottom {
        flex-direction: column;
        gap: 12px;
    }

    .footer_copy,
    .footer_legal a {
        font-size: 14px;
    }

    .footer_socials img {
        width: 24px;
        height: 24px;
    }

    .hero-left {
        padding: 0;
        padding-bottom: 12px;
    }

    .pop-up-container {
        flex-direction: column-reverse;
    }

    .pop-up-text-side {
        padding: 12px;
        height: 300px;
    }

    .pop-up-image-side {
        height: 200px;
    }

    .pop-up-info .pop-up-close {
        top: 10px;
    }

    .pop-up-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .pop-up-scroll-content p {
        font-size: 14px;
    }

    .pop-up-container {
        position: relative;
    }

    .pop-up-passport {
        padding: 16px;
        align-items: center;
        justify-content: center;
    }

    .passport-container {
        width: 100%;
        max-width: 380px;
        max-height: calc(100vh - 32px);
        overflow-y: auto;
    }

    .passport-flex {
        grid-template-columns: 1fr;
    }

    .passport-form-side {
        order: 1;
        padding: 24px 20px;
    }

    .passport-image-side {
        order: 0;
        height: 220px;
    }

    .img-desktop {
        display: none;
    }

    .img-mobile {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .passport-title {
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 20px;
    }

    .passport-steps {
        padding-left: 18px;
        margin-bottom: 16px;
    }

    .passport-steps li {
        font-size: 10px;
        line-height: 1.45;
        margin-bottom: 14px;
    }

    .passport-form .input-group {
        margin-bottom: 10px;
    }

    .passport-form input {
        font-size: 12px;
        padding: 10px 0;
    }

    .passport-submit {
        margin-top: 12px;
        font-size: 11px;
        padding: 13px;
    }

    .pop-up-passport .pop-up-close {
        top: 12px;
        right: 12px;
    }

    .pop-up-passport .pop-up-close img {
        width: 18px;
        height: 18px;
    }

    .page-info {
        height: 100vh;
    }

    .page-info .container {
        align-items: flex-start;
        justify-content: flex-end;
        padding-bottom: 56px;
    }

    .page_info-text {
        width: 100%;
    }

    .page_info-text .btn-white {
        width: 100%;
    }

    .page-info-stauf {
        height: 159px;
        top: auto;
        bottom: 125px;
        left: 0;
    }
}

/* ============================================
   HOVER-ЭФФЕКТЫ ТОЛЬКО ДЛЯ УСТРОЙСТВ С МЫШЬЮ (ДЕСКТОП)
   ============================================ */
@media (hover: hover) and (pointer: fine) {
    .btn:hover {
        background-color: #ffffff;
        border-color: var(--bg-btn);
        color: var(--bg-btn);
    }

    .btn-outline:hover {
        background: var(--bg-btn);
        color: var(--text);
    }

    .featured-content-card:hover .featured-content-card-img {
        scale: 1.1;
    }

    .featured-content-card:hover .btn-outline {
        background: var(--bg-btn);
        color: var(--text);
    }

    .footer_list a:hover,
    .footer_contact-info a:hover {
        color: var(--text);
    }
    .btn-white:hover {
        background: var(--bg-btn);
        color: var(--text);
    }
}
