/*
 |--------------------------------------------------------------------------
 | Front Page Specific Styles
 |--------------------------------------------------------------------------
 | Bu dosya, ön yüz şablonlarında daha önce inline olarak tutulan stil
 | tanımlarını barındırır. Her bölüm ilgili sayfa veya bileşene göre
 | gruplanmıştır. Yeni stil eklerken lütfen ilgili başlık altında düzenleyin.
 */

/* --------------------------------------------------------------------------
 * Genel Bileşenler
 * ----------------------------------------------------------------------- */
.page-footer.nova-footer {
    background: linear-gradient(150deg, #0c1c2a 0%, #123b53 55%, #081621 100%);
    border-top: 1px solid rgba(89, 151, 220, 0.24);
    box-shadow: 0 -18px 36px rgba(4, 10, 16, 0.45);
    color: #ecf4ff;
}

.page-footer.nova-footer .footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    gap: 10px;
}

.page-footer.nova-footer .footer-center {
    flex: 2;
    text-align: center;
}

.page-footer.nova-footer .footer-policy-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}

.page-footer.nova-footer .footer-policy-links a {
    color: #ffffff;
    text-decoration: none;
}

.page-footer.nova-footer .footer-policy-links a:hover {
    text-decoration: underline;
}

.page-footer.nova-footer .footer-right {
    flex: 1;
    text-align: right;
}

.page-footer.nova-footer .footer-social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 10px;
}

/* --------------------------------------------------------------------------
 * Ana Sayfa (page-home)
 * ----------------------------------------------------------------------- */

body.page-home .nova-category-shell {
    width: min(100%, 1480px);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 56px);
    position: relative;
}

body.page-home .nova-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

body.page-home .nova-category-title {
    margin: 0;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #ecf4ff;
}

body.page-home .nova-category-controls {
    display: flex;
    gap: 12px;
}

body.page-home .nova-category-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(89, 151, 220, 0.32);
    background: rgba(10, 23, 33, 0.78);
    color: #ecf4ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 32px rgba(4, 10, 16, 0.5);
    transition: all 0.25s ease;
}

body.page-home .nova-category-btn:hover {
    background: linear-gradient(135deg, rgba(89, 151, 220, 0.95), rgba(69, 178, 163, 0.92));
    color: #021520;
    transform: translateY(-2px);
    border-color: transparent;
}

body.page-home .nova-category-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

body.page-home .nova-category-viewport {
    position: relative;
    overflow: hidden;
}

body.page-home .nova-category-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    scrollbar-width: none;
    cursor: grab;
}

body.page-home .nova-category-track::-webkit-scrollbar {
    display: none;
}

body.page-home .nova-category-track.is-dragging {
    cursor: grabbing;
}

body.page-home .nova-category-card {
    flex: 0 0 200px;
    scroll-snap-align: start;
    position: relative;
    border-radius: 22px;
    background: rgba(12, 28, 40, 0.52);
    border: 1px solid rgba(89, 151, 220, 0.24);
    box-shadow: 0 18px 38px rgba(4, 10, 16, 0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.page-home .nova-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 64px rgba(4, 10, 16, 0.75);
}

body.page-home .nova-category-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: inherit;
    color: inherit;
    text-decoration: none;
}

body.page-home .nova-category-media {
    width: 100%;
    aspect-ratio: 2.8 / 2.8;
    background: rgba(9, 20, 30, 0.35);
    position: relative;
    overflow: hidden;
}

body.page-home .nova-category-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, filter 0.35s ease;
    filter: brightness(1) saturate(1.08);
}

body.page-home .nova-category-card:hover .nova-category-media img {
    transform: scale(1.06);
    filter: brightness(1.04) saturate(1.18);
}

body.page-home .nova-category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(190deg, rgba(9, 20, 30, 0) 45%, rgba(9, 20, 30, 0.6) 82%, rgba(9, 20, 30, 0.82) 100%);
    opacity: 0.6;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

body.page-home .nova-category-card:hover .nova-category-overlay {
    opacity: 0.8;
}

body.page-home .nova-category-meta {
    position: absolute;
    inset: auto 16px 16px 16px;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(9, 20, 30, 0.45);
    backdrop-filter: blur(6px);
    color: #ecf4ff;
    font-weight: 600;
    letter-spacing: 0.28px;
    text-shadow: 0 10px 18px rgba(0, 0, 0, 0.45);
}

