* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
    padding: 20px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

/* Menu Logo */
.menu-logo {
    display: flex;
    align-items: center;
}

.menu-logo img {
    height: 24px;
    width: auto;
}




/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #00315A;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.side-menu.active {
    right: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

/* Menu Toggle Button */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    /*width: 40px;
    height: 40px;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle img {
    width: 24px;
    height: 24px;
}

/* Menu Close Button */
.menu-close {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close img {
    width: 24px;
    height: 24px;
}

/* Submenu Toggle Icon */
.menu-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.menu-toggle-icon img {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

/* Submenu Active State */
.menu-link[data-submenu].active .menu-toggle-icon img {
    transform: rotate(45deg);
    filter: brightness(0) saturate(100%) invert(85%) sepia(14%) saturate(896%) hue-rotate(355deg) brightness(95%) contrast(89%);
}

.menu-nav {
    padding: 0;
}

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px 5px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0;
    cursor: pointer;
}

.menu-link:hover {
    color: #DCCAA4;
}

.menu-link[data-submenu].active{
    color: #DCCAA4;
}

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.submenu.active {
    max-height: 500px;
    padding-bottom: 0;
}

.submenu-item {
    padding: 15px 30px 5px 15px;
    color: #fff;
    text-decoration: none;
    display: block;
    font-size: 17px;
}

.submenu-item:hover {
    background: rgba(255,255,255,0.05);
}

.submenu-item.view-all {
    text-decoration: underline;
    /*font-weight: 600;*/
}

/* Main Content */
.main-content {
    margin-top: 70px;
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    /*padding: 0 10px;*/
}

.slider-container {
    display: flex;
    transition: transform 0.3s ease;
    cursor: grab;
}

.slider-container:active {
    cursor: grabbing;
}

.slide {
    min-width: 100%;
    height: 500px;
    position: relative;
    flex-shrink: 0;
}

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

.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 4px;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}


/* Link Section */
.link-section {
    padding: 20px 0px 50px 0px;
    text-align: center;
    background: #fff;
}

.link-button {
    color: #00315A;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    border-bottom: 1.8px solid #00315A;
    padding-bottom: 0;
    display: inline-block;
}

/* Responsive */
@media (min-width: 1024px) {
    .link-section {
        padding: 30px 60px 80px 60px;
    }
}

/* Image Section */
.image-section {
    position: relative;
    cursor: pointer;
}

.image-section img {
    width: 100%;
    display: block;
}

.image-section-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

/* Double Image Grid */
.double-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.grid-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    height: auto;
}

.grid-item .grid-bg {
    width: 100%;
    height: auto;
    display: block;
}

.grid-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    max-height: 30px;
    width: auto;
    max-width: 80%;
    pointer-events: none;
    object-fit: contain;
}

.don-logo {
    max-height: 45px !important;
}

/* Responsive */
@media (min-width: 768px) {
    .grid-logo {
        max-height: 40px;
    }
    .don-logo {
        max-height: 65px !important;
    }
    .swiper-slide {
        width: 85% !important;
    }
}

@media (min-width: 1024px) {
    .grid-item {
        height: 620px;
    }

    .grid-item .grid-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }

    .grid-logo {
        max-height: 45px;
    }
    .don-logo {
        max-height: 70px !important;
    }

    .swiper-slide {
        width: 90%;
    }
}

/* Triple Stack */
.triple-stack {
    display: flex;
    flex-direction: column;
}

.triple-stack .image-section {
    margin-bottom: 4px;
}

.triple-stack .image-section:last-child {
    margin-bottom: 0;
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
    .triple-stack {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 4px;
    }

    .triple-stack .image-section {
        margin-bottom: 0;
    }
}

/* Portfolio Stack */
.portfolio-stack {
    display: flex;
    flex-direction: column;
}

.portfolio-stack .image-section {
    margin-bottom: 4px;
}

.portfolio-stack .image-section:last-child {
    margin-bottom: 0;
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
    .portfolio-stack {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }

    .portfolio-stack .image-section {
        margin-bottom: 0;
    }
}

/* Green Responsibility */
.green-section {
    background: #9EC1E0;
    padding: 30px 20px;
    margin-bottom: 5px;
}

