/* =====================================================
SELFISTUDIOS - UNIFIED STYLE.CSS
Global + Header + Footer + Home + About + Devices + Auth + Profile + Upload + Photo
===================================================== */

/* =====================================================
01 - RESET / GLOBAL
===================================================== */

:root {
    --ss-black: #111;
    --ss-dark: #1d1d1f;
    --ss-gray: #6e6e73;
    --ss-soft-gray: #8b8b90;
    --ss-line: #ececec;
    --ss-line-soft: #f1f1f1;
    --ss-bg: #f5f5f5;
    --ss-bg-soft: #ffffff;
    --ss-bg-muted: #f5f5f5;
    --ss-radius-sm: 18px;
    --ss-radius-md: 28px;
    --ss-radius-lg: 34px;
    --ss-radius-xl: 44px;
    --ss-shadow-soft: 0 10px 30px rgba(0, 0, 0, .05);
    --ss-shadow-card: 0 20px 60px rgba(0, 0, 0, .07);
    --ss-container: 1440px;
    --ss-pad: 7vw;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}

html,
body {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: var(--ss-bg);
    color: var(--ss-black);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    touch-action: pan-y;
}

img,
video {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

main {
    width: 100%;
    background: var(--ss-bg);
}

html,
body,
main,
.page-content,
.about-page,
.profile-page,
.upload-page,
.home-page-full-hero {
    background: var(--ss-bg);
}

/* =====================================================
02 - GENERAL LAYOUT
===================================================== */

.page-content,
.about-page,
.profile-page,
.upload-page {
    width: 100%;
    background: var(--ss-bg);
}

.page-content {
    padding-top: 52px;
    padding-bottom: 80px;
}

.home-container,
.about-container,
.upload-container,
.footer-container,
.header-container {
    width: 100%;
    max-width: var(--ss-container);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--ss-pad);
    padding-right: var(--ss-pad);
}

.container {
    max-width: var(--ss-container);
}

.section-mini-title,
.about-kicker,
.editorial-label,
.final-overline,
.home-final-mini,
.concept-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 1px;
    color: var(--ss-soft-gray);
}

.section-title {
    max-width: 820px;
    margin-bottom: 16px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 700;
}

.section-desc {
    max-width: 720px;
    font-size: 17px;
    line-height: 1.85;
    color: var(--ss-gray);
}

/* =====================================================
03 - HEADER / NAVBAR
===================================================== */

.site-header {
    position: relative;
    width: 100%;
    z-index: 5000;

    background: #f5f5f5;
    border-bottom: 1px solid var(--ss-line);
}

.custom-navbar {
    width: 100%;
    height: 64px;
    min-height: 64px;
    padding: 0;
    background: transparent !important;
    border: 0;
    box-shadow: none;
}

.header-container {
    height: 64px;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 54px;
    min-width: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.navbar-logo {
    height: 31px;
    width: auto;
    object-fit: contain;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.desktop-link,
.desktop-menu .nav-link {
    color: var(--ss-black) !important;
    font-size: 16px;
    font-weight: 600;
    padding: 0 !important;
    line-height: 1;
    transition: opacity .2s ease;
}



.desktop-dropdown-icon {
    font-size: 11px;
    color: var(--ss-black) !important;
    opacity: .55;
}

.desktop-auth-area {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.desktop-auth-pill {
    min-height: 44px;
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
}

.desktop-login-btn,
.desktop-logout-btn,
.desktop-location-btn {
    background: #fff;
    color: var(--ss-black) !important;
    border: 1.5px solid var(--ss-black);
}

.desktop-register-btn,
.desktop-profile-btn {
    background: var(--ss-black);
    color: #fff !important;
    border: 1.5px solid var(--ss-black);
}



.navbar-toggler {
    border: none !important;
    background: transparent;
    padding: 0;
    box-shadow: none !important;
}

.hamburger-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
}

.hamburger-wrapper span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--ss-black);
}

/* Desktop dropdown */

.technology-dropdown {
    width: 340px;
    padding: 14px;
    border-radius: var(--ss-radius-md);
    background: #fff;
    border: 1px solid var(--ss-line-soft) !important;
    box-shadow: 0 16px 50px rgba(0, 0, 0, .10);
}

.tech-dropdown-title {
    font-size: 15px;
    font-weight: 700;
}

.tech-dropdown-desc {
    margin-top: 3px;
    font-size: 12px;
    color: #888;
}

.tech-dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 18px;
    color: var(--ss-black);
    text-decoration: none;
    background: transparent;
}

.tech-dropdown-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.tech-dropdown-img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block;
    background: transparent;
}

.mobile-submenu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-radius: 0;
    color: var(--ss-black);
    text-decoration: none;
    background: transparent;
}

.mobile-submenu-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.mobile-submenu-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    background: transparent;
}


/* =====================================================
04 - MOBILE DRAWER
===================================================== */

.apple-menu {
    width: min(88vw, 390px) !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    z-index: 99999 !important;
    border: 0 !important;
    background: #fff !important;
    border-radius: 0 !important;
}

.mobile-drawer-header {
    height: 74px;
    padding: 0 24px;
    border-bottom: 1px solid #efefef;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.mobile-close-btn {
    padding: 0;
    border: 0;
    background: transparent !important;
    border-radius: 0;
    width: auto;
    height: auto;
    box-shadow: none;
}

.mobile-close-btn i {
    font-size: 30px;
    color: var(--ss-black);
    line-height: 1;
}

.mobile-drawer-body {
    height: calc(100dvh - 74px);
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-list {
    padding: 0;
    margin: 10px 0 0;
}

.mobile-menu-item {
    width: 100%;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-bottom: 1px solid var(--ss-line-soft);
    background: none;
    padding: 18px 0;
    color: var(--ss-black);
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
}

.mobile-menu-item i {
    font-size: 14px;
    color: #999;
}

.mobile-submenu {
    padding: 14px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}




.mobile-submenu-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ss-black);
}

.mobile-submenu-desc {
    margin-top: 2px;
    font-size: 12px;
    color: #888;
}

.mobile-auth-section {
    margin-top: auto;
    padding-top: 24px;
    padding-bottom: max(30px, env(safe-area-inset-bottom));
}

.mobile-auth-buttons {
    display: flex;
    gap: 10px;
}

