/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;
    touch-action: manipulation;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* Prevent zoom */
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

body {
    font-family: 'SVN-Gilroy', sans-serif;
    background: #FFEFE6 url('../images/bg-snow.webp') no-repeat center bottom;
    background-size: 80% auto;
    min-height: 100vh;
    overflow-x: hidden;
    /* Prevent zoom */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body.home {
    background: #FFEFE6 url('../images/home-bg.webp') no-repeat top right;
    background-size: cover;
}
body.intro {
    background: #FFEFE6 url('../images/bg-snow.webp') no-repeat center bottom;
    background-size: 80% auto;
    position: relative;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    min-height: 100vh;
}

body.intro .container {
    background: #FFEFE6 url('../images/intro-bg-christmas.webp') no-repeat top center;
    background-size: 100% auto;
}

button, input, select {
    outline: none;
}

/* Header */
.header {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 99;
}

.logo img {
    height: 40px;
    width: auto;
}

.hd, .policy {
    position: absolute;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-align: right;
    z-index: 11;
}

.policy {
    top: 20px;
    right: 20px;
}

.hd {
    top: 82px;
    right: 20px;
}

.policy img, .hd img {
    width: 160px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.policy img:hover, .hd img:hover {
    transform: scale(1.05);
}

/* Home Section */
.home-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    /* overflow: hidden; */
}

.home-content {
    position: relative;
    width: 100%;
    max-width: 1440px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    align-items: center;
    padding: 120px 0px 0px;
    min-height: 100vh;
}

.home-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.home-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding-bottom: 30px;
    width: 90%;
    max-width: 600px;
}
.home-heading img {
    width: 100%;
    /* max-width: 600px; */
    height: auto;
}

.home-content-img img {
    width: 100%;
    max-width: 600px;
    height: auto;
}


.btn-explore {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
}

.btn-explore img {
    width: 100%;
    max-width: 360px;
    height: auto;
}

.btn-explore:hover {
    transform: scale(1.05);
}

.btn-explore:active {
    transform: scale(0.95);
}

/* .home-right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
} */

.home-photo {
    width: auto;
    height: 1600px;
    position: absolute;
    top: 10%;
    right: 0;    
    z-index: 0;
}

.home-photo-mobile {
    display: none;
}

/* Home Video Section */
.home-video-section {
    width: 100%;
    max-width: 1440px;
    padding: 0 0 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
}