.green-title {
    font-size: 16px;
    font-weight: 600;
    color: #001526;
    margin-bottom: 20px;
    letter-spacing: 0;
}

.green-description {
    font-size: 16px;
    line-height: 1.6;
    color: #001526;
    margin-bottom: 30px;
    letter-spacing: 0;
    font-weight: 400;
}

.green-list {
    margin-bottom: 30px;
}

.green-item {
    padding: 13px 0;
    border-bottom: 1.5px solid #001526;
    font-size: 14px;
    font-weight: 600;
    color: #00315A;
    letter-spacing: 0;
}

.green-item:first-child {
    border-top: 1.5px solid #001526;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

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

.modal {
    background: #F5F5F5;
    /*border-radius: 10px;*/
    padding: 40px 30px;
    max-width: 500px;
    width: 100%;
    position: relative;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
}

.modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #00315A;
    margin-bottom: 20px;
    line-height: 1.4;
}

.modal-description {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.modal-button {
    background: #00315A;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.modal-footer {
    font-size: 14px;
    color: #333;
}

.modal-footer a {
    color: #00315A;
    text-decoration: underline;
    font-weight: 600;
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.heroSwiper {
    width: 100%;
    height: auto;
    overflow: visible;
}

.swiper-slide {
    height: auto;
    width: 85%;
}

.slide-link {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    text-decoration: none;
}

.slide-link .slide-bg {
    width: 100%;
    height: auto;
    display: block;
}

.slide-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    /*height: 80px;*/
    max-height: 35px;
    width: auto;
    max-width: 90%;
    pointer-events: none;
    object-fit: contain;
}

/* Responsive */
@media (min-width: 768px) {
    .slide-logo {
        height: 40px;
        max-height: 40px;
    }
}

@media (min-width: 1024px) {
    .slide-logo {
        height: 50px;
        max-height: 50px;
    }
}


/* Bottom Navigation Bar */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #00315A;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    z-index: 998;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.bottom-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 8px;
    text-decoration: none;
    position: relative;
}

.bottom-nav-item img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

/* Cart Icon Wrapper */
.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #EB5757;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
}

/* Responsive */
@media (min-width: 768px) {
    .bottom-nav-item img {
        width: 32px;
        height: 32px;
    }

    .cart-badge {
        width: 22px;
        height: 22px;
        font-size: 12px;
        top: -10px;
        right: -10px;
    }
}

@media (min-width: 1024px) {
    .bottom-nav {
        padding: 15px 0;
    }
}

/* Inner Header (Back Button) */
.inner-header {
    background: #fff;
}

.back-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.back-button img {
    width: 24px;
    height: 24px;
}

/* Inner Page */
.inner-page {
    margin-top: 70px;
}

/* Page Title Section */
.page-title-section {
    padding: 0px 20px 10px 20px;
    background: #fff;
}

.page-title {
    font-size: 20px;
    font-weight: 600;
    color: #00315A;
    letter-spacing: 0;
    margin: 0;
}

/* About Image */
.second-page-image {
    width: 100%;
    overflow: hidden;
}

.second-page-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* About Text Section */
.second-page-text-section {
    padding: 20px 20px 20px 20px;
    background: #fff;
}

.second-page-heading {
    font-size: 16px;
    font-weight: 600;
    color: #00315A;
    letter-spacing: 0;
    margin-bottom: 20px;
    line-height: 1.4;
}

.light-heading{
    font-weight: 400 !important;
    font-size: 16px;
}

.heading-dash {
    letter-spacing: -5px;
    padding-right: 4px;
}


.second-page-paragraph {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0;
    color: #001526;
    margin-bottom: 20px;
}