.mobile-auth-btn,
.mobile-auth-single-btn,
.mobile-location-btn {
    min-height: 50px;
    height: 50px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.mobile-auth-btn {
    flex: 1;
}

.login-btn,
.logout-btn,
.mobile-location-btn {
    background: #fff;
    color: var(--ss-black);
    border: 1.5px solid var(--ss-black);
}

.register-btn,
.mobile-auth-single-btn {
    background: var(--ss-black);
    color: #fff;
    border: 1.5px solid var(--ss-black);
}

.logout-btn,
.mobile-location-btn {
    width: 100%;
    margin-top: 10px;
}

/* =====================================================
05 - FOOTER
===================================================== */

.main-footer {
    background: var(--ss-bg-muted);
    border-top: 1px solid #e5e5e5;
    padding: 38px 0 26px;
    margin-top: 0;
}

.footer-container {
    max-width: none;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo-link {
    width: fit-content;
    display: inline-flex;
}

.footer-logo {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--ss-black);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .2s ease;
}


.footer-divider {
    width: 100%;
    height: 1px;
    background: #dcdcdc;
    margin: 24px 0;
}

.footer-middle {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.footer-copy,
.footer-address {
    font-size: 14px;
    color: #8b8b8b;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-policy-links a {
    font-size: 14px;
    color: #8b8b8b;
    text-decoration: none;
    transition: color .2s ease;
}


.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--ss-black);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: transform .2s ease, opacity .2s ease;
}



/* =====================================================
06 - HOME PAGE
===================================================== */
.page-content.home-page-full-hero {
    padding-top: 0;
    padding-bottom: 0;
    background: var(--ss-bg);
}

.home-page-full-hero {
    width: 100%;
    overflow-x: hidden;
    background: var(--ss-bg);
}

.home-page-full-hero .home-container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.home-page-full-hero .hero-wrapper {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: transparent;
}

.home-page-full-hero .hero-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: transparent;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.home-page-full-hero .hero-track {
    display: flex;
    transition: transform .55s cubic-bezier(.77, 0, .18, 1);
    will-change: transform;
    touch-action: pan-y;
}

.home-page-full-hero .hero-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.home-page-full-hero .hero-slide picture {
    display: block;
    width: 100%;
}

.home-page-full-hero .hero-slide img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: unset;
    background: transparent;
}

.home-page-full-hero .hero-soft-overlay {
    display: none !important;
}

.home-page-full-hero .hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 50%;
    z-index: 25;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.home-page-full-hero .hero-prev {
    left: 18px;
}

.home-page-full-hero .hero-next {
    right: 18px;
}

.home-page-full-hero .hero-dots {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    z-index: 26;
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-page-full-hero .hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .36);
    transition: all .25s ease;
}

.home-page-full-hero .hero-dot.active {
    width: 34px;
    background: #fff;
}

.home-page-full-hero .home-content-inner {
    width: 100%;
    padding-left: var(--ss-pad);
    padding-right: var(--ss-pad);
    padding-top: 64px;
    background: var(--ss-bg);
}

@media (max-width: 768px) {

    .home-page-full-hero .hero-wrapper {
        width: 100%;
        height: auto;
        min-height: 0;
        overflow: hidden;
    }

    .home-page-full-hero .hero-slider {
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    .home-page-full-hero .hero-track {
        display: flex;
    }

    .home-page-full-hero .hero-slide {
        min-width: 100%;
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    .home-page-full-hero .hero-slide picture {
        display: block;
        width: 100%;
    }

    .home-page-full-hero .hero-slide img {
        display: block;
        width: 100%;
        height: auto;
        max-width: 100%;

        object-fit: contain;
        object-position: center center;
    }

    .home-page-full-hero .hero-nav {
        display: none;
    }

    .home-page-full-hero .hero-dots {
        bottom: 18px;
    }

}

/* Experience video */

.experience-showcase {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    padding: 60px;
    margin: 64px 0 56px;
    border-radius: 42px;
    background: var(--ss-bg-soft);
    border: 1px solid var(--ss-line-soft);
}

.experience-video-side {
    display: flex;
    justify-content: center;
}

.experience-showcase-video {
    width: 100%;
    max-width: 320px;
    border-radius: 28px;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
}

.experience-content-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-title {
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 700;
    margin-bottom: 24px;
}

.experience-desc {
    max-width: 700px;
    font-size: 18px;
    line-height: 1.9;
    color: var(--ss-gray);
    margin-bottom: 36px;
}

.experience-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.experience-feature {
    padding-top: 18px;
    border-top: 1px solid #e8e8e8;
}

.experience-feature strong {
    display: block;
    margin-bottom: 6px;
    font-size: 17px;
}

.experience-feature span {
    color: var(--ss-gray);
    font-size: 15px;
}

/* Info */

.info-showcase {
    margin-top: 0;
    margin-bottom: 56px;
}

.info-header,
.tech-header {
    margin-bottom: 32px;
}

.tech-big-title,
.info-header .tech-big-title {
    max-width: 780px;
    margin-bottom: 18px;
    font-size: clamp(32px, 3.2vw, 44px);
    line-height: 1;
    letter-spacing: -2px;
    font-weight: 700;
}

.tech-big-desc,
.info-header .tech-big-desc {
    max-width: 720px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--ss-gray);
}

.home-info-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.info-item {
    padding: 42px;
    border-radius: 30px;
    background: var(--ss-bg-soft);
    border: 1px solid var(--ss-line-soft);
}

.info-big {
    margin-bottom: 24px;
    font-size: 52px;
    line-height: 1;
    letter-spacing: -2px;
    font-weight: 700;
}

.info-title {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: -1px;
    font-weight: 700;
}

.info-text {
    font-size: 15px;
    line-height: 1.85;
    color: var(--ss-gray);
}

/* Concepts */

.tech-showcase {
    margin: 48px 0;
}

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

.concept-card {
    min-height: 320px;
    padding: 38px;
    border-radius: 34px;
    background: var(--ss-bg-soft);
    border: 1px solid var(--ss-line-soft);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}



.concept-label {
    margin-bottom: 22px;
}

.concept-title {
    margin-bottom: 18px;
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: -2px;
    font-weight: 700;
}

.concept-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ss-gray);
    margin-bottom: auto;
}

.concept-action {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    font-size: 14px;
    font-weight: 700;
}

.concept-card.featured {
    background: var(--ss-black);
    color: #fff;
}

.concept-card.featured .concept-label {
    color: rgba(255, 255, 255, .55);
}