.video-heading {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.video-heading img {
    width: 90%;
    height: auto;
    max-width: 340px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    /* border-radius: 12px; */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-cover {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-cover:hover {
    transform: scale(1.02);
}

.video-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 10;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-player video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Intro Section */
.intro-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* overflow-x: hidden; */
    z-index: 2;
}

/* Intro Navigation */
.intro-navigation {
    position: relative;
    width: 80%;
    z-index: 100;
    padding: 40px 20px 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Burger Menu Button */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 26px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    position: relative;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: #FF6B35;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    background-size: 100% 200%;
    background-position: top center;
    background-repeat: no-repeat;
    text-decoration: none;
    min-height: 32px;
    padding: 0 10px;
}

/* Nav 1 (Trang chủ) - sprite với 2 states */
.nav-home {
    background-image: url('../images/nav1.webp');
}

.nav-home:hover,
.nav-home.active {
    background-position: bottom center;
}

/* Nav 2 (Các mục khác) - sprite với 2 states */
.nav-2 {
    background-image: url('../images/nav2.webp');
}

.nav-2:hover,
.nav-2.active {
    background-position: bottom center;
}

.nav-item:hover {
    transform: scale(1.05);
}

.nav-item:active {
    transform: scale(0.95);
}

.nav-text {
    position: relative;
    z-index: 1;
    font-family: 'SVN-Gilroy', sans-serif;
    font-weight: bold;
    font-size: 15px;
    color: #fff;
    white-space: nowrap;
    padding: 5px 15px;
    text-align: center;
    pointer-events: none;
    line-height: 1.2;
}

.intro-content {
    position: relative;
    width: 100%;
    max-width: 1440px;
    padding: 0px 40px 100px;
    /* min-height: calc(100vh - 100px); */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.intro-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.intro-heading {
    position: absolute;
    z-index: 3;
    text-align: center;
    width: 40%;
    margin-top: 6%;
    /* margin-bottom: 20px; */
}

.intro-heading img {
    width: 100%;
    max-width: 450px;
    height: auto;
    margin: 0 auto;
}

.intro-photo {
    position: relative;
    z-index: 2;
    text-align: right;
    margin: 20px 0;
}

.intro-photo img {
    width: 100%;
    max-width: 800px;
    height: auto;
    /* margin-right: 40px; */
}

.intro-line {
    position: absolute;
    z-index: 1;
    text-align: center;
    margin: 0;
    top: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    display: none;
    width: 100%;
    height: 93%;
    /* max-width: 100%; */
    pointer-events: none;
    background: url('../images/intro-line-christmas.webp') no-repeat top -10px right;
    background-size: auto 100%;
}

.intro-line img {
    width: 100%;
    height: auto;
}

.intro-tips {
    position: relative;
    text-align: left;
    margin: 6% 0 0 -1%;
}
.intro-tips img {
    width: 100%;
    max-width: 740px;
    height: auto;
}

.steps-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    gap: 80px;
    margin: 0px 0 20px;
}

.step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
}


.step.step-1 img {
    margin-right: 30%;
}

.step.step-2 img {
    margin-left: 18%;
}

.step.step-3 img {
    margin-left: 0;
}

.step-content {
    flex: 1;
    /* text-align: center; */
    overflow: visible;
}

.step.step-1 .step-content {
    text-align: right;
}
.step.step-3 .step-content {
    text-align: center;
}

/* .step.step-2 .step-content, .step.step-3 .step-content {
    text-align: left;
} */

.step-content img {
    width: auto;
    max-height: 240px;
    height: auto;
}

.intro-footer {
    position: absolute;
    z-index: 0;
    text-align: center;
    bottom: 0;
    left: 50%;
    width: auto;
    height: 58%;
    opacity: 0;
    visibility: hidden;
    display: none;
    pointer-events: none;
    transform: translateX(-50%);
}

/* .intro-footer img {
    width: 100%;
    height: auto;
} */

.intro-cta {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 30px 0;
}

.btn-join {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
}

.btn-join img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.btn-join:hover {
    transform: scale(1.05);
}

.btn-join:active {
    transform: scale(0.95);
}

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.popup-hidden {
    opacity: 0;
    visibility: hidden;
}

.popup-overlay:not(.popup-hidden) {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: url('../images/popup.webp') no-repeat top center;
    background-size: 100% 100%;
    border-radius: 20px;
    padding: 40px;
    max-width: 610px;
    width: 90%;
    height: 70%;
    max-height: 63vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.popup-content .registration-form {
    max-width: 85%;
    margin-left: 5%;
    padding: 8vh 35px 30px 25px;
}

.popup-overlay:not(.popup-hidden) .popup-content {
    transform: scale(1);
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 50px;
    color:#FF6B35;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.popup-header {
    text-align: center;
    margin-bottom: 25px;
}

.popup-header h2 {
    font-size: 16px;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 0;
    line-height: 1.2;
}

.popup-header p {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin: 0;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.form-field {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.form-field.field-department {
    gap: 5px;
}

.form-field label {
    font-weight: 700;
    color: #FF6500;
    font-size: 16px;
    margin-bottom: 0;
    flex-shrink: 0;
    min-width: 110px;
}

.checkbox-field {
    margin: 5px 0 10px;
    align-items: flex-start;
}

.checkbox-field label {
    min-width: auto;
    flex: 1;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.checkmark {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    /* border: 2px solid #e74c3c; */
    /* border-radius: 4px; */
    background: url('../images/checkbox.webp') no-repeat center center;
    background-size: cover;
    flex-shrink: 0;
}

/* .checkbox-label input[type="checkbox"]:checked ~ .checkmark {
    background: #fff;
    border-color: #e74c3c;
} */

.checkbox-label input[type="checkbox"]:checked ~ .checkmark::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 3px;
    width: 5px;
    height: 12px;
    border: solid #FFF;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.radio-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: #151282;
    font-size: 16px;
    margin-bottom: 0;
    margin-left: 10px;
}
.form-field label.radio-label {
    min-width: 60px;
}

.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.radio-label span {
    position: relative;
    padding-left: 28px;
}

.radio-label span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    /* border: 2px solid #FF6500; */
    border-radius: 50%;
    background: url('../images/radio.webp') no-repeat center center;
    background-size: cover;
}

.radio-label input[type="radio"]:checked ~ span::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFF;
}

.form-field input,
.form-field select {
    padding: 0 10px 0px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    font-family: 'SVN-Gilroy', sans-serif;
    transition: border-color 0.3s ease, opacity 0.3s ease;
    flex: 1;
    color: #F47920;
    font-weight: bold;
    /* Allow text selection in input fields */
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.form-field select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    color: #F47920;
}

.form-field input::placeholder {
    color: #999;
}

.form-field select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center; */
    /* padding-right: 40px; */
    background: url('../images/popup-select.webp') no-repeat center center;
    background-size: 100% 100%;
    padding: 7px 10px;
    color: #FFF;
    text-align: center;
}
.form-field select:focus {
    color: #FFF;
}

.hint {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    text-align: center;
    display: none;
    margin: 20px 0 0;
}

.error-message.show {
    display: block;
}

.popup-buttons {
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.btn-submit {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
    margin-left: -5px;
}

.btn-submit img {
    width: 100%;
    height: auto;
}

.btn-submit:hover {
    transform: scale(1.02);
}

.btn-submit:active {
    transform: scale(0.95);
}

.btn-submit:disabled {
    cursor: not-allowed;
    transform: none;
    opacity: 0.6;
}

.popup-login-switch {
    margin-top: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: #FFF;
    position: absolute;
    bottom: 6%;
    right: 10%;
}

.popup-login-switch a {
    color: #FF6B35;
    text-decoration: underline;
    /* font-weight: 600; */
}

.popup-login-switch a:hover,
.popup-login-switch a:focus {
    text-decoration: none;
}

.popup-form-login {
    display: none;
    padding: 10% 0;
}

/* Policy Popup */
.policy-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.policy-popup.active {
    display: flex;
}

.policy-popup-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.policy-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 36px;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.policy-close-btn:hover {
    color: #333;
}

.policy-body {
    padding: 20px 0;
}

.policy-body h3 {
    color: #FF6B35;
    margin-bottom: 20px;
    font-size: 24px;
}

.policy-body p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

/* Responsive Design */
@media (max-width: 1310px) {
    .intro-navigation {
        width: 90%;
    }
    .home-heading img {
        max-width: 560px;
    }
    .home-content-img img {
        width: 100%;
        max-width: 520px;
    }
    .btn-explore img {
        width: 100%;
        max-width: 320px;
    }
    .home-photo {
        height: 1300px;
        top: 22%;
    }
    .intro-heading {
        text-align: left;
        margin-top: 80px;
    }
    .intro-heading img {
        width: 100%;
        max-width: 380px;
    }
    .intro-tips img {
        width: 100%;
        max-width: 680px;
        
    }
    .home-section {
        gap: 0;
    }
    .video-container {
        max-width: 800px;
    }
    .home-video-section {
        padding: 0 0 100px;
    }

    .step.step-1 img {
        margin-right: 40%;
    }
    .step.step-2 img {
        margin-left: 2%;
    }
}
@media (max-width: 1200px) {
    .intro-heading img {
        width: 100%;
        max-width: 260px;
    }
    .intro-heading {
        text-align: center;
        margin-top: 20px;
        width: 100%;
    }

    .intro-line {
        height: 90%;
        background: url(../images/intro-line-christmas.webp) no-repeat top -10px right -100px;
        background-size: auto 100%;
    }

    .intro-tips {
        margin: 5% 0 0 0;
    }
    .intro-tips img {
        max-width: 600px;
    }

    .step-content img {
        max-height: 200px;
    }

    .step.step-1 img {
        margin-right: 30%;
    }
    .step.step-2 img {
        margin-left: 5%;
    }

}
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
        overflow-x: hidden;
    }

    .intro-navigation {
        padding: 45px 0 10px;
    }

    /* .nav-container {
        gap: 10px;
    } */

    .home-content {
        grid-template-columns: 1fr;
        padding: 50px 0 20px;
    }

    .home-right {
        order: -1;
        margin-bottom: 30px;
    }

    .home-left {
        text-align: center;
        align-items: center;
        margin: 0 auto;
    }

    .intro-content {
        padding: 20px 0 40px;
    }

    .step-number {
        min-width: auto;
        text-align: center;
    }
    
    .home-photo {
        display: none;
    }

    .home-photo-mobile {
        display: flex;
        align-items: center;
        height: auto;
        position: relative;
        width: 100%;
        z-index: 1;
    }

    .btn-explore img {
        width: 100%;
        max-width: 280px;
    }

    .intro-photo {
        text-align: center;
    }

    .intro-photo img {
        width: 75%;
        max-width: 800px;
        margin-right: 0;
        margin-top: 30px;
    }

    .intro-heading img {
        max-width: 240px;
    }

    .intro-tips {
        margin: 20px 0 0;
    }

    .intro-tips img {
        width: 55%;
    }

    .step-content img {
        max-height: 160px;
    }

    .step.step-3 img {
        margin-right: 30%;
    }

    .steps-container {
        gap: 40px;
    }

    .btn-join img {
        max-width: 400px;
    }

    .intro-footer {
        margin-bottom: 0;
        height: 54%;
    }

    .intro-line {
        height: 100%;
        background: url(../images/intro-line-christmas.webp) no-repeat top right -50px;
        background-size: auto 100%;
    }

    .nav-item {
        min-height: 24px;
        margin: 0 -3px;
    }

    .intro-navigation {
        width: 100%;
    }

    .nav-text {
        font-size: 14px;
        padding: 5px 12px;
    }

    .steps-container {
        min-height: auto;
    }
}