.second-page-paragraph:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (min-width: 768px) {
    .page-title {
        font-size: 36px;
    }

    .second-page-heading {
        font-size: 24px;
    }

    .second-page-paragraph {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .page-title-section {
        padding: 40px 60px;
    }

    .second-page-text-section {
        padding: 60px 60px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .second-page-image {
        height: 400px;
    }

    .second-page-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .page-title {
        font-size: 42px;
    }

    .second-page-heading {
        font-size: 28px;
    }
}

/* Collection Grid - Responsive */
.collection-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.collection-grid .grid-item {
    width: 100%;
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
    .collection-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }
}

/* Contact Info Section */
.contact-info-section {
    padding: 0px 20px 20px 20px;
    background: #fff;
}

.contact-email,
.contact-website {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #00315A;
    text-decoration: none;
    margin-bottom: 10px;
}

.contact-email:hover,
.contact-website:hover {
    text-decoration: underline;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}


.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 30px;
    height: 30px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 30px 20px 40px 20px;
    background: #fff;
}

.contact-form-title {
    font-size: 20px;
    font-weight: 600;
    color: #00315A;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.contact-form-description {
    font-size: 20px;
    line-height: 1.6;
    color: #001526;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 0;
}

/* Form Styles */
.contact-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-label {
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 16px;
    color: #D1D1D1;
    pointer-events: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #D1D1D1;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #333;
    background: transparent;
    outline: none;
    transition: border-color 0.3s;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label,
.form-input.has-value ~ .form-label,
.form-select:focus ~ .form-label,
.form-select:valid ~ .form-label,
.form-textarea:focus ~ .form-label,
.form-textarea:not(:placeholder-shown) ~ .form-label,
.custom-select-button:focus ~ .form-label,
.custom-select-button.has-value ~ .form-label {
    top: -8px;
    font-size: 12px;
    color: #D1D1D1;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-bottom-color: #00315A;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-bottom-color: #EB5757;
}

.form-error {
    display: none;
    color: #EB5757;
    font-size: 14px;
    margin-top: 5px;
}

.form-group.show-error .form-error {
    display: block;
}

/* Phone Group */
.phone-group {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.phone-input-wrapper {
    flex: 1;
    position: relative;
    margin-bottom: 0;
}

.phone-prefix-dropdown {
    position: relative;
}

.prefix-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 12px;
    border: none;
    border-bottom: 1px solid #D1D1D1;
    background: transparent;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.prefix-selector:hover {
    border-bottom-color: #00315A;
}

.prefix-flag {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
}

.prefix-code {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    min-width: 50px;
}

.dropdown-arrow {
    font-size: 10px;
    color: #D1D1D1;
    margin-left: 4px;
}

.prefix-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 370px;
    max-width: 370px;
    max-height: 370px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #D1D1D1;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    margin-top: 5px;
}

.prefix-dropdown.active {
    display: block;
}

.prefix-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.prefix-option:hover {
    background: #F5F5F5;
}

.option-flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.option-code {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    min-width: 50px;
    flex-shrink: 0;
}

.option-name {
    font-size: 14px;
    color: #666;
    flex: 1;
}

.phone-input {
    width: 100%;
}

/* Country Select Wrapper */
.country-select-wrapper {
    position: relative;
}

/* Custom Select Dropdown */
.custom-select-wrapper {
    position: relative;
}

.custom-select-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #D1D1D1;
    background: transparent;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
    text-align: left;
}

.custom-select-button:hover {
    border-bottom-color: #00315A;
}

.selected-text {
    font-size: 16px;
    color: #D1D1D1;
    flex: 1;
}

.custom-select-button.has-value .selected-text {
    color: #333;
}

.custom-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #D1D1D1;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    margin-top: 5px;
}

.custom-dropdown.active {
    display: block;
}

.custom-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.custom-option:hover {
    background: #F5F5F5;
}

.custom-option .option-flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.custom-option .option-name {
    font-size: 14px;
    color: #333;
    flex: 1;
}

/* Select Dropdown */
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23D1D1D1' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 30px;
    cursor: pointer;
}

/* Textarea */
.form-textarea {
    resize: vertical;
    min-height: 80px;
}

/* Checkbox */
.form-checkbox {
    display: flex;
    /*align-items: flex-end;*/
    gap: 12px;
    margin-bottom: 30px;
}

.form-check-input {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid #00315A;
    cursor: pointer;
    margin-top: 2px;
}

.form-checkbox label {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    cursor: pointer;
}

.privacy-link {
    color: #00315A;
    text-decoration: underline;
}