.concept-card.featured .concept-desc {
    color: rgba(255, 255, 255, .72);
}

/* Editorial */

.editorial-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 20px;
    margin: 48px 0 80px;
}

.editorial-card {
    min-height: 420px;
    padding: 42px;
    border-radius: 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .25s ease, box-shadow .25s ease;
}


.editorial-card.dark {
    background: var(--ss-black);
    color: #fff;
}

.editorial-card.light {
    background: var(--ss-bg-soft);
    border: 1px solid var(--ss-line-soft);
}

.editorial-label {
    opacity: .6;
    margin-bottom: 20px;
}

.editorial-title {
    font-size: clamp(40px, 5vw, 62px);
    line-height: .98;
    letter-spacing: -3px;
    font-weight: 700;
}

.editorial-card.small .editorial-title {
    font-size: clamp(32px, 3.4vw, 42px);
    line-height: 1.05;
}

.editorial-desc {
    margin-top: 20px;
    max-width: 520px;
    font-size: 17px;
    line-height: 1.8;
    opacity: .72;
}

.editorial-action {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    opacity: .8;
}

.home-final {
    text-align: center;
    padding-top: 26px;
    padding-bottom: 34px;
    margin: 0;
    border-top: 1px solid var(--ss-line-soft);
}

.home-final-mini {
    margin-bottom: 18px;
    letter-spacing: 3px;
}

.home-final-text {
    max-width: 980px;
    margin: 0 auto;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -4px;
    font-weight: 700;
    color: var(--ss-black);
}

/* =====================================================
07 - PRODUCT / SCROLL CARDS
===================================================== */

.horizontal-scroll {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.scroll-card {
    flex: 0 0 auto;
    width: 340px;
    border-radius: 34px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--ss-line-soft);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.card-image {
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: transparent;
}

.card-image::after {
    display: none;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-content {
    padding: 24px;
    background: #fff;
}

.card-title {
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -1px;
    font-weight: 700;
    color: var(--ss-black);
}

.card-text {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ss-gray);
}

.card-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--ss-black);
}

.card-badge {
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--ss-black);
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
}

/* =====================================================
08 - DEVICES / LOCATIONS PAGE
===================================================== */

.locations-page-title,
.page-title {
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -1px;
    font-weight: 700;
}

.locations-page-desc,
.page-desc {
    margin-top: 8px;
    font-size: 15px;
    color: var(--ss-gray);
}

.input-group-custom {
    position: relative;
    margin-bottom: 14px;
}

.input-group-custom label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ss-black);
}

.input-group-custom input,
.input-group-custom select {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid var(--ss-line);
    background: var(--ss-bg-soft);
    outline: none;
    font-size: 15px;
    color: var(--ss-black);
    transition: border-color .2s ease, background .2s ease;
}

.input-group-custom input:focus,
.input-group-custom select:focus {
    border-color: var(--ss-black);
    background: #fff;
}

.container .input-group-custom label {
    position: absolute;
    top: 6px;
    left: 12px;
    z-index: 2;
    margin: 0;
    padding: 0 4px;
    background: #fff;
    color: var(--ss-gray);
    font-size: 11px;
    font-weight: 500;
}

.container .input-group-custom input,
.container .input-group-custom select {
    height: 50px;
    padding: 17px 12px 6px;
    border-radius: 16px;
    background: #fff;
    font-size: 14px;
}

.tab-container {
    display: flex;
    margin-bottom: 14px;
    border: 1px solid var(--ss-line);
    border-radius: 999px;
    padding: 4px;
    background: var(--ss-bg-soft);
}

.tab-btn {
    flex: 1;
    border: none;
    border-radius: 999px;
    background: transparent;
    padding: 11px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--ss-black);
    line-height: 1;
    font-size: 14px;
    font-weight: 600;
}

.tab-btn.active {
    background: var(--ss-black);
    color: #fff;
}

.content-wrapper {
    display: flex;
    gap: 18px;
}

.left-panel {
    width: 40%;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 4px;
}

.right-panel {
    width: 60%;
}

.timeline-wrapper {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 18px;
    top: 0;
    height: 100%;
    width: 2px;
    background: #e5e5e7;
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 18px;
}

.timeline-icon {
    position: absolute;
    left: 9px;
    top: 14px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #d2d2d7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--ss-gray);
    z-index: 2;
}

.device-card {
    background: #fff;
    border-radius: 20px;
    padding: 16px;
    border: 1px solid var(--ss-line);
    position: relative;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}


.device-card.active {
    border-color: var(--ss-black);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
}

.device-name {
    font-weight: 700;
    padding-right: 110px;
}

.device-city {
    font-size: 12px;
    color: var(--ss-gray);
    margin-top: 3px;
}

.device-address {
    font-size: 13px;
    margin-top: 7px;
    color: var(--ss-dark);
    padding-right: 4px;
    line-height: 1.55;
}

.direction-link {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--ss-black);
    text-decoration: none;
    font-weight: 700;
}

.map-box,
.map-loading {
    height: 520px;
    width: 100%;
    background: var(--ss-bg-muted);
    border: 1px solid var(--ss-line);
    border-radius: 24px;
    overflow: hidden;
}

.map-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 14px;
    padding: 12px 14px;
    background: var(--ss-bg-soft);
    border: 1px solid var(--ss-line);
    border-radius: 18px;
}

.use-location {
    width: fit-content;
    margin-top: -4px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--ss-gray);
    font-size: 13px;
    cursor: pointer;
}

/* =====================================================
09 - DIGITAL PHOTO PAGE
===================================================== */

.photo-preview {
    max-width: min(92vw, 520px);
    max-height: 72vh;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .10);
    cursor: zoom-in;
    object-fit: contain;
}

.action-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-pill {
    border-radius: 999px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    font-weight: 700 !important;
}

.delete-text {
    font-size: 14px;
    color: var(--ss-gray);
}