@media (max-width: 812px) {
    .nav-text {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .header {
        top: 20px;
        left: 20px;
    }

    .logo img {
        height: 30px;
    }

    .policy {
        top: 15px;
        right: 15px;
    }

    .hd {
        top: 70px;
        right: 15px;
    }

    .policy img, .hd img {
        width: 140px;
    }

    .intro-navigation {
        padding: 20px 0 10px;
    }

    .home-content {
        padding: 30px 0 0px;
    }
    
    .home-video-section {
        padding: 20px 0 60px;
        gap: 20px;
    }
    
    .video-container {
        max-width: 100%;
    }
    
    .video-play-btn svg {
        width: 60px;
        height: 60px;
    }

    /* .intro-content {
        padding: 20px 20px 30px;
    } */

    .step-number {
        font-size: 80px;
    }

    .popup-content {
        padding: 30px 20px;
    }

    .home-photo {
        width: 100%;
    }

    .intro-heading img {
        width: 30%;
    }

    .intro-photo img {
        width: 90%;
        margin-top: 10px;
    }

    .intro-tips {
        margin: 0;
    }

    .intro-content {
        gap: 10px;
    }

    .step-content img {
        max-height: 120px;
    }

    .steps-container {
        gap: 40px;
    }

    .intro-cta {
        margin: 10px 0;
    }

    .intro-footer {
        margin-bottom: 0;
        height: 53%;
    }

    .intro-line {
        background: url(../images/intro-line-christmas.webp) no-repeat top right -120px;
        background-size: auto 100%;
    }
}

/* Burger Menu for Mobile - max-width 680px */
@media (max-width: 680px) {
    .burger-menu {
        display: flex;
    }

    .intro-navigation {
        width: 100%;
        padding: 20px 15px 10px;
        justify-content: flex-end;
    }

    .nav-container {
        position: fixed;
        top: 20px;
        right: 0;
        width: 100%;
        max-width: 250px;
        height: auto;
        background: url('../images/nav.webp') no-repeat top center;
        background-size: 100% 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 30px 0 30px;
        /* gap: 5px; */
        /* box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1); */
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        overflow-y: auto;
        z-index: 100;
    }

    .nav-container.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        width: 100%;
        justify-content: flex-start;
        min-height: auto;
        padding: 5px 0;
    }

    .nav-text {
        font-size: 14px;
        padding: 5px 10px;
        width: 100%;
        text-align: center;
    }

    /* Overlay when menu is open */
    /* .nav-container.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: -1;
    } */

    .nav-home, .nav-2 {
        background-image: none;
    }

    .intro-footer {
        margin-bottom: 0;
        height: 58%;
    }
}


@media (max-width: 480px) {
    .header {
        top: 15px;
        left: 15px;
    }

    .logo img {
        height: 30px;
    }

    .container {
        padding: 0 15px;

    }

    .policy {
        top: 12px;
        right: 12px;
    }

    .hd {
        top: 55px;
        right: 12px;
    }

    .policy img, .hd img {
        width: 120px;
    }

    .intro-navigation {
        padding: 15px 0 0;
    }

    .nav-container {
        gap: 5px;
    }

    .nav-text {
        font-size: 14px;
        padding: 5px 10px;
    }

    .home-content {
        padding: 60px 0 0;
        gap: 20px;
        min-height: auto;
    }

    .home-left {
        gap: 10px;
        text-align: center;
        width: 100%;
    }

    .home-right {
        margin-bottom: 0;
    }

    .home-photo {
        position: relative;
        width: 125%;
    }

    .intro-section {
        overflow-x: visible;
    }

    .intro-content {
        padding: 20px 0 40px;
        gap: 10px;
    }

    .step-number {
        font-size: 60px;
        min-width: 100px;
    }

    .step {
        padding: 15px;
    }

    .popup-content {
        padding: 25px 15px;
        width: 95%;
    }

    .btn-submit {
        padding: 10px 5px;
    }

    .home-heading img {
        width: 90%;
    }

    .btn-explore img {
        width: 80%;
    }

    .intro-photo {
        margin: 20px 0 0;
        height: 300px;
    }

    .intro-photo img {
        width: 115%;
        margin-top: 10px;
        position: absolute;
        left: 50%;
        transform: translateX(-52%);
    }

    .intro-heading img {
        width: 40%;
    }

    .intro-line {
        background: url(../images/intro-line-christmas.webp) no-repeat top right -160px;
        background-size: auto 100%;
    }

    .intro-tips img {
        width: 85%;
        margin-left: 0;
    }

    .step {
        padding: 0;
    }

    .step.step-3 {
        text-align: right;
        align-items: center;
    }

    .step.step-1 img {
        margin-left: 20%;
    }

    .step.step-2 img {
        margin-left: 0;
    }

    .step-content img {
        max-height: 100px;
    }

    .intro-footer {
        height: 54%;
        width: 150%;
    }

    .btn-join img {
        max-width: 250px;
    }

    .steps-container {
        margin: 0px;
    }

    .nav-container {
        max-width: 200px;
        top: 30px;
    }

    .home-video-section {
        padding: 10px 0 50px;
        gap: 20px;
    }
}

/* Screen 3: Donate Section */
.donate-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    z-index: 2;
}