body.page-home .nova-category-empty {
    color: #a7bbd3;
    text-align: center;
    padding: 32px 0;
    font-size: 16px;
}

body.page-home #nova-home {
    background: linear-gradient(145deg, #0c1c2a 0%, #123b53 55%, #081621 100%);
    padding: 44px clamp(18px, 4vw, 64px) 78px;
    color: #ecf4ff;
    font-family: "Raleway", "Segoe UI", sans-serif;
}

body.page-home #nova-home .nova-home-container {
    width: min(100%, 1440px);
    margin: 0 auto;
    padding: 0 clamp(12px, 3vw, 48px);
}

body.page-home #nova-home .section-heading {
    margin: 0 0 30px;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

body.page-home #nova-home .nova-home-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(12px, 2vw, 24px);
    margin-bottom: 32px;
}

body.page-home #nova-home .nova-home-toolbar .section-heading {
    margin: 0;
    text-align: left;
    font-size: clamp(24px, 3vw, 32px);
}

body.page-home #nova-home .nova-home-toolbar .nova-nearby-btn {
    background: linear-gradient(140deg, #5997dc, #45b2a3);
    border: none;
    color: #021520;
    box-shadow: 0 16px 32px rgba(69, 178, 163, 0.32);
    padding: 10px 20px;
    font-size: 0.8rem;
    line-height: 1.1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.page-home #nova-home .nova-home-toolbar .nova-nearby-btn:hover,
body.page-home #nova-home .nova-home-toolbar .nova-nearby-btn:focus {
    background: linear-gradient(140deg, #74caff, #45b2a3);
    box-shadow: 0 20px 40px rgba(69, 178, 163, 0.4);
    transform: translateY(-2px);
    color: #021520;
}

body.page-home #nova-home .nova-home-toolbar .nova-nearby-btn i {
    font-size: 0.9em;
}

body.page-home #nova-home .nova-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

body.page-home #nova-home .nova-card-grid.nova-grid-single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

body.page-home #nova-home .nova-card-grid.nova-grid-single .nova-card {
    width: 100%;
}

body.page-home #nova-home .nova-card {
    background: linear-gradient(150deg, rgba(31, 75, 100, 0.9) 0%, rgba(13, 37, 52, 0.94) 100%);
    border: 1px solid rgba(89, 151, 220, 0.28);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 28px 58px rgba(4, 12, 18, 0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-height: 100%;
    backdrop-filter: blur(18px);
}

body.page-home #nova-home .nova-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 36px 70px rgba(5, 18, 28, 0.7);
}

body.page-home #nova-home .nova-card-media {
    position: relative;
    overflow: hidden;
}

body.page-home #nova-home .nova-card-cover {
    display: block;
    position: relative;
}

body.page-home #nova-home .nova-card-media img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.35s ease, filter 0.35s ease;
    filter: saturate(1.05);
}

body.page-home #nova-home .nova-card:hover .nova-card-media img {
    transform: scale(1.06);
    filter: saturate(1.1);
}

body.page-home #nova-home .nova-card-cta {
    position: absolute;
    right: 18px;
    bottom: 18px;
    background: linear-gradient(140deg, #5997dc, #45b2a3);
    color: #021520;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 18px 32px rgba(69, 178, 163, 0.4);
    opacity: 0;
    transform: translateY(6px);
    transition: 0.2s ease;
}

body.page-home #nova-home .nova-card:hover .nova-card-cta {
    opacity: 1;
    transform: translateY(0);
}

body.page-home #nova-home .nova-card-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(69, 178, 163, 0.9);
    color: #021520;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4px;
    box-shadow: 0 14px 28px rgba(69, 178, 163, 0.4);
}

body.page-home #nova-home .nova-card-chip {
    position: absolute;
    top: 18px;
    right: 18px;
}

body.page-home #nova-home .nova-card-chip a {
    display: inline-flex;
    align-items: center;
    background: rgba(12, 35, 52, 0.8);
    color: #ffffff;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 11px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 1px solid rgba(89, 151, 220, 0.32);
    box-shadow: 0 16px 30px rgba(5, 18, 28, 0.6);
}

body.page-home #nova-home .nova-card-body {
    padding: 22px 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