.yes-no-row {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.barcode-wrapper {
    display: flex;
    justify-content: center;
}

.barcode-card {
    min-width: 320px;
    padding: 28px 32px;
    border-radius: 24px;
    background: #fff;
    text-align: center;
    border: 1px solid var(--ss-line-soft);
    box-shadow: var(--ss-shadow-soft);
}

.barcode-title {
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 700;
}

.barcode-code {
    margin-bottom: 16px;
    color: var(--ss-black);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

.barcode-svg-wrap {
    display: flex;
    justify-content: center;
}

.image-modal,
.modal {
    display: none;
    position: fixed;
    z-index: 100000;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, .86);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.image-modal img,
.modal-content {
    max-width: 94vw;
    max-height: 88vh;
    margin: auto;
    border-radius: 16px;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: #fff;
    font-size: 38px;
    font-weight: 300;
    cursor: pointer;
}

/* =====================================================
10 - ABOUT PAGE
===================================================== */

.about-page {
    padding: 64px 0 80px;
    color: var(--ss-black);
}

.about-hero {
    max-width: 1080px;
    margin-bottom: 56px;
}

.about-kicker {
    margin-bottom: 22px;
}

.about-title {
    max-width: 1000px;
    margin: 0 0 32px;
    color: var(--ss-black);
    font-size: clamp(54px, 7vw, 92px);
    line-height: .92;
    letter-spacing: -6px;
    font-weight: 700;
}

.about-title span {
    color: var(--ss-soft-gray);
}

.about-hero-text {
    max-width: 740px;
    font-size: 23px;
    line-height: 1.75;
    color: #5f5f64;
}

.about-manifest {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 56px;
}

.about-manifest-card {
    min-height: 560px;
    padding: 42px;
    border-radius: 44px;
    background: var(--ss-black);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.manifest-small {
    margin-bottom: auto;
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.manifest-title {
    margin-bottom: 24px;
    font-size: 54px;
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 700;
}

.manifest-text {
    color: rgba(255, 255, 255, .72);
    font-size: 18px;
    line-height: 1.8;
}

.about-flow {
    padding: 20px 0 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-flow p {
    max-width: 720px;
    margin: 0;
    padding: 22px 0;
    border-bottom: 1px solid #eee;
    color: #3f3f43;
    font-size: 25px;
    line-height: 1.75;
    letter-spacing: -.5px;
}

.about-flow p:first-child {
    border-top: 1px solid #eee;
}

.about-memory-panel {
    margin-bottom: 56px;
    padding: 46px;
    border-radius: 44px;
    background: var(--ss-bg-soft);
    border: 1px solid var(--ss-line-soft);
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}

.memory-title {
    max-width: 760px;
    font-size: 62px;
    line-height: 1;
    letter-spacing: -4px;
    font-weight: 700;
}

.memory-list {
    display: grid;
    gap: 14px;
}

.memory-list div {
    padding: 18px 22px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #eee;
    color: var(--ss-black);
    font-size: 17px;
    font-weight: 600;
}

.about-brand {
    margin-bottom: 56px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.about-brand h2 {
    max-width: 620px;
    margin: 0;
    font-size: 64px;
    line-height: 1;
    letter-spacing: -4px;
    font-weight: 700;
}

.about-brand-right p {
    max-width: 760px;
    margin: 0 0 28px;
    color: #4b4b4f;
    font-size: 23px;
    line-height: 1.85;
}

.about-final-card {
    padding: 54px;
    border-radius: 50px;
    background: var(--ss-black);
    color: #fff;
}

.final-overline {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .55);
}

.final-title {
    max-width: 980px;
    margin-bottom: 34px;
    font-size: 62px;
    line-height: 1.05;
    letter-spacing: -3px;
    font-weight: 700;
}

.final-text {
    max-width: 760px;
    margin-bottom: 44px;
    color: rgba(255, 255, 255, .72);
    font-size: 21px;
    line-height: 1.85;
}

.final-sign {
    font-size: 18px;
    font-weight: 700;
}

.final-sign span {
    color: rgba(255, 255, 255, .55);
}

/* =====================================================
11 - AUTH
===================================================== */

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at top right,
            rgba(0, 0, 0, .03),
            transparent 28%),
        var(--ss-bg);
}

.auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(40px, env(safe-area-inset-top)) 24px max(40px, env(safe-area-inset-bottom));
}

.auth-card {
    width: 100%;
    max-width: 460px;
    padding: 42px;
    border-radius: 42px;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(18px);
    border: 1px solid var(--ss-line-soft);
    box-shadow: var(--ss-shadow-card);
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 34px;
}

.auth-logo img {
    height: 54px;
    width: auto;
    object-fit: contain;
}

.auth-title {
    margin-bottom: 14px;
    text-align: center;
    color: var(--ss-black);
    font-size: 42px;
    line-height: 1;
    letter-spacing: -2px;
    font-weight: 700;
}

.auth-desc {
    max-width: 320px;
    margin: 0 auto 34px;
    text-align: center;
    color: var(--ss-gray);
    font-size: 16px;
    line-height: 1.8;
}

.auth-button {
    width: 100%;
    height: 60px;
    margin-top: 10px;
    border: 0;
    border-radius: 20px;
    background: var(--ss-black);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}



.auth-bottom {
    margin-top: 28px;
    text-align: center;
    color: #7d7d82;
    font-size: 14px;
    line-height: 1.7;
}

.auth-bottom a {
    margin-left: 5px;
    color: var(--ss-black);
    font-weight: 700;
    transition: opacity .2s ease;
}

.auth-swal-popup {
    border-radius: 30px !important;
    padding: 26px !important;
}

.auth-swal-button {
    border-radius: 999px !important;
    padding: 12px 30px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}

/* =====================================================
12 - PROFILE PAGE
===================================================== */

.profile-page {
    padding: 64px 0 90px;
}

.profile-card {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--ss-line);
    border-radius: 34px;
    padding: 40px;
    box-shadow: var(--ss-shadow-soft);
}

.profile-title {
    font-size: 36px;
    line-height: 1;
    letter-spacing: -2px;
    font-weight: 700;
    margin-bottom: 10px;
}

.profile-subtitle {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ss-gray);
    margin-bottom: 28px;
}

.profile-grid {
    display: grid;
    gap: 14px;
}

.profile-item {
    padding: 18px 20px;
    border-radius: 22px;
    background: var(--ss-bg-soft);
    border: 1px solid var(--ss-line-soft);
}

.profile-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--ss-soft-gray);
    margin-bottom: 8px;
}

.profile-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--ss-black);
    word-break: break-word;
}

/* =====================================================
13 - SUCCESS PAGE
===================================================== */

.success-container {
    min-height: calc(100vh - 72px);
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--ss-bg);
}