.donate-content {
    position: relative;
    width: 100%;
    max-width: 1440px;
    padding: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Wishes Section */
.wishes-section {
    position: relative;
    width: 100%;
    padding: 10px 0;
    text-align: center;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #151282;
    text-align: center;
    margin-bottom: 30px;
}

.wishes-heading {
    width: 80%;
    max-width: 300px;
    height: auto;
    margin-bottom: 10px;
}

.wish-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    background: url('../images/tab.webp') no-repeat center top;
    background-size: 100% 100%;
    width: 80%;
    max-width: 480px;
    margin: 10px auto 20px;
}

.wish-tab {
    background: transparent;
    border: none;
    padding: 14px 10px;
    font-size: 14px;
    font-weight: 700;
    color: #FFF;
    cursor: pointer;
    font-family: 'SVN-Gilroy', sans-serif;
    width: 50%;
}

.wish-tab.active {
    /* color: #FF6B35;
    border-bottom-color: #FF6B35;
    font-weight: 700; */
    background: url('../images/tab-active2.webp') no-repeat center top;
    background-size: 100% 100%;
}
.wish-tab:first-child.active {
    background: url('../images/tab-active1.webp') no-repeat center top;
    background-size: 100% 100%;
}

/* .wish-tab:not(.active) {
    color: #999;
    opacity: 0.7;
} */

.wish-cards-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    max-width: 860px;
    width: 90%;
    min-height: 750px;
    margin: 0 auto;
}

.wish-cards-container.no-data {
    min-height: 300px;
}

.wish-carousel-btn {
    background: transparent;
    border: none;
    width: 30px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
    flex-shrink: 0;
    padding: 0;
}

.wish-carousel-btn img {
    width: 20px;
    height: auto;
}

.wish-carousel-btn:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.wish-carousel-btn:active {
    transform: scale(0.95);
}

.wish-cards-wrapper {
    flex: 1;
    overflow: visible;
}

.wish-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    transition: transform 0.3s ease;
    align-items: start;
}

.wish-cards-grid.no-data {
    grid-template-columns: repeat(1, 1fr);
}

.wish-card-placeholder {
    /* Empty placeholder to maintain grid layout */
    visibility: hidden;
    pointer-events: none;
}