body.page-home #nova-home .nova-card-title {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: 0.2px;
}

body.page-home #nova-home .nova-card-title a {
    color: #ecf4ff;
    text-decoration: none;
}

body.page-home #nova-home .nova-card-title a:hover {
    color: #74caff;
}

body.page-home #nova-home .nova-card-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    color: #a0b7d0;
}

body.page-home #nova-home .nova-card-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

body.page-home #nova-home .nova-card-meta-item i {
    color: rgba(89, 151, 220, 0.75);
}

body.page-home #nova-home .nova-card-meta-item em {
    font-style: normal;
    color: #f2f8ff;
}

body.page-home #nova-home .nova-card-meta-discount {
    color: #45b2a3;
    font-weight: 600;
}

body.page-home #nova-home .nova-card-footer {
    padding: 22px 24px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(89, 151, 220, 0.18);
    background: rgba(9, 25, 36, 0.6);
}

body.page-home #nova-home .nova-card-host {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.page-home #nova-home .nova-card-host img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 14px 30px rgba(5, 18, 28, 0.55);
    border: 2px solid rgba(89, 151, 220, 0.35);
}

body.page-home #nova-home .nova-card-host-info a {
    color: #ecf4ff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

body.page-home #nova-home .nova-card-host-info a:hover {
    color: #74caff;
}

body.page-home #nova-home .nova-card-price {
    text-align: right;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 15px;
    color: #f2f8ff;
}

body.page-home #nova-home .nova-price-current {
    color: #74caff;
    font-size: 18px;
}

body.page-home #nova-home .nova-price-original {
    color: rgba(156, 182, 209, 0.55);
    font-size: 14px;
    text-decoration: line-through;
}

body.page-home #nova-home .nova-price-free {
    color: #45b2a3;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.page-home #nova-home .nova-empty {
    display: none;
    text-align: center;
    padding: 34px 0;
}

body.page-home #nova-home .nova-empty img {
    max-width: 210px;
    opacity: 0.7;
}

body.page-home #nova-home .nova-center {
    text-align: center;
}

body.page-home #nova-home .nova-load-btn {
    background: rgba(12, 35, 52, 0.75);
    color: #ecf4ff;
    border: 1px solid rgba(89, 151, 220, 0.3);
    padding: 12px 20px;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 600;
    letter-spacing: 0.4px;
}

body.page-home #nova-home .nova-load-btn:hover {
    background: linear-gradient(140deg, #5997dc, #45b2a3);
    color: #021520;
    box-shadow: 0 18px 36px rgba(69, 178, 163, 0.4);
    border-color: transparent;
}

body.page-home #nova-home .d-none {
    display: none !important;
}

/* Responsive ayarlar */
@media (max-width: 1024px) {
    body.page-home .nova-category-card {
        flex: 0 0 188px;
    }
}

@media (max-width: 768px) {
    body.page-home .nova-category-section {
        padding: 30px 0 42px;
    }

    body.page-home .nova-category-shell {
        padding: 0 18px;
    }

    body.page-home .nova-category-header {
        align-items: flex-start;
    }

    body.page-home .nova-category-controls {
        gap: 8px;
    }

    body.page-home .nova-category-btn {
        width: 40px;
        height: 40px;
    }

    body.page-home .nova-category-card {
        flex: 0 0 176px;
    }

    body.page-home .nova-category-meta {
        inset: auto 12px 12px 12px;
        font-size: 14px;
    }

    body.page-home #nova-home .nova-home-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        margin-bottom: 26px;
    }

    body.page-home #nova-home .nova-home-toolbar .section-heading {
        text-align: left;
    }

    body.page-home #nova-home .nova-home-toolbar .nova-nearby-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 560px) {
    body.page-home .nova-category-card {
        flex: 0 0 164px;
    }

    body.page-home .nova-category-title {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    body.page-home #nova-home .nova-card-grid {
        gap: 20px;
    }
}

@media (max-width: 520px) {
    body.page-home #nova-home .nova-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    body.page-home #nova-home .nova-card-price {
        text-align: left;
    }
}

/* --------------------------------------------------------------------------
 * Oturum Sayfaları (page-login, page-register, page-forgot-password)
 * ----------------------------------------------------------------------- */