.checkmark {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: var(--ss-black);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin-bottom: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.success-text {
    max-width: 620px;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 700;
    margin-bottom: 18px;
}

.sub-text {
    max-width: 520px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--ss-gray);
}

/* =====================================================
14 - UPLOAD PAGE
===================================================== */

.upload-page {
    min-height: calc(100vh - 72px);
    padding: 56px 0 90px;
    background:
        radial-gradient(circle at top right,
            rgba(0, 0, 0, .035),
            transparent 30%),
        var(--ss-bg);
}

.upload-container {
    max-width: 1040px;
}

.upload-header {
    text-align: center;
    margin-bottom: 32px;
}

.upload-title {
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 700;
    margin-bottom: 14px;
}

.upload-desc {
    max-width: 640px;
    margin: 0 auto;
    color: var(--ss-gray);
    font-size: 17px;
    line-height: 1.75;
}

.top-upload-progress {
    padding: 24px;
    border-radius: 28px;
    background: var(--ss-bg-soft);
    border: 1px solid var(--ss-line-soft);
    margin-bottom: 22px;
}

.top-upload-progress-info,
.top-upload-progress-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.top-upload-progress-title {
    font-size: 18px;
    font-weight: 700;
}

.top-upload-progress-sub {
    margin-top: 4px;
    font-size: 13px;
    color: var(--ss-gray);
}

.top-upload-progress-badge {
    min-width: 72px;
    height: 44px;
    border-radius: 999px;
    background: var(--ss-black);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.top-upload-progress-bar {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: #e7e7e7;
    margin: 20px 0 14px;
}

.top-upload-progress-fill {
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--ss-black);
    transition: width .25s ease;
}

.top-upload-progress-bottom {
    font-size: 13px;
    color: var(--ss-gray);
}

.upload-box {
    position: relative;
    min-height: 300px;
    border-radius: 36px;
    border: 1.5px dashed #d7d7d7;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}



.upload-glow {
    position: absolute;
    inset: auto -20% -45% -20%;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 0, 0, .055), transparent 62%);
    pointer-events: none;
}

.upload-center {
    position: relative;
    z-index: 2;
    min-height: 300px;
    padding: 42px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.upload-plus {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--ss-black);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
}

.upload-box-title {
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -1px;
    font-weight: 700;
    margin-bottom: 10px;
}

.upload-box-desc {
    max-width: 520px;
    text-align: center;
    font-size: 15px;
    line-height: 1.75;
    color: var(--ss-gray);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 22px;
}

.preview-card {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    background: var(--ss-bg-muted);
    border: 1px solid var(--ss-line-soft);
}

.preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .28), transparent 45%, rgba(0, 0, 0, .18));
    pointer-events: none;
}

.preview-index {
    position: absolute;
    left: 12px;
    top: 12px;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    color: var(--ss-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 17, 17, .86);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-wrap {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.submit-btn {
    min-width: 220px;
    height: 56px;
    border: 0;
    border-radius: 999px;
    background: var(--ss-black);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: opacity .2s ease, transform .2s ease;
}

.submit-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.submit-note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--ss-gray);
    text-align: center;
}

.upload-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, .64);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.upload-modal.active {
    display: flex;
}

.upload-modal-card {
    position: relative;
    width: min(92vw, 460px);
    padding: 38px;
    border-radius: 36px;
    background: #fff;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .22);
}

.upload-modal-glow {
    position: absolute;
    inset: -40% -20% auto;
    height: 240px;
    background: radial-gradient(circle, rgba(0, 0, 0, .055), transparent 65%);
    pointer-events: none;
}

.modal-icon-area {
    position: relative;
    z-index: 2;
    width: 86px;
    height: 86px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-loader-wrap,
.success-check {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-loader {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 5px solid #eee;
    border-top-color: var(--ss-black);
    animation: ssSpin 1s linear infinite;
}

.success-check {
    width: 76px;
    height: 76px;
    margin: auto;
    border-radius: 50%;
    background: var(--ss-black);
    color: #fff;
    font-size: 30px;
    opacity: 0;
    transform: scale(.88);
    transition: .25s ease;
}

.upload-modal.success .upload-loader-wrap {
    display: none;
}

.upload-modal.success .success-check {
    opacity: 1;
    transform: scale(1);
}

.upload-modal-title {
    position: relative;
    z-index: 2;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -1px;
    font-weight: 700;
    margin-bottom: 12px;
}

.upload-modal-desc {
    position: relative;
    z-index: 2;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ss-gray);
    margin-bottom: 24px;
}

.upload-modal-progress {
    position: relative;
    z-index: 2;
    height: 10px;
    border-radius: 999px;
    background: #e8e8e8;
    overflow: hidden;
    margin-bottom: 12px;
}

.upload-modal-progress-bar {
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--ss-black);
    transition: width .2s ease;
}

.upload-modal-count {
    position: relative;
    z-index: 2;
    font-size: 13px;
    color: var(--ss-gray);
    margin-bottom: 24px;
}