.wish-card {
    background: url('../images/wish-bg.webp') no-repeat bottom 10px center;
    background-size: 92% 85%;
    /* padding: 20px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    cursor: pointer;
}
.wish-card:hover {
    transform: scale(1.03);
}

.wish-card-avatar-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.wish-card-avatar {
    position: absolute;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

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

.wish-card-avatar-frame {
    position: absolute;
    width: 110px;
    height: 110px;
    margin-left: 0;
    z-index: 2;
    pointer-events: none;
}

.wish-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #FF6500;
    text-align: center;
}

.wish-card-location {
    font-size: 12px;
    color: #FF6500;
    font-style: italic;
    font-weight: 500;
    text-align: center;
}

.wish-card-items {
    min-height: 150px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}

.wish-card-drawing {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    border-radius: 10px;
}

.wish-card-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wish-card-btn img {
    max-width: 88%;
    margin-left: -5%;
    height: auto;
    display: block;
}

/* .wish-card-btn:hover {
    transform: scale(1.05);
}

.wish-card-btn:active {
    transform: scale(0.95);
} */

.wish-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 10px 0;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFC27B;
    cursor: default;
    pointer-events: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.pagination-dot.active {
    background: #FF8809;
    transform: scale(1.6);
}

.wish-disclaimer {
    text-align: center;
    font-size: 12px;
    font-style: italic;
    color: #151282;
    margin-top: 20px;
}

.wish-content {
    width: 80%;
    max-width: 670px;
    font-size: 16px;
    font-weight: 600;
    color: #151282;
    margin: 50px auto 20px;
}

.no-data {
    color: #F47920;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

/* Giant Wish Section */

.giant-wish-section {
    position: relative;
    width: 100%;
    padding: 60px 0 0;
    text-align: center;
}

.giant-wish-section::before {
    background: #FFE4D4 url('../images/snow.webp') no-repeat center center;
    background-size: 100% auto;
    width: 160%;
    position: absolute;
    height: 100%;
    display: block;
    content: '';
    top: 0;
    left: -30%;
    z-index: -1;
}

.giant-wish-header {
    position: relative;
    width: 100%;
    text-align: center;
}

.giant-wish-heading {
    width: 80%;
    max-width: 470px;
    height: auto;
}

.giant-wish-title {
    font-size: 48px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.title-script {
    font-family: 'SVN-Gilroy', sans-serif;
    font-style: italic;
    color: #151282;
    font-size: 42px;
}

.title-bold {
    font-family: 'SVN-Gilroy', sans-serif;
    font-weight: 900;
    color: #151282;
    font-size: 48px;
    position: relative;
    display: inline-block;
}

.title-bold::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 4px;
    background: #FF6B35;
    border-radius: 2px;
}

.giant-wish-description {
    font-size: 16px;
    color: #151282;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.progress-container {
    margin: 30px auto;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.progress-text {
    font-size: 24px;
    font-weight: 700;
    color: #FF8809;
    margin: 0;
    font-family: 'SVN-Gilroy', sans-serif;
}

.progress-wrapper {
    width: 100%;
    position: relative;
}

.progress-line {
    width: 100%;
    height: 12px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    overflow: visible;
}

.progress-fill {
    height: 100%;
    background: #FF6B35;
    border-radius: 10px;
    width: 50%;
    transition: width 0.5s ease;
}

.progress-truck {
    position: absolute;
    bottom: -100%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    transition: left 0.5s ease;
    z-index: 10;
}

.progress-truck img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Calculate truck position based on progress */
.progress-line[data-progress="0"] .progress-truck { left: 0%; }
.progress-line[data-progress="25"] .progress-truck { left: 25%; }
.progress-line[data-progress="50"] .progress-truck { left: 50%; }
.progress-line[data-progress="75"] .progress-truck { left: 75%; }
.progress-line[data-progress="100"] .progress-truck { left: 100%; }

.btn-support-bus {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-support-bus img {
    width: 100%;
    max-width: 270px;
    height: auto;
}

.btn-support-bus:hover {
    transform: scale(1.05);
}

.btn-support-bus:active {
    transform: scale(0.95);
}

.btn-support-bus.is-disabled,
.btn-support-bus:disabled {
    cursor: default;
    opacity: 0.7;
    transform: scale(0.98);
    pointer-events: none;
}

/* Projects Section */
.projects-section {
    position: relative;
    width: 90%;
    max-width: 980px;
    padding: 20px 0 60px;
    margin: 0 auto;
}

.car-gallery-content {
    align-items: center;
    gap: 32px;
    padding: 30px 0 0;
}

.car-gallery-section {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to bottom, rgba(255, 234, 209, 0) 40%, #F37920 90%, #F37920 100%);
}

.car-gallery-text {
    width: 80%;
    max-width: 800px;
    color: #151282;
    font-style: italic;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
    padding: 10px 20px 10px;
}

.car-gallery-heading {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.car-gallery-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #151282;
    margin: 0;
    text-align: center;
}

.car-gallery-tabs {
    width: 100%;
    max-width: 980px;
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.car-gallery-tab {
    background: url('../images/gallery-tab.webp') no-repeat center top;
    background-size: 100% 200%;
    color: #fff;
    border: none;
    padding: 6px 23px;
    font-family: 'SVN-Gilroy', sans-serif;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: 26%;
    margin: 0 -8px;
    position: relative;
    z-index: 1;
}
.car-gallery-tab:hover,
.car-gallery-tab.active {
    background-position: center bottom;
    z-index: 2;
}

.car-gallery-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}
.car-gallery-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #F2682A;
    white-space: nowrap;
}
.car-gallery-legend-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.car-gallery-tab-title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.car-gallery-tab-meta {
    font-size: 15px;
    font-weight: 700;
    margin-top: 5px;
}

.car-gallery-slider {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.car-gallery-track-wrapper {
    flex: 1;
    overflow: hidden;
    padding: 0px;
}

.car-gallery-track {
    display: flex;
    width: 100%;
    transition: transform 0.4s ease;
}

.car-gallery-slide {
    min-width: 100%;
    padding: 8px;
}

.car-gallery-nav {
    background: transparent;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.car-gallery-nav:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.car-gallery-nav:hover {
    transform: scale(1.05);
}

.car-gallery-nav img {
    width: 30px;
    height: auto;
}

.car-gallery-dots {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.car-gallery-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    padding: 0;
}

.car-gallery-dot.active {
    transform: scale(1.3);
    background: rgba(255, 255, 255, 1);
}

.car-gallery-caption {
    max-width: 820px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #47366A;
    line-height: 1.6;
    margin: 0;
}

.car-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
}

.car-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.car-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.project-card {
    background: url('../images/big-wish-bg.webp') no-repeat center top;
    background-size: 100% 100%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.3s ease;
    padding: 20px 10px 40px;
    cursor: pointer;
    position: relative;
}

.project-card:hover {
    transform: scale(1.03);
}

.project-snow {
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.project-image {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.project-info {
    padding: 10px 0;
    flex: 1;
    text-align: center;
}

.project-title {
    font-size: 14px;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 8px;
}

.project-location {
    font-size: 22px;
    font-weight: 700;
    color: #FFF;
}

.project-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.project-btn img {
    width: 60%;
    max-width: 220px;
    height: auto;
}

/* .project-btn:hover {
    transform: scale(1.05);
}

.project-btn:active {
    transform: scale(1.05);
} */

/* Responsive for Donate Section */
@media (max-width: 1024px) {
    .wish-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .car-gallery-tab {
        min-width: 220px;
    }

    .car-gallery-tab-title {
        font-size: 18px;
    }

    .car-gallery-tab-meta {
        font-size: 16px;
    }

    .car-gallery-text {
        font-size: 14px;
        width: 100%;
    }

    .car-gallery-legend-item {
        font-size: 14px;
    }

    .car-gallery-nav img {
        width: 20px;
    }

    .car-gallery-nav {
        width: 30px;
        height: 30px;
    }
    .car-gallery-slider {
        gap: 10px;
    }

    .car-gallery-dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 768px) {
    .donate-content {
        padding: 20px 0 0;
        gap: 40px;
    }

    .project-card {
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .wish-tabs {
        min-width: auto;
        width: 80%;
    }

    .wish-card {
        background: url('../images/wish-bg.webp') no-repeat bottom 10px center;
        background-size: 100% 85%;
    }

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

    .wish-card-avatar-wrapper, .wish-card-avatar {
        width: 80px;
        height: 80px;
    }

    .wish-card-avatar-frame {
        position: absolute;
        width: 90px;
        height: 85px;
        margin-left: 1px;
        margin-top: -5px; 
    }

    .wish-card-drawing {
        max-width: 130px;
    }

    .wish-card {
        gap: 5px;
    }

    .wish-carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .wish-card-btn img {
        max-width: 94%;
        margin-left: -6%;
    }

    .giant-wish-title {
        font-size: 32px;
    }
    

    .title-script {
        font-size: 28px;
    }

    .title-bold {
        font-size: 32px;
    }

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

    .car-gallery-section {
        padding: 20px 10px 20px;
    }

    .car-gallery-tabs {
        gap: 12px;
        margin: 0;
    }

    .car-gallery-tab {
        min-width: 200px;
        max-width: 100%;
        padding: 16px 22px;
        margin: 0;
    }

    .car-gallery-slider {
        gap: 12px;
    }

    .car-gallery-caption {
        font-size: 15px;
        padding: 0 12px;
    }

    .car-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .car-gallery-dots {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 680px) {
    .wish-tabs {
        flex-direction: column;
        background: transparent;
        margin: 10px auto 30px;
    }
    .wish-tab {
        width: 100%;
        background: url('../images/tab.webp') no-repeat center top;
        background-size: 100% 100%;
    }
    .wish-cards-container {
        width: 100%;
        gap: 0;
    }
    .car-gallery-tabs {
        flex-direction: column;
        align-items: stretch;
        margin: 0;
    }
    .car-gallery-tab {
        width: 100%;
        align-items: center;
        text-align:center;
        margin: 0;
    }
    .car-gallery-tab-title {
        text-align: center;
    }
    .car-gallery-slider {
        /* flex-direction: column; */
        gap: 16px;
    }
    .car-gallery-track-wrapper {
        width: 100%;
    }
    /* .car-gallery-nav {
        order: -1;
    } */
    .car-gallery-legend {
        width: 100%;
    }
    .car-gallery-legend-item {
        justify-content: center;
        width: 100%;
    }

    .progress-container {
        width: 90%;
    }

    .progress-truck {
        bottom: -150%;
        width: 60px;
        height: 60px;
        margin-left: 5%;
    }

}
@media (max-width: 480px) {
    .wish-tabs {
        margin: 10px auto 10px;
    }
    .wish-carousel-btn img {
        width: 15px;
    }
    .wish-card-drawing {
        width: 100%;
        max-width: 80%;
    }
    .wish-content {
        width: 80%;
        margin: 30px auto 10px;
    }
    .projects-section {
        max-width: 310px;
    }
    .wish-carousel-btn {
        width: 20px;
        height: 20px;
    }
    .car-gallery-section {
        padding: 28px 12px 50px;
        border-radius: 18px;
    }
    .car-gallery-tab {
        padding: 14px 18px;
    }
    .car-gallery-tab-title {
        font-size: 16px;
    }
    .car-gallery-tab-meta {
        font-size: 13px;
    }
    .car-gallery-dot {
        width: 10px;
        height: 10px;
    }
    .car-gallery-grid {
        gap: 12px;
    }
    .car-gallery-legend-item {
        font-size: 12px;
    }
    .car-gallery-legend-item img {
        width: 22px;
        height: 22px;
    }
}

/* Image Popup Modal - Lightbox Style */
.image-popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

.image-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
}

.image-popup-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    margin: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-popup-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    font-size: 50px;
    color: #FF6B35;
    cursor: pointer;
    padding: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.2s ease;
    line-height: 1;
}

.image-popup-close:hover {
    color: #E55A2B;
    transform: scale(1.1);
}

.image-popup-close:active {
    transform: scale(0.95);
}

.image-popup-img {
    max-width: 80vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .image-popup-content {
        max-width: 95vw;
        max-height: 95vh;
        padding: 10px;
    }
    
    .image-popup-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 40px;
    }
    
    .image-popup-img {
        max-width: 95vw;
        max-height: 85vh;
    }

    .projects-section {
        max-width: 350px;
    }
}

@media (max-width: 680px) {
    .wish-tabs {
        flex-direction: column;
        background: transparent;
        margin: 10px auto 30px;
    }

    .wish-tab {
        width: 100%;
        background: url('../images/tab.webp') no-repeat center top;
        background-size: 100% 100%;
    }

    .wish-cards-container {
        width: 100%;
        gap: 0;
    }

    .car-gallery-tabs {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .car-gallery-tab {
        width: 100%;
        max-width: 400px;
        align-items: center;
        text-align: center;
        padding: 8px 10px;
    }

    .car-gallery-tab-meta {
        margin-top: 2px;
    }

    .car-gallery-tab-title {
        text-align: center;
    }

    .car-gallery-track-wrapper {
        width: 100%;
    }

    /* .car-gallery-nav {
        order: -1;
    } */

    .car-gallery-content {
        padding: 0;
    }

    .car-gallery-heading {
        max-width: 400px;
    }

    .car-gallery-legend {
        margin-top: 15px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .wish-carousel-btn img {
        width: 15px;
    }

    .wish-card-drawing {
        width: 100%;
        max-width: 80%;
    }

    .wish-content {
        width: 80%;
        margin: 30px auto 10px;
    }

    .projects-section {
        max-width: 310px;
    }

    .wish-carousel-btn {
        width: 20px;
        height: 20px;
    }

    .wish-card-name {
        font-size: 12px;
    }

    .wish-card {
        padding: 0 5px;
        gap: 2px;
        margin-bottom: 15px;
    }
    
    .wish-card-items {
        min-height: 95px;
    }

    .wish-card-avatar-wrapper, .wish-card-avatar {
        width: 60px;
        height: 60px;
    }

    .wish-card-avatar-frame {
        width: 68px;
        height: 65px;
        margin-left: 1px;
        margin-top: -3px;
    }

    .car-gallery-section {
        padding: 28px 18px 10px;
    }

    .car-gallery-legend {
        margin-top: 5px;
    }

    .car-gallery-tabs {
        width: 90%;
    }

    .car-gallery-tab {
        padding: 5px 10px;
        gap: 2px;
    }

    .car-gallery-tab-title {
        font-size: 15px;
    }

    .car-gallery-tab-meta {
        font-size: 12px;
    }

    .car-gallery-dot {
        width: 10px;
        height: 10px;
    }

    .car-gallery-grid {
        gap: 12px;
    }

    .car-gallery-heading {
        max-width: 340px;
    }

    .car-gallery-text {
        width: 85%;
    }

    .car-gallery-slider {
        gap: 0;
    }
}

.project-popup-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.project-popup-modal.active {
    display: flex;
}

.project-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.project-popup-dialog {
    position: relative;
    width: 100%;
    max-width: 860px;
    background: url('../images/project-popup.webp') no-repeat center top;
    background-size: cover;
    padding: 40px 25px 25px;
    border-radius: 24px;
    overflow: hidden;
    z-index: 1;
}

.project-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: #FFF;
    font-size: 46px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-popup-close:hover {
    transform: scale(1.05);
}

.project-popup-close:active {
    transform: scale(0.95);
}

.project-popup-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.project-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.project-popup-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-popup-title {
    font-size: 22px;
    font-weight: 700;
    color: #FFF;
    margin: 0;
}

.project-popup-location {
    font-size: 36px;
    font-weight: 700;
    color: #FFF;
    margin: 0;
}

.project-popup-body {
    background-color: #FFEFE6;
    padding: 20px;
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    gap: 20px;
    border-radius: 20px;
}

.project-popup-left,
.project-popup-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.project-popup-label {
    font-size: 20px;
    font-weight: 700;
    color: #FF6B35;
    margin: 0;
}

.project-popup-happiness,
.project-popup-address {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
    color: #F47920;
    margin: 0 0 5px;
}

.project-popup-content-left p, 
.project-popup-content-right p {
    margin: 0 0 12px;
    font-size: 14px;
    /* line-height: 1.6; */
    color: #F47920;
    font-weight: 600;
}

.project-popup-hero {
    overflow: hidden;
    margin-bottom: 15px;
}

.project-popup-hero img,
.project-popup-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-popup-gallery {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
}

@media (max-width: 900px) {
    .project-popup-dialog {
        padding: 30px 24px 40px;
    }

    .project-popup-title {
        font-size: 32px;
    }

    .project-popup-location {
        font-size: 18px;
    }
}

@media (max-width: 540px) {

    .project-popup-body {
        grid-template-columns: 1fr;
    }

    .project-popup-content {
        gap: 15px;
    }
    .project-popup-dialog {
        width: 90%;
        padding: 24px 10px 10px;
    }

    .project-popup-title {
        font-size: 16px;
    }

    .project-popup-location {
        font-size: 22px;
    }

    .project-popup-label {
        font-size: 16px;
    }

    .project-popup-left, .project-popup-right {
        gap: 0;
    }

    .project-popup-happiness, .project-popup-address {
        font-size: 13px;
        line-height: 1.2;
        margin-top: 5px;
    }
    .project-popup-gallery, .project-popup-hero {
        display: none;
    }

    .project-popup-body {
        gap: 0;
    }

    .project-popup-content-left p, .project-popup-content-right p {
        font-size: 12px;
    }

    .project-popup-close {
        top: 2px;
        right: 2px;
        font-size: 36px;
        width: 36px;
        height: 36px;
    }
}

.wish-detail-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 10050;
}

.wish-detail-modal.active {
    display: flex;
}

.wish-detail-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.wish-detail-dialog {
    position: relative;
    width: 100%;
    max-width: 860px;
    background: #FFF;
    border-radius: 24px;
    padding: 30px 30px 30px;
    overflow: visible;
    z-index: 1;
}

.wish-detail-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 40px;
    color: #FF6B35;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease;
}

.wish-detail-close:hover {
    transform: scale(1.1);
}

.wish-detail-close:active {
    transform: scale(0.95);
}

.wish-detail-content {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 30px;
    align-items: flex-start;
}

.wish-detail-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    background: url('../images/baby-popup-info.webp') no-repeat center top;
    background-size: 100% 100%;
    height: 100%;
    padding: 90px 40px 50px;
}

.wish-detail-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.wish-detail-avatar-wrap {
    position: absolute;
    top: -10%;
    left: 16%;
    z-index: 6;
}

.wish-detail-avatar {
    position: relative;
    width: 160px;
    height: 160px;
}

.wish-detail-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wish-detail-avatar img:first-child {
    border-radius: 50%;
    width: 98%;
    height: 98%;
    margin-left: 0;
    margin-top: -4px;
}

.wish-detail-avatar-frame {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: visible;
    left: -1%;
    top: -3%;
}

.wish-detail-name {
    font-size: 22px;
    font-weight: 700;
    color: #151282;
    margin: 0;
}

.wish-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #151282;
}

.wish-detail-dot {
    font-size: 16px;
    color: #FF6B35;
}

.wish-detail-quote {
    font-size: 14px;
    color: #FF6500;
    font-style: italic;
    font-weight: 600;
    max-width: 300px;
    margin-top: 40px;
}

.wish-detail-quote-icon {
    color: #FF6B35;
    font-size: 58px;
    font-weight: 700;
    /* margin: 0 4px; */
    position: absolute;
    margin-top: 2%;
}
.wish-detail-quote .wish-detail-quote-icon:first-child {
    margin-top: -4%;
    margin-left: -2%;
}

.wish-detail-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.wish-detail-drawing-title {
    font-size: 20px;
    font-weight: 800;
    color: #FF6B35;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wish-detail-drawing {
    width: 100%;
    max-width: 420px;
    overflow: hidden;
}

.wish-detail-drawing img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.wish-detail-action {
    margin: 30px auto 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: block;
    padding: 0;
}

.wish-detail-action:disabled {
    opacity: 0.6;
    cursor: wait;
    pointer-events: none;
    transform: none;
}

.wish-detail-action:hover {
    transform: scale(1.05);
}

.wish-detail-action:active {
    transform: scale(0.95);
}

.wish-detail-action img {
    width: 80%;
    max-width: 280px;
}

.wish-detail-note {
    font-size: 12px;
    color: #151282;
    text-align: center;
    margin: 0;
    font-style: italic;
}
.wish-detail-confirm {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-radius: 24px;
    z-index: 5;
}
.wish-detail-confirm.active {
    display: flex;
}
.wish-detail-confirm-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 18px 50px rgba(21, 18, 130, 0.18);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.wish-detail-confirm-title {
    font-size: 20px;
    font-weight: 700;
    color: #FF6B35;
    margin: 0;
    line-height: 1.2;
}
.wish-detail-confirm-message {
    font-size: 12px;
    color: #151282;
    margin: 0;
}
.wish-detail-confirm-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 10px;
}
.wish-detail-confirm-btn {
    min-width: 120px;
    padding: 12px 18px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wish-detail-confirm-accept {
    background: linear-gradient(135deg, #ff8743 0%, #ff6500 100%);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(255, 101, 0, 0.35);
}
.wish-detail-confirm-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 101, 0, 0.4);
}
.wish-detail-confirm-accept:active {
    transform: translateY(0);
}
.wish-detail-confirm-cancel {
    background: #f0f3ff;
    color: #151282;
    box-shadow: 0 6px 16px rgba(21, 18, 130, 0.15);
}
.wish-detail-confirm-cancel:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(21, 18, 130, 0.2);
}
.wish-detail-confirm-cancel:active {
    transform: translateY(0);
}
.wish-detail-note.is-gifted {
    margin: 20px 0;
}

.wish-detail-heart {
    position: absolute;
    right: -80px;
    bottom: -40px;
    width: 200px;
    pointer-events: none;
}

/* Seed Section */
.seed-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0; /* Don't change*/
    z-index: 2;
}