/* Submit Button */
.form-submit {
    width: 77%;
    padding: 12px;
    background: #E8E8E8;
    color: #fff;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    cursor: not-allowed;
    transition: background 0.3s;
}

.form-submit:not(:disabled) {
    background: #00315A;
    cursor: pointer;
}

.form-submit:not(:disabled):hover {
    background: #00213d;
}

/* Page Footer */
.page-footer {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
}

.footer-credit {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.footer-credit a {
    color: #00315A;
    text-decoration: underline;
}

/* Responsive */
@media (min-width: 768px) {
    .contact-email,
    .contact-website {
        font-size: 20px;
    }

    .contact-form-title {
        font-size: 28px;
    }

    .contact-form-description {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .contact-info-section,
    .contact-form-section,
    .page-footer {
        padding-left: 60px;
        padding-right: 60px;
    }

    .contact-form {
        max-width: 800px;
    }
}

.contact-border{
    border-bottom: 1px solid #DCCAA4;
    padding-top: 10px;
}

/* Auth Header */
.auth-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.need-help-link {
    font-size: 16px;
    color: #00315A;
    text-decoration: underline;
    font-weight: 500;
}

/* Auth Form Section */
.auth-form-section {
    padding: 40px 20px;
    background: #fff;
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
}

.auth-form {
    max-width: 600px;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Password Group */
.password-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 0;
    top: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle img {
    width: 20px;
    height: 20px;
}

/* Forgot Password Link */
.forgot-password-link {
    margin-top: 15px;
    margin-bottom: 40px;
}

.link-text {
    color: #00315A;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 500;
}

/* Auth Submit Button */
.auth-submit {
    margin-top: auto;
    /*margin-bottom: 20px;*/
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    margin-top: 20px;
}

.auth-footer-text {
    font-size: 16px;
    color: #333;
}

.auth-link {
    color: #00315A;
    text-decoration: underline;
    font-weight: 600;
}

/* Responsive */
@media (min-width: 768px) {
    .need-help-link {
        font-size: 18px;
    }

    .link-text {
        font-size: 18px;
    }

    .auth-footer-text {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .auth-form-section {
        padding: 60px 60px;
    }

    .auth-form {
        max-width: 800px;
    }
}


/* Auth Header */
.auth-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.need-help-link {
    font-size: 16px;
    color: #00315A;
    text-decoration: underline;
    font-weight: 500;
}

/* Auth Form Section */
.auth-form-section {
    padding: 40px 20px;
    background: #fff;
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
}

.auth-form {
    max-width: 600px;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Password Group */
.password-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 0;
    top: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle img {
    width: 20px;
    height: 20px;
}

/* Forgot Password Link */
.forgot-password-link {
    margin-top: 15px;
    margin-bottom: 40px;
}

.link-text {
    color: #00315A;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 500;
}

/* Auth Submit Button */
.auth-submit {
    margin-top: auto;
    /*margin-bottom: 20px;*/
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    margin-top: 20px;
}

.auth-footer-text {
    font-size: 16px;
    color: #333;
}

.auth-link {
    color: #00315A;
    text-decoration: underline;
    font-weight: 600;
}

/* Signup Steps */
.signup-step {
    display: none;
    flex: 1;
    flex-direction: column;
}

.signup-step.active {
    display: flex;
}

/* Signup Info Text */
.signup-info-text {
    margin: 20px 0 30px;
}

.signup-info-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Responsive */
@media (min-width: 768px) {
    .need-help-link {
        font-size: 18px;
    }

    .link-text {
        font-size: 18px;
    }

    .auth-footer-text {
        font-size: 18px;
    }

    .signup-info-text p {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .auth-form-section {
        padding: 60px 60px;
    }

    .auth-form {
        max-width: 800px;
    }
}

/* ==================================
   MODAL CSS - Tüm Sayfalar İçin
   ================================== */

/* Profile Modal Overlay - Genel Kullanım için */
.profile-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2001;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.profile-modal-overlay.active {
    display: flex;
}

/* Profile Modal */
.profile-modal {
    background: #F5F5F5;
    padding: 40px 30px;
    max-width: 500px;
    width: 100%;
    position: relative;
    text-align: center;
}

.profile-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.profile-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #00315A;
    margin-bottom: 20px;
    line-height: 1.4;
}

.profile-modal-description {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

/* Delete Input */
.profile-delete-input-wrapper {
    margin-bottom: 30px;
}

.profile-delete-input {
    width: 100%;
    padding: 15px;
    border: none;
    border-bottom: 2px solid #D1D1D1;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #333;
    background: transparent;
    outline: none;
    text-align: center;
    letter-spacing: 2px;
    font-weight: 500;
}

.profile-delete-input::placeholder {
    color: #D1D1D1;
    letter-spacing: 2px;
}

.profile-delete-input:focus {
    border-bottom-color: #00315A;
}

/* Modal Actions */
.profile-modal-actions {
    display: flex;
    gap: 15px;
}

.profile-modal-button {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #00315A;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.profile-modal-button.cancel-button {
    background: transparent;
    color: #00315A;
}

.profile-modal-button.cancel-button:hover {
    background: #00315A;
    color: #fff;
}

.profile-modal-button.confirm-button {
    background: #00315A;
    color: #fff;
}

.profile-modal-button.confirm-button:hover {
    background: #00213d;
}

.profile-modal-button.confirm-button:disabled {
    background: #E8E8E8;
    border-color: #E8E8E8;
    color: #999;
    cursor: not-allowed;
}

/* Modal Responsive */
@media (min-width: 768px) {
    .profile-modal-title {
        font-size: 24px;
    }

    .profile-modal-description {
        font-size: 16px;
    }
}

/* ==================================
   CONFIRMATION PAGE CSS
   ================================== */

/* Confirmation Page */
.confirmation-page {
    /*background: #F5F5F5;*/
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
}

/* Confirmation Content */
.confirmation-content {
    padding: 40px 20px;
    flex: 1;
}

.confirmation-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.confirmation-text:last-child {
    margin-bottom: 0;
}

/* Confirmation Footer */
.confirmation-footer {
    padding: 40px 20px 100px 20px;
    text-align: center;
}

.confirmation-footer-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.confirmation-button {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    padding: 18px 40px;
    background: #00315A;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.confirmation-button:hover {
    background: #00213d;
}

/* Confirmation Responsive */
@media (min-width: 768px) {
    .confirmation-text {
        font-size: 20px;
    }

    .confirmation-footer-text {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .confirmation-content {
        padding: 80px 60px;
        max-width: 1000px;
        margin: 0 auto;
        width: 100%;
    }

    .confirmation-footer {
        padding: 60px 60px 100px 60px;
    }

    .confirmation-text {
        font-size: 22px;
        margin-bottom: 40px;
    }
}

/* Wishlist Icon Wrapper */
.wishlist-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wishlist Badge */
.wishlist-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #EB5757;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
}

/* Responsive */
@media (min-width: 768px) {
    .wishlist-badge {
        width: 22px;
        height: 22px;
        font-size: 12px;
        top: -10px;
        right: -10px;
    }
}

/* Auth Info Text */
.auth-info-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 30px 0 40px 0;
}

/* Confirmation Page Adjustments */
.confirmation-page .confirmation-content {
    flex: 1;
    /*display: flex;*/
    align-items: flex-start;
    padding-top: 40px;
}

.confirmation-page .confirmation-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.confirmation-page .confirmation-footer {
    margin-top: auto;
    padding-top: 40px;
}

.confirmation-page .confirmation-footer-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
}

.confirmation-page .confirmation-button {
    display: block;
    width: 100%;
    padding: 18px;
    background: #00315A;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    transition: background 0.3s;
}

.confirmation-page .confirmation-button:hover {
    background: #00213d;
}

/* Responsive */
@media (min-width: 768px) {
    .auth-info-text {
        font-size: 18px;
    }

    .confirmation-page .confirmation-text {
        font-size: 20px;
    }

    .confirmation-page .confirmation-footer-text {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .confirmation-page .confirmation-content {
        padding-top: 60px;
    }

    .confirmation-page .confirmation-text {
        font-size: 22px;
    }
}