.modal-home-btn {
    display: none;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 54px;
    border: 0;
    border-radius: 999px;
    background: var(--ss-black);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.upload-modal.success .modal-home-btn {
    display: block;
}

@keyframes ssSpin {
    to {
        transform: rotate(360deg);
    }
}

/* =====================================================
15 - RESPONSIVE
===================================================== */

@media (max-width: 1200px) {
    :root {
        --ss-pad: 5vw;
    }

    .concept-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    :root {
        --ss-pad: 24px;
    }

    .header-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .header-left {
        gap: 0;
    }

    .desktop-menu,
    .desktop-auth-area {
        display: none !important;
    }

    .experience-showcase {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 24px;
        border-radius: 34px;
    }

    .experience-showcase-video {
        max-width: 260px;
    }

    .experience-title {
        font-size: 38px;
        line-height: 1.05;
        letter-spacing: -2px;
    }

    .experience-desc {
        font-size: 16px;
    }

    .home-info-strip,
    .editorial-grid,
    .content-wrapper,
    .about-manifest,
    .about-memory-panel,
    .about-brand {
        grid-template-columns: 1fr;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .left-panel,
    .right-panel {
        width: 100%;
    }

    .left-panel {
        max-height: none;
        overflow-y: visible;
    }

    .editorial-card.small .editorial-title {
        font-size: 32px;
    }

    .about-page,
    .profile-page,
    .upload-page {
        padding-top: 48px;
    }

    .about-title {
        letter-spacing: -3px;
    }

    .about-hero-text {
        font-size: 18px;
    }

    .about-manifest-card {
        min-height: 380px;
        padding: 34px 28px;
        border-radius: 34px;
    }

    .manifest-title,
    .memory-title,
    .about-brand h2,
    .final-title {
        font-size: 40px;
        line-height: 1.05;
        letter-spacing: -2px;
    }

    .about-flow {
        padding: 0;
    }

    .about-flow p {
        font-size: 19px;
        padding: 24px 0;
    }

    .about-memory-panel,
    .about-final-card {
        padding: 34px 28px;
        border-radius: 34px;
        gap: 34px;
    }

    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .custom-navbar,
    .header-container {
        height: 64px;
        min-height: 64px;
    }

    .navbar-logo {
        height: 28px;
    }

    .page-content {
        padding-top: 32px;
        padding-bottom: 56px;
    }

    .home-page-full-hero .hero-nav {
        display: none;
    }

    .home-page-full-hero .hero-dots {
        bottom: 24px;
    }

    .home-page-full-hero .home-content-inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .home-info-strip,
    .concept-grid {
        grid-template-columns: 1fr;
    }

    .concept-card {
        min-height: auto;
        padding: 30px 24px;
    }

    .concept-title {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .info-item,
    .editorial-card {
        padding: 30px 24px;
        border-radius: 30px;
    }

    .info-big {
        font-size: 42px;
    }

    .home-final {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .home-final-text {
        line-height: 1.08;
        letter-spacing: -2px;
    }

    .scroll-card {
        width: 280px;
    }

    .card-image {
        height: 360px;
        padding: 14px;
    }

    .map-box,
    .map-loading {
        height: 430px;
    }

    .device-name {
        padding-right: 0;
    }

    .footer-container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .footer-links {
        gap: 18px;
    }

    .footer-links a {
        font-size: 16px;
    }

    .footer-policy-links {
        gap: 16px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .auth-card,
    .profile-card,
    .upload-modal-card {
        padding: 30px 22px;
        border-radius: 30px;
    }

    .auth-logo img {
        height: 48px;
    }

    .auth-title {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .auth-desc {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .input-group-custom input,
    .auth-button {
        height: 56px;
    }

    .about-title {
        font-size: 54px;
        line-height: .98;
        letter-spacing: -2.5px;
    }

    .about-brand-right p {
        font-size: 18px;
    }

    .upload-title {
        letter-spacing: -2px;
    }

    .upload-box,
    .upload-center {
        min-height: 260px;
    }

    .top-upload-progress-info,
    .top-upload-progress-bottom {
        align-items: flex-start;
    }

    .preview-grid {
        gap: 12px;
    }
}

@media (max-width: 520px) {
    :root {
        --ss-pad: 20px;
    }

    .mobile-drawer-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .mobile-menu-item {
        font-size: 19px;
    }

    .experience-showcase {
        margin-top: 42px;
    }

    .experience-title,
    .tech-big-title,
    .editorial-title,
    .upload-title,
    .success-text {
        letter-spacing: -2px;
    }

    .preview-grid {
        grid-template-columns: 1fr;
    }

    .preview-card {
        aspect-ratio: 4 / 3;
    }

    .barcode-card {
        min-width: 0;
        width: 100%;
    }

    .footer-links,
    .footer-policy-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 420px) {

    .about-manifest-card,
    .about-memory-panel,
    .about-final-card,
    .concept-card,
    .info-item,
    .editorial-card {
        border-radius: 28px;
    }
}

/* ===================================
PRODUCT CARDS
=================================== */

.products-section {
    margin-bottom: 48px;
}

.products-scroll {
    display: flex;
    flex-wrap: nowrap;

    gap: 18px;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 8px 0 18px;

    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-scroll::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 340px;
    min-width: 340px;

    display: flex;
    flex-direction: column;

    text-decoration: none;

    background: #fafafa;

    border: 1px solid #ececec;

    border-radius: 28px;

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.product-card:hover {
    transform: translateY(-4px);

    border-color: #e3e3e3;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .06);
}

.product-image {
    height: 360px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: #fafafa;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    transition: transform .25s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-content {
    padding: 24px;
}

.product-name {
    font-size: 28px;
    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -.5px;

    color: #111;

    margin-bottom: 8px;
}

.product-desc {
    font-size: 16px;
    line-height: 1.7;

    color: #6e6e73;

    margin: 0;
}

/* TABLET */

@media (max-width:992px) {

    .product-card {
        flex: 0 0 250px;
        min-width: 250px;
    }

    .product-image {
        height: 200px;
    }

    .product-name {
        font-size: 20px;
    }
}

/* MOBILE */

@media (max-width:768px) {

    .products-scroll {
        gap: 14px;
    }

    .product-card {
        flex: 0 0 220px;
        min-width: 220px;

        border-radius: 24px;
    }

    .product-image {
        height: 170px;
        padding: 16px;
    }

    .product-content {
        padding: 16px;
    }

    .product-name {
        font-size: 18px;
    }

    .product-desc {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* ======================================================
   SELFISTUDIOS PRODUCTS PAGE
====================================================== */

.ss-products-page {
    background: #f5f5f7;
    padding: 40px 0 100px;
}

.ss-products-container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

/* ======================================================
   HERO
====================================================== */

.ss-products-hero {
    text-align: center;
    padding: 60px 0 90px;
}

.ss-products-kicker {
    display: inline-block;
    margin-bottom: 20px;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .18em;

    color: #8b8b90;
}

.ss-products-title {
    margin: 0;

    font-size: clamp(54px, 8vw, 110px);
    line-height: .92;

    letter-spacing: -.08em;
    font-weight: 800;
}

.ss-products-title span {
    display: block;
    color: #8b8b90;
}

.ss-products-desc {
    max-width: 760px;

    margin: 32px auto 0;

    font-size: 21px;
    line-height: 1.8;

    color: #6e6e73;
}

/* ======================================================
   PRODUCT BLOCK
====================================================== */

.ss-product-section {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;

    padding: 80px;

    margin-bottom: 28px;

    border-radius: 42px;

    text-decoration: none !important;

    transition: none !important;
}

.ss-product-reverse .ss-product-content {
    order: 2;
}

.ss-product-reverse .ss-product-image {
    order: 1;
}

/* ======================================================
   COLORS
====================================================== */

.ss-product-dark {
    background: #0c0c0c;
}

.ss-product-dark,
.ss-product-dark *,
.ss-product-dark:hover,
.ss-product-dark:hover * {
    color: #ffffff !important;
}

.ss-product-light {
    background: #ffffff;
}

.ss-product-light,
.ss-product-light *,
.ss-product-light:hover,
.ss-product-light:hover * {
    color: #111111 !important;
}

.ss-product-soft {
    background: #ece8e1;
}

.ss-product-soft,
.ss-product-soft *,
.ss-product-soft:hover,
.ss-product-soft:hover * {
    color: #111111 !important;
}

.ss-product-pink {
    background: #f8edf0;
}

.ss-product-pink,
.ss-product-pink *,
.ss-product-pink:hover,
.ss-product-pink:hover * {
    color: #111111 !important;
}

.ss-product-love {
    background: linear-gradient(135deg,
            #fff3f6,
            #f7d7e0);
}

.ss-product-love,
.ss-product-love *,
.ss-product-love:hover,
.ss-product-love:hover * {
    color: #111111 !important;
}

/* ======================================================
   CONTENT
====================================================== */
.ss-product-label {
    display: block;

    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;

    color: inherit;

    margin-bottom: 18px;

    text-transform: none;

    opacity: 1;
}

.ss-product-content h2 {
    margin: 0;

    font-size: clamp(42px, 5vw, 78px);
    line-height: .94;

    letter-spacing: -.06em;
    font-weight: 800;
}

.ss-product-content p {
    max-width: 560px;

    margin-top: 28px;

    font-size: 19px;
    line-height: 1.9;

    opacity: .75;
}

/* ======================================================
   IMAGE
====================================================== */

.ss-product-image {
    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent !important;
}

.ss-product-image img {
    width: 100%;
    max-width: 600px;

    max-height: 700px;

    object-fit: contain;

    display: block;

    background: transparent !important;

    transition: none !important;
}

/* ======================================================
   MEMORY PANEL
====================================================== */

.ss-memory-panel {
    margin: 28px 0;

    padding: 70px;

    border-radius: 42px;

    background: #111;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 60px;
}

.ss-memory-title {
    color: #fff;

    font-size: clamp(42px, 5vw, 72px);

    line-height: .95;

    letter-spacing: -.06em;
    font-weight: 800;
}

.ss-memory-list {
    display: grid;
    gap: 14px;
}

.ss-memory-list div {
    background: rgba(255, 255, 255, .08);

    border-radius: 999px;

    padding: 18px 24px;

    color: #fff;

    font-size: 18px;
    font-weight: 600;
}

/* ======================================================
   MINI CARDS
====================================================== */

.ss-mini-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

    margin-top: 28px;
}

.ss-mini-card {
    background: #fff;

    padding: 34px;

    border-radius: 34px;

    text-decoration: none !important;

    transition: none !important;

    color: #111 !important;
}

.ss-mini-card *,
.ss-mini-card:hover *,
.ss-mini-card:hover {
    color: #111 !important;
}

.ss-mini-card img {
    width: 100%;
    height: 260px;

    object-fit: contain;

    margin-bottom: 28px;
}

.ss-mini-card h3 {
    margin: 0 0 12px;

    font-size: 32px;

    line-height: 1.05;

    letter-spacing: -.04em;
}

.ss-mini-card p {
    margin: 0;

    color: #6e6e73 !important;

    line-height: 1.8;
}

/* ======================================================
   FINAL
====================================================== */

.ss-products-final {
    margin-top: 28px;

    background: #fff;

    border-radius: 42px;

    padding: 90px 60px;

    text-align: center;
}

.ss-products-final span {
    display: block;

    margin-bottom: 20px;

    color: #8b8b90;

    text-transform: uppercase;

    font-size: 13px;

    letter-spacing: .18em;
}

.ss-products-final h2 {
    max-width: 900px;

    margin: 0 auto;

    font-size: clamp(42px, 6vw, 84px);

    line-height: .95;

    letter-spacing: -.06em;

    font-weight: 800;
}

.ss-products-final p {
    max-width: 700px;

    margin: 28px auto 0;

    color: #6e6e73;

    font-size: 19px;

    line-height: 1.9;
}

/* ======================================================
   HOVER KILL
====================================================== */

.ss-products-page a,
.ss-products-page a:hover,
.ss-products-page a:focus,
.ss-products-page a:active {
    text-decoration: none !important;
}

.ss-products-page a:hover * {
    color: inherit !important;
}

.ss-product-section:hover,
.ss-mini-card:hover {
    transform: none !important;
}


/* ======================================================
   TABLET
====================================================== */

@media(max-width:992px) {

    .ss-product-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px;
    }

    .ss-product-reverse .ss-product-content,
    .ss-product-reverse .ss-product-image {
        order: unset;
    }

    .ss-memory-panel {
        grid-template-columns: 1fr;
    }

    .ss-mini-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ======================================================
   MOBILE
====================================================== */

@media(max-width:768px) {

    .ss-products-container {
        width: calc(100% - 24px);
    }

    .ss-products-hero {
        text-align: left;
        padding: 20px 0 50px;
    }

    .ss-products-desc {
        font-size: 17px;
    }

    .ss-product-section {
        padding: 28px;
        border-radius: 28px;
    }

    .ss-product-content h2 {
        font-size: 42px;
    }

    .ss-product-content p {
        font-size: 16px;
    }

    .ss-memory-panel {
        padding: 32px;
        border-radius: 28px;
    }

    .ss-mini-products {
        grid-template-columns: 1fr;
    }

    .ss-mini-card {
        border-radius: 28px;
    }

    .ss-products-final {
        padding: 50px 28px;
        border-radius: 28px;
    }
}


/* DESKTOP DROPDOWN ICON */

.tech-dropdown-icon {
    width: 96px;
    height: 96px;
    min-width: 96px;
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.tech-dropdown-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

/* =====================================================
BOOTSTRAP / TABLET MAVİ FOCUS ÇERÇEVESİ KALDIR
===================================================== */

a,
button,
.nav-link,
.dropdown-toggle,
.dropdown-item,
.tech-dropdown-item,
.mobile-menu-item,
.mobile-submenu-item,
.navbar-toggler {
    -webkit-tap-highlight-color: transparent;
}

a:focus,
a:active,
button:focus,
button:active,
.nav-link:focus,
.nav-link:active,
.dropdown-toggle:focus,
.dropdown-toggle:active,
.dropdown-toggle.show,
.dropdown-item:focus,
.dropdown-item:active,
.tech-dropdown-item:focus,
.tech-dropdown-item:active,
.mobile-menu-item:focus,
.mobile-menu-item:active,
.mobile-submenu-item:focus,
.mobile-submenu-item:active,
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
}

/* Bootstrap dropdown focus */

.dropdown-menu {
    --bs-dropdown-link-active-bg: transparent !important;
    --bs-dropdown-link-active-color: inherit !important;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: transparent !important;
    color: inherit !important;
}

/* Safari / iPad */

*:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.ss-product-retro {
    background: #F7E7C6;
    color: #111;
}

.ss-product-retro .ss-product-label {
    color: #7B5A2A;
}

.ss-product-retro h2 {
    color: #111;
}

.ss-product-retro p {
    color: #444;
}

.contact-page {
    padding: 40px 0 100px;
}

.contact-hero {
    padding: 40px 20px 80px;
}

.contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero h1 {
    font-size: clamp(56px, 8vw, 110px);
    line-height: .92;
    letter-spacing: -0.08em;
    font-weight: 800;
    margin-bottom: 28px;
}

.contact-hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.9;
    color: #6e6e73;
}

.contact-info-section {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    border-radius: 38px;
    padding: 38px;
}

.contact-soft {
    background: #ece8e1;
}

.contact-light {
    background: #fff;
    border: 1px solid #ececec;
}

.contact-pink {
    background: #f8edf0;
}

.contact-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .65);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;
}

.contact-icon i {
    font-size: 28px;
    color: #111;
}

.contact-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #8b8b90;
    margin-bottom: 18px;
}

.contact-value {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
    color: #111;
}

.contact-value-secondary {
    margin-top: 12px;

    font-size: 17px;
    line-height: 1.7;

    color: #555;
}

.contact-company-name {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
    color: #111;

    margin-bottom: 18px;
}

.contact-company-info {
    display: flex;
    flex-direction: column;
    gap: 10px;

    font-size: 15px;
    line-height: 1.7;

    color: #555;
}

.contact-address {
    font-size: 18px;
    line-height: 1.9;
    color: #111;
}

.contact-desc {
    margin-top: 24px;

    font-size: 14px;
    line-height: 1.8;

    color: #6e6e73;
}

.contact-story {
    width: min(1280px, calc(100% - 40px));
    margin: 28px auto 0;
}

.contact-story-card {
    background: #111;
    color: #fff;

    border-radius: 42px;

    padding: 80px;

    text-align: center;
}

.contact-story-card .section-mini-title {
    color: rgba(255, 255, 255, .5);
}

.contact-story-card h2 {
    margin: 20px auto 28px;

    max-width: 900px;

    font-size: clamp(48px, 6vw, 86px);
    line-height: .95;

    letter-spacing: -0.06em;
    font-weight: 800;
}

.contact-story-card p {
    max-width: 760px;
    margin: 0 auto 20px;

    color: rgba(255, 255, 255, .72);

    font-size: 19px;
    line-height: 1.9;
}

.contact-call-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    height: 58px;
    padding: 0 34px;

    margin-top: 14px;

    border-radius: 999px;

    background: #fff;
    color: #111;

    font-size: 15px;
    font-weight: 700;
}

@media(max-width:992px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-story-card {
        padding: 50px 30px;
    }

}

@media(max-width:768px) {

    .contact-page {
        padding: 20px 0 70px;
    }

    .contact-hero h1 {
        font-size: 56px;
    }

    .contact-hero p {
        font-size: 17px;
    }

    .contact-card {
        padding: 28px;
    }

    .contact-value {
        font-size: 24px;
    }

    .contact-company-name {
        font-size: 22px;
    }

    .contact-address {
        font-size: 16px;
    }

    .contact-story-card h2 {
        font-size: 42px;
    }

    .contact-story-card p {
        font-size: 16px;
    }
}

.contact-soft,
.contact-light,
.contact-pink {
    background: #fff !important;
    border: 1px solid #ececec;
}

.contact-value-secondary {
    color: #111;
    text-decoration: none;
    display: block;
}

.contact-value-secondary:hover {
    color: #111;
    text-decoration: none;
}

.contact-value,
.contact-value-secondary,
.contact-company-name,
.contact-company-info,
.contact-address {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
    color: #111;
}

.contact-call-btn,
.contact-call-btn:hover,
.contact-call-btn:focus,
.contact-call-btn:active {
    background: #fff !important;
    color: #111 !important;
    border: 1px solid #fff !important;

    text-decoration: none !important;

    transform: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
}

.contact-story-card .contact-call-btn,
.contact-story-card .contact-call-btn:hover {
    background: #fff !important;
    color: #111 !important;
}

.contact-value {
    display: block;
    color: #111;
    text-decoration: none;
}

.contact-value:hover,
.contact-value:focus {
    color: #111;
    text-decoration: none;
}

.mobile-close-btn,
.mobile-close-btn:focus,
.mobile-close-btn:active,
.mobile-close-btn:hover {
    color: #111 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

.mobile-close-btn i {
    color: #111 !important;
    font-size: 30px;
    opacity: 1 !important;
}

.offcanvas-header .btn-close,
.offcanvas-header .btn-close:focus,
.offcanvas-header .btn-close:active {
    filter: none !important;
    opacity: 1 !important;
}

/* ==========================================
FILM STRIP
========================================== */

.film-strip-section {
    margin: 0;
}

.film-strip {
    position: relative;

    background: #050505;

    border-radius: 28px;

    overflow-x: auto;
    overflow-y: hidden;

    cursor: grab;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

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

.film-track {
    position: relative;

    display: flex;
    gap: 24px;

    width: max-content;

    padding: 48px 36px;
}

/* Film delikleri tüm uzunluk boyunca */

.film-track::before,
.film-track::after {
    content: "";

    position: absolute;

    left: 0;
    width: 100%;

    height: 14px;

    pointer-events: none;

    z-index: 20;

    background-image:
        repeating-linear-gradient(to right,
            #fff 0 18px,
            transparent 18px 42px);
}

.film-track::before {
    top: 12px;
}

.film-track::after {
    bottom: 12px;
}

.film-frame {
    width: 280px;
    height: 360px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 18px;

    background: #fff;
}

.film-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}