.seed-heart-line {
    position: absolute;
    width: 120%;
    height: auto;
    pointer-events: none;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.seed-content {
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    top: 30px;
}

.seed-card {
    position: relative;
    width: 80%;
    max-width: 600px;
    background: url('../images/end-bg.webp') no-repeat center;
    background-size: 100% 100%;
    padding: 90px 30px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 7%;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

.seed-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    position: relative;
}

.seed-avatar-block {
    position: absolute;
    top: -75%;
    left: 50%;
    transform: translateX(-50%);
}

.seed-avatar {
    position: relative;
    width: 180px;
    height: 180px;
    z-index: 7;
}

.seed-avatar img {
    width: 100%;
    height: 100%
}

.seed-avatar img:first-child {
    width: 97%;
    height: 97%;
    margin-top: -8px;
    border-radius: 50%;
    object-fit: cover;
}

.seed-avatar-frame {
    position: absolute;
    inset: 0;
    pointer-events: none;
    top: -5%;
}

.seed-thanks {
    width: 250px;
    height: auto;
    margin-top: 0;
}

.seed-user-name {
    font-size: 36px;
    font-weight: 700;
    color: #FFF;
    margin: 0;
    text-align: center;
    width: 100%;
}

.seed-message {
    font-size: 24px;
    font-weight: 600;
    color: #FFF;
    margin: 0;
}

.seed-baby-name {
    font-size: 36px;
    font-weight: 700;
    color: #FFF;
    margin: 0;
}

.seed-actions {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 4;
}

.seed-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.seed-btn img {
    width: auto;
    height: 78px;
}

.seed-btn:hover {
    transform: scale(1.05);
}

.seed-btn:active {
    transform: scale(0.95);
}

.seed-carousel-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
}