body.page-login .content-auth,
body.page-register .content-auth,
body.page-vendor-register .content-auth,
body.page-forgot-password .content-auth {
    background: linear-gradient(145deg, #0c1c2a 0%, #123b53 55%, #081621 100%);
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
}

body.page-login .nova-auth-section,
body.page-register .nova-auth-section,
body.page-vendor-register .nova-auth-section,
body.page-forgot-password .nova-auth-section {
    width: 100%;
    padding: clamp(48px, 10vw, 120px) 0;
}

body.page-login .nova-auth-header,
body.page-register .nova-auth-header,
body.page-forgot-password .nova-auth-header {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

body.page-login .nova-auth-header .company-brand,
body.page-register .nova-auth-header .company-brand,
body.page-forgot-password .nova-auth-header .company-brand {
    text-align: center;
}

body.page-login .nova-auth-header .brand-link,
body.page-register .nova-auth-header .brand-link,
body.page-forgot-password .nova-auth-header .brand-link {
    display: inline-flex;
    padding: 16px;
    border-radius: 18px;
    background: rgba(12, 35, 52, 0.55);
    border: 1px solid rgba(89, 151, 220, 0.35);
    box-shadow: 0 18px 42px rgba(4, 12, 18, 0.65);
}

body.page-login .nova-auth-header .brand-link img,
body.page-register .nova-auth-header .brand-link img,
body.page-forgot-password .nova-auth-header .brand-link img {
    max-height: 80px;
    object-fit: contain;
}

body.page-login .nova-auth-card,
body.page-register .nova-auth-card,
body.page-vendor-register .nova-auth-card,
body.page-forgot-password .nova-auth-card {
    border: 1px solid rgba(89, 151, 220, 0.32);
    box-shadow: 0 32px 60px rgba(5, 16, 24, 0.55);
    border-radius: 22px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    background: rgba(9, 22, 33, 0.78);
}

body.page-login .nova-auth-card .card-header,
body.page-register .nova-auth-card .card-header,
body.page-vendor-register .nova-auth-card .card-header,
body.page-forgot-password .nova-auth-card .card-header {
    border-bottom: none;
    padding: 24px;
}

body.page-login .nova-auth-card .card-body,
body.page-register .nova-auth-card .card-body,
body.page-vendor-register .nova-auth-card .card-body,
body.page-forgot-password .nova-auth-card .card-body {
    padding: 30px clamp(22px, 4vw, 38px) 36px;
}

.nova-register-page .nova-register-layout {
    gap: 34px;
}

.nova-register-page .nova-register-card-wrapper {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.nova-register-page .nova-register-card-wrapper > .nova-auth-card {
    width: 100%;
}

.nova-register-page .nova-register-info {
    background: linear-gradient(148deg, rgba(16, 46, 69, 0.92), rgba(18, 74, 103, 0.88) 55%, rgba(12, 31, 46, 0.94));
    border: 1px solid rgba(89, 151, 220, 0.34);
    box-shadow: 0 38px 68px rgba(5, 16, 24, 0.6);
    border-radius: 24px;
    padding: clamp(32px, 5vw, 56px);
    color: #e8f3ff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(28px, 6vw, 40px);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.nova-register-page .nova-register-info::after {
    content: "";
    position: absolute;
    inset: 12% -40% -30% 50%;
    background: radial-gradient(circle at center, rgba(69, 178, 163, 0.45), transparent 62%);
    filter: blur(0);
    opacity: 0.8;
    pointer-events: none;
}

.nova-register-page .nova-register-info::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -40px;
    top: -40px;
    border-radius: 50%;
    background: rgba(89, 151, 220, 0.18);
    filter: blur(12px);
    opacity: 0.65;
    pointer-events: none;
}

.nova-register-page .nova-register-info > * {
    position: relative;
    z-index: 1;
}

.nova-register-page .nova-register-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.nova-register-page .nova-register-brand .brand-link {
    display: inline-flex;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(8, 24, 36, 0.72);
    border: 1px solid rgba(89, 151, 220, 0.35);
    box-shadow: 0 20px 42px rgba(2, 10, 18, 0.65);
}

.nova-register-page .nova-register-brand .brand-logo {
    display: block;
    max-height: 72px;
    width: auto;
}

.nova-register-page .register-title {
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 16px;
}

.nova-register-page .register-lead {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(232, 243, 255, 0.92);
    margin: 0;
}

.nova-register-page .register-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: rgba(232, 243, 255, 0.95);
    font-weight: 600;
}

.nova-register-page .nova-register-copy {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.nova-register-page .register-benefits i {
    color: #45b2a3;
    flex: 0 0 auto;
    margin-right: 10px;
    font-size: 18px;
}

.nova-register-page .register-benefits li {
    display: flex;
    align-items: center;
    font-size: 15px;
    line-height: 1.55;
}

.nova-register-page .nova-register-support {
    margin-top: clamp(24px, 5vw, 48px);
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(8, 28, 44, 0.55);
    border: 1px solid rgba(89, 151, 220, 0.28);
    box-shadow: inset 0 0 0 1px rgba(69, 178, 163, 0.12);
}

.nova-register-page .nova-register-support .support-title {
    display: block;
    font-weight: 700;
    letter-spacing: 0.35px;
    margin-bottom: 6px;
}

.nova-register-page .nova-register-support .support-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(232, 243, 255, 0.8);
}

.nova-register-page .nova-register-support a {
    color: #74caff;
    text-decoration: underline;
}

.nova-register-page .nova-register-support a:hover {
    color: #45b2a3;
}

body.page-login .nova-auth-card label,
body.page-register .nova-auth-card label,
body.page-vendor-register .nova-auth-card label,
body.page-forgot-password .nova-auth-card label {
    color: #e8f1ff;
    font-weight: 600;
    letter-spacing: 0.3px;
}

body.page-login .nova-auth-card .form-control,
body.page-register .nova-auth-card .form-control,
body.page-vendor-register .nova-auth-card .form-control,
body.page-forgot-password .nova-auth-card .form-control {
    background: rgba(15, 32, 45, 0.85);
    border: 1px solid rgba(89, 151, 220, 0.28);
    color: #ecf4ff;
    border-radius: 12px;
    padding: 12px 14px;
}

.nova-register-page .nova-auth-card .alert-message {
    background: rgba(9, 26, 40, 0.88);
    border: 1px solid rgba(89, 151, 220, 0.32);
    color: #e8f3ff;
    border-radius: 14px;
    box-shadow: 0 20px 36px rgba(2, 10, 18, 0.45);
    margin-bottom: 22px;
}

body.page-login .nova-auth-card .form-control:focus,
body.page-register .nova-auth-card .form-control:focus,
body.page-vendor-register .nova-auth-card .form-control:focus,
body.page-forgot-password .nova-auth-card .form-control:focus {
    background: rgba(15, 32, 45, 0.95);
    border-color: rgba(69, 178, 163, 0.65);
    box-shadow: 0 0 0 0.2rem rgba(69, 178, 163, 0.25);
}

body.page-login .nova-auth-card .input-group-append .btn,
body.page-register .nova-auth-card .input-group-append .btn,
body.page-vendor-register .nova-auth-card .input-group-append .btn,
body.page-forgot-password .nova-auth-card .input-group-append .btn {
    border-color: rgba(89, 151, 220, 0.28);
    color: rgba(232, 241, 255, 0.85);
}

body.page-login .nova-auth-card .input-group-append .btn:hover,
body.page-register .nova-auth-card .input-group-append .btn:hover,
body.page-vendor-register .nova-auth-card .input-group-append .btn:hover,
body.page-forgot-password .nova-auth-card .input-group-append .btn:hover {
    background: rgba(69, 178, 163, 0.2);
    color: #45b2a3;
}

body.page-login .nova-auth-card .auth-links,
body.page-register .nova-auth-card .auth-links,
body.page-vendor-register .nova-auth-card .auth-links,
body.page-forgot-password .nova-auth-card .auth-links {
    margin-top: 26px;
    gap: 18px;
}

body.page-login .nova-auth-card .auth-links .btn,
body.page-register .nova-auth-card .auth-links .btn,
body.page-vendor-register .nova-auth-card .auth-links .btn,
body.page-forgot-password .nova-auth-card .auth-links .btn {
    padding: 10px 28px;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    letter-spacing: 0.4px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.page-login .nova-auth-card .auth-links .btn:hover,
body.page-register .nova-auth-card .auth-links .btn:hover,
body.page-vendor-register .nova-auth-card .auth-links .btn:hover,
body.page-forgot-password .nova-auth-card .auth-links .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(69, 178, 163, 0.35);
}

body.page-login .nova-auth-card .link-muted,
body.page-register .nova-auth-card .link-muted,
body.page-vendor-register .nova-auth-card .link-muted,
body.page-forgot-password .nova-auth-card .link-muted {
    color: rgba(232, 241, 255, 0.75);
    font-weight: 500;
    text-decoration: none;
}

body.page-login .nova-auth-card .link-muted:hover,
body.page-register .nova-auth-card .link-muted:hover,
body.page-vendor-register .nova-auth-card .link-muted:hover,
body.page-forgot-password .nova-auth-card .link-muted:hover {
    color: #74caff;
}

body.page-login .nova-auth-card .grey-text,
body.page-register .nova-auth-card .grey-text,
body.page-vendor-register .nova-auth-card .grey-text,
body.page-forgot-password .nova-auth-card .grey-text {
    color: rgba(232, 241, 255, 0.68);
}

body.page-login .nova-auth-card .dark-grey-text,
body.page-register .nova-auth-card .dark-grey-text,
body.page-vendor-register .nova-auth-card .dark-grey-text,
body.page-forgot-password .nova-auth-card .dark-grey-text {
    color: #74caff;
}

body.page-login .nova-auth-card .dark-grey-text:hover,
body.page-register .nova-auth-card .dark-grey-text:hover,
body.page-vendor-register .nova-auth-card .dark-grey-text:hover,
body.page-forgot-password .nova-auth-card .dark-grey-text:hover {
    color: #45b2a3;
}

@media (max-width: 768px) {
    body.page-login .content-auth,
    body.page-register .content-auth,
    body.page-vendor-register .content-auth,
    body.page-forgot-password .content-auth {
        min-height: auto;
        padding: 40px 0 80px;
    }

    body.page-login .nova-auth-section,
    body.page-register .nova-auth-section,
    body.page-vendor-register .nova-auth-section,
    body.page-forgot-password .nova-auth-section {
        padding: 30px 0;
    }

    body.page-login .nova-auth-card .card-body,
    body.page-register .nova-auth-card .card-body,
    body.page-vendor-register .nova-auth-card .card-body,
    body.page-forgot-password .nova-auth-card .card-body {
        padding: clamp(24px, 6vw, 32px);
    }

    body.page-register .nova-register-layout {
        gap: 24px;
    }

    body.page-register .nova-register-info {
        border-radius: 22px;
        padding: clamp(26px, 8vw, 34px);
        gap: 26px;
    }

    body.page-register .nova-register-brand {
        justify-content: center;
        margin-bottom: 12px;
    }
}

@media (max-width: 991.98px) {
    body.page-register .nova-register-layout {
        flex-direction: column;
    }

    body.page-register .nova-register-card-wrapper {
        margin-top: 20px;
    }

    body.page-register .nova-register-info {
        order: 2;
        padding: clamp(32px, 9vw, 44px);
        gap: 28px;
    }

    body.page-register .nova-register-card-wrapper {
        order: 1;
    }
}

@media (max-width: 575.98px) {
    body.page-register .register-title {
        text-align: center;
    }

    body.page-register .register-lead,
    body.page-register .register-benefits,
    body.page-register .nova-register-support {
        text-align: center;
    }

    body.page-register .register-benefits li {
        justify-content: center;
    }

    body.page-register .register-benefits i {
        margin-right: 6px;
    }
}

/* --------------------------------------------------------------------------
 * Gün Seçim Sayfası (page-appointment)
 * ----------------------------------------------------------------------- */
body.page-appointment select {
    display: block !important;
}

/* --------------------------------------------------------------------------
 * Ödeme Geçmişi (page-payment-history)
 * ----------------------------------------------------------------------- */
body.page-payment-history .table thead th {
    vertical-align: middle;
}

body.page-payment-history .table td,
body.page-payment-history .table th {
    padding: 10px 12px;
}

body.page-payment-history .badge {
    font-weight: 600;
    padding: 6px 10px;
}

body.page-payment-history .dataTables_wrapper,
body.page-payment-history .dataTables_wrapper a,
body.page-payment-history .dataTables_wrapper label,
body.page-payment-history .dataTables_wrapper .dataTables_info {
    color: #fff;
}

body.page-payment-history .dataTables_wrapper .dataTables_filter input,
body.page-payment-history .dataTables_wrapper .dataTables_length select {
    color: #fff;
    background-color: transparent;
}

/* Appointment listesi: daha kompakt kart düzeni */
body.page-appointment .dashboard-body .container {
    /* Bootstrap row gutter (-15px) ile uyumlu kalmalı; aksi halde yatay taşma olur */
    padding-left: 15px;
    padding-right: 15px;
}

body.page-appointment .single_product {
    padding: 8px 8px;
    margin-bottom: 8px;
}

body.page-appointment .appt-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
}

