/* =========================================================
   AquaShop Frontend Auth
   - Ortalı giriş / üyelik ekranı
   - Görselsiz sade premium yapı
========================================================= */

.aq-auth-page {
    min-height: 640px;
    padding: 52px 0 76px;
    background:
        radial-gradient(circle at 15% 0%, rgba(7, 152, 189, 0.07), transparent 340px),
        radial-gradient(circle at 88% 14%, rgba(7, 152, 189, 0.045), transparent 300px),
        linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}

.aq-auth-page-clean {
    display: flex;
    align-items: center;
}

.aq-auth-clean-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.aq-auth-card {
    width: 100%;
    max-width: 486px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.095);
    padding: 30px;
    backdrop-filter: blur(14px);
}

.aq-auth-card-clean {
    margin: 0 auto;
}

.aq-auth-brand-mini {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.aq-auth-logo-mini {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
}

.aq-auth-logo-mini span {
    color: #0798bd;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -0.8px;
    line-height: 1;
}

.aq-auth-logo-mini small {
    margin-top: 5px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.aq-auth-card-head {
    margin-bottom: 22px;
}

.aq-auth-card-head-center {
    text-align: center;
}

.aq-auth-card-head span {
    display: inline-flex;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eef9fc;
    color: #056f8d;
    border: 1px solid rgba(7, 152, 189, 0.12);
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.aq-auth-card-head h1,
.aq-auth-card-head h2 {
    margin: 12px 0 0;
    color: #111827;
    font-size: 30px;
    font-weight: 850;
    letter-spacing: -0.75px;
    line-height: 1.16;
}

.aq-auth-card-head p {
    margin: 8px auto 0;
    max-width: 390px;
    color: #738091;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.58;
}

.aq-auth-alert {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 16px;
    font-size: 12.5px;
    font-weight: 650;
    line-height: 1.45;
}

.aq-auth-alert i {
    width: 34px;
    height: 34px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.aq-auth-alert span {
    display: block;
}

.aq-auth-alert-success {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    color: #047857;
}

.aq-auth-alert-success i {
    background: #d1fae5;
    color: #047857;
}

.aq-auth-alert-danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.aq-auth-alert-danger i {
    background: #fee2e2;
    color: #b91c1c;
}

.aq-auth-form {
    display: grid;
    gap: 14px;
}

.aq-auth-field {
    display: grid;
    gap: 7px;
}

.aq-auth-field label {
    color: #3d4857;
    font-size: 12.5px;
    font-weight: 800;
}

.aq-auth-input {
    position: relative;
}

.aq-auth-input > i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0798bd;
    font-size: 18px;
    pointer-events: none;
}

.aq-auth-input input {
    width: 100%;
    height: 48px;
    border-radius: 15px;
    border: 1px solid #dfe7ee;
    background: #f8fafc;
    color: #111827;
    outline: none;
    padding: 0 46px;
    font-size: 13.5px;
    font-weight: 650;
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.aq-auth-input input::placeholder {
    color: #9aa5b2;
    font-weight: 500;
}

.aq-auth-input input:focus {
    background: #ffffff;
    border-color: rgba(7, 152, 189, 0.42);
    box-shadow: 0 0 0 4px rgba(7, 152, 189, 0.085);
}

.aq-auth-password-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    cursor: pointer;
}

.aq-auth-password-toggle:hover {
    background: #eef9fc;
    color: #056f8d;
}

.aq-auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 2px;
}

.aq-auth-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #64748b;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.45;
}

.aq-auth-check input {
    width: 16px;
    height: 16px;
    accent-color: #0798bd;
    margin-top: 1px;
}

.aq-auth-options a {
    color: #056f8d;
    font-size: 12.5px;
    font-weight: 800;
}

.aq-auth-options a:hover {
    color: #0798bd;
}

.aq-auth-submit {
    width: 100%;
    min-height: 49px;
    margin-top: 4px;
    border: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, #0798bd, #056f8d);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 850;
    box-shadow: 0 13px 25px rgba(7, 152, 189, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
    cursor: pointer;
}

.aq-auth-submit:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 17px 32px rgba(7, 152, 189, 0.26);
    filter: brightness(1.02);
}

.aq-auth-submit:disabled {
    cursor: not-allowed;
    opacity: 0.78;
    transform: none;
}

.aq-auth-legal-text {
    margin-top: 2px;
    padding: 13px 14px;
    border-radius: 15px;
    background: #f8fafc;
    border: 1px solid #e6edf3;
    color: #687586;
    font-size: 11.5px;
    font-weight: 550;
    line-height: 1.62;
    text-align: left;
}

.aq-auth-legal-text a {
    color: #056f8d;
    font-weight: 850;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.aq-auth-legal-text a:hover {
    color: #0798bd;
}

.aq-auth-switch {
    margin-top: 18px;
    padding-top: 17px;
    border-top: 1px solid #eef3f7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 650;
}

.aq-auth-switch a {
    color: #056f8d;
    font-weight: 850;
}

.aq-auth-switch a:hover {
    color: #0798bd;
}

@media (max-width: 767px) {
    .aq-auth-page {
        min-height: auto;
        padding: 30px 0 48px;
        align-items: flex-start;
    }

    .aq-auth-card {
        max-width: 100%;
        padding: 22px;
        border-radius: 22px;
    }

    .aq-auth-card-head h1,
    .aq-auth-card-head h2 {
        font-size: 27px;
    }

    .aq-auth-options {
        align-items: flex-start;
        flex-direction: column;
    }

    .aq-auth-switch {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .aq-auth-legal-text {
        font-size: 11.2px;
    }
}

/* =========================================================
   AquaShop Hesabım Dropdown Yazı Taşma Düzeltmesi
========================================================= */

.aq-account-dropdown {
    width: 336px;
    max-width: calc(100vw - 24px);
    box-sizing: border-box;
}

.aq-account-guest-head {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px 14px;
    overflow: hidden;
}

.aq-account-guest-head strong {
    display: block;
    width: 100%;
    max-width: 100%;
    color: #111827;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.35;
    white-space: normal;
}

.aq-account-guest-head span {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-top: 6px;
    color: #738091;
    font-size: 12.5px;
    font-weight: 550;
    line-height: 1.55;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
}

.aq-account-auth-btn {
    width: calc(100% - 12px);
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .aq-account-dropdown {
        width: 306px;
        right: -96px;
    }
}

@media (max-width: 480px) {
    .aq-account-dropdown {
        left: 12px;
        right: 12px;
        width: auto;
        max-width: none;
    }
}