.seed-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.seed-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.seed-carousel-track .seed-card {
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
    margin-top: 17%;
    margin-left: auto;
    margin-right: auto;
}

.seed-carousel-nav {
    background: transparent;
    border: none;
    width: 40px;
    height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
    padding: 0;
    z-index: 5;
}

.seed-carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.seed-carousel-nav:hover:not(:disabled) {
    transform: scale(1.1);
}

.seed-carousel-nav img {
    width: 30px;
    height: auto;
}

.seed-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0 0 20px;
    flex-wrap: wrap;
}

.seed-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.seed-carousel-dot.active {
    background: #FF6B35;
    border-color: #FF6B35;
    transform: scale(1.2);
}

.seed-carousel-dot:hover {
    background: rgba(255, 107, 53, 0.7);
    border-color: rgba(255, 107, 53, 0.7);
}

.seed-extra-info {
    /* margin-top: -10px; */
    margin-top: 4%;
    width: 100%;
    max-width: 720px;
    padding: 20px;
    background: #FFF;
    border-radius: 20px;
    z-index: 10;
    margin-bottom: 30px;
}
.seed-extra-heading {
    font-size: 14px;
    font-weight: 700;
    color: #151282;
    font-style: italic;
    text-align: center;
    margin: 0 0 10px;
}
.seed-extra-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.seed-extra-block {
    flex: 1 1 320px;
}
.seed-extra-label {
    font-size: 14px;
    font-weight: 700;
    color: #151282;
    margin: 0 0 8px;
    font-style: italic;
}
.seed-extra-text {
    font-size: 14px;
    color: #151282;
    margin: 0;
    font-style: italic;
}
.seed-extra-list {
    margin: 0;
    padding-left: 20px;
    font-size: 14px;
    color: #151282;
    font-style: italic;
}
.seed-extra-list li {
    margin-bottom: 0;
}
.seed-extra-list strong {
    color: #151282;
}