body.page-appointment .appt-status--completed {
    font-size: 12px;
    font-weight: 500;
}

/* Bootstrap .row negatif margin kaynaklı taşmayı sadece bu kart içinde engelle */
body.page-appointment .single_product > .row {
    margin-left: 0;
    margin-right: 0;
}

body.page-appointment .single_product > .row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

body.page-appointment .product__description {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

body.page-appointment .product__description img.img-fluid {
    width: 110px;
    height: 78px;
    max-width: 110px;
    object-fit: cover;
    border-radius: 10px;
    flex: 0 0 auto;
}

body.page-appointment .product__description .short_desc {
    flex: 1 1 auto;
    min-width: 0;
}

body.page-appointment .product__description .short_desc h4 {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.25;
}

body.page-appointment .product__description .short_desc p {
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.page-appointment .product__additional_info ul {
    margin-bottom: 0;
}

body.page-appointment .product__additional_info li p {
    margin-bottom: 3px;
    font-size: 13px;
    line-height: 1.35;
}

body.page-appointment .product__price_download .item_action {
    min-width: auto !important;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    align-items: center;
    float: none !important; /* custom.css override */
}

@media (min-width: 992px) {
    /* Yazıların daha rahat sığması için geniş ekranlarda minimum kolon genişliği */
    body.page-appointment .product__price_download .item_action {
        grid-template-columns: repeat(2, minmax(150px, 1fr));
        gap: 8px;
    }
}

/* custom.css, .product__price_download display:table override */
body.page-appointment .single_product .product__price_download {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

body.page-appointment .single_product .product__price_download .item_price {
    display: block !important;
    flex: 0 0 auto;
}

body.page-appointment .single_product .product__price_download .item_action {
    flex: 1 1 auto;
}

body.page-appointment .product__price_download .item_action .btn {
    margin: 0;
}

/* custom.css .btn { display:block } ve .btn+.btn { margin-top:15px } override */
body.page-appointment .single_product .product__price_download .item_action .btn {
    display: inline-flex !important;
}

body.page-appointment .single_product .product__price_download .item_action .btn + .btn {
    margin-top: 0 !important;
}

/* Aksiyon butonları: eşit boy + simetrik görünüm */
body.page-appointment .product__price_download .item_action .appt-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 38px;
    padding: 0 14px;
    border-radius: 12px;
    white-space: nowrap;
    width: 100%;
    font-size: 13px;
}

body.page-appointment .product__price_download .item_action .appt-action i {
    line-height: 1;
}

body.page-appointment .product__price_download .item_action .appt-action.disabled {
    opacity: 0.5;
}

body.page-appointment .rating--btn {
    margin-top: 6px !important;
    padding: 8px 10px;
}

@media (max-width: 576px) {
    body.page-appointment .product__description {
        gap: 10px;
    }

    body.page-appointment .product__description img.img-fluid {
        width: 96px;
        height: 68px;
        max-width: 96px;
    }

    body.page-appointment .product__description .short_desc p {
        -webkit-line-clamp: 1;
    }

    body.page-appointment .rating--btn .rating {
        display: none;
    }

    /* Mobilde: ikon butonları kare ve kompakt */
    body.page-appointment .product__price_download .item_action .appt-action {
        width: 40px;
        height: 34px;
        padding: 0;
        border-radius: 12px;
    }

    body.page-appointment .product__price_download .item_action {
        grid-template-columns: repeat(4, 40px);
        justify-content: center;
    }
}

/* --------------------------------------------------------------------------
 * Kategori / Etkinlik Sayfaları (page-category-details, page-event-details)
 * Not: İlgili sayfalardaki stil blokları taşındıkça bu bölüm genişletilebilir.
 * ----------------------------------------------------------------------- */