.view-more-btn {
    background: transparent;
    border: none;
    position: absolute;
    top: 45%;
    left: 91%;
    z-index: 1;
    cursor: pointer;
}
.view-more-btn img {
    width: 190px;
    height: auto;
}

@media (max-width: 900px) {

    .seed-card {
        padding: 80px 30px 40px;
    }

    .seed-avatar {
        width: 160px;
        height: 160px;
    }

    .seed-thanks {
        width: 190px;
    }

    .seed-message {
        font-size: 16px;
    }

    .seed-btn img {
        height: 70px;
    }
}

@media (max-width: 600px) {
    .seed-card {
        padding: 90px 24px 50px;
    }

    .seed-avatar {
        width: 140px;
        height: 140px;
    }

    .seed-user-name {
        font-size: 26px;
    }

    .seed-baby-name {
        font-size: 22px;
    }

    .wish-detail-close {
        font-size: 36px;
    }

    .wish-detail-avatar-wrap {
        top: -7%;
        left: 35%;
    }

    .wish-detail-avatar {
        width: 110px;
        height: 110px;
    }

    .wish-detail-left {
        padding: 50px 30px 40px;
    }

    .wish-detail-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .wish-detail-info {
        gap: 5px;
    }

    .wish-detail-quote {
        margin-top: 10px;
    }

    .wish-detail-dialog {
        padding: 20px 10px 20px;
    }

    .wish-detail-quote-icon {
        margin-top: 4%;
        margin-left: -5%;
    }

    .wish-detail-quote .wish-detail-quote-icon:first-child {
        margin-top: -8%;
        margin-left: -5%;
    }

    .wish-detail-drawing img {
        width: 92%;
        height: auto;
        border-radius: 10px;
        margin: 0 auto;
    }

    .wish-detail-note {
        padding: 0 20px;
    }

    .wish-detail-heart {
        position: absolute;
        right: -42px;
        bottom: -40px;
        width: 90px;
    }

    .seed-content {
        top: 30px
    }

    .seed-btn img {
        height: 60px;
    }

    .seed-carousel-nav {
        width: 30px;
        height: 50px;
    }

    .seed-carousel-nav img {
        width: 20px;
    }

    .seed-carousel-dots {
        gap: 6px;
    }

    .seed-carousel-dot {
        width: 8px;
        height: 8px;
    }

    .seed-heart-line {
        width: 260%;
        left: 35%;
    }    

    .no-data {
        font-size: 14px;
    }

    .wish-cards-container.no-data {
        min-height: 160px;
    }

    .seed-extra-info {
        padding: 20px;
        margin-top: 12%;
    }

    .seed-extra-content {
        gap: 10px;
    }

    .seed-extra-block {
        flex: 1 1 100%;
    }

    .seed-extra-heading {
        font-size: 13px;
    }

    .seed-extra-label,
    .seed-extra-text,
    .seed-extra-list {
        font-size: 13px;
    }

    .view-more-btn img {
        width: 160px;
    }

    .seed-carousel-container {
        gap: 0;
    }

    .seed-carousel-track .seed-card {
        margin-top: 22%;
    }

    .seed-avatar img:first-child {
        margin-top: -5px;
    }

    .seed-carousel-dots {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .seed-avatar {
        width: 120px;
        height: 120px;
    }

    .seed-card {
        width: 100%;
    }

    .seed-thanks {
        width: 180px;
    }

    .seed-card {
        padding: 60px 24px 40px;
    }

    .seed-avatar-block {
        top: -64%;
        left: 20%;
    }

    .seed-actions {
        grid-template-columns: 1fr;
        display: grid;
    }

    .seed-btn img {
        height: 60px;
    }

    .seed-heart-line {
        width: 400%;
        left: 0;
        z-index: 1;
    }

    .popup-header h2 {
        font-size: 13px;
    }

    .popup-content .registration-form {
        max-width: 85%;
        padding: 9vh 30px 30px 26px;
    }

    .form-field label {
        font-size: 14px;
        min-width: auto;
    }

    .form-field input, .form-field select {
        font-size: 14px;
        padding: 0 5px 0px;
    }

    .radio-group {
        gap: 5px;
    }

    .form-field.field-department {
        display: grid;
    }

    .popup-login-switch span {
        display: none;
    }
    .popup-form-login .form-field {
        display: grid;
    }

    .wish-detail-action {
        margin: 15px auto 5px;
    }
}
