/*------------------------------------------------------------------
Project: Zodio
Author: The_Krishna
Last change: 11/02/2025
Primary use:
------------------------------------------------------------------ */
/*-----------------------[Table of contents]------------------------
1.Default CSS
2.Preloader CSS
2.Preloader Two CSS
3.Onboarding Screen CSS
4.Lets Screen CSS
5.Sign In Screen CSS
6.Verify Number CSS
7.Personal Infp Screen CSS
8.Personal Information Loader Screen CSS
9.Finger Print Screen CSS
10.Face Recognition Screen CSS
11.Girl Face Recognition Screen CSS
12.Preferred language Screen CSS
13.Choose Interests Screen CSS
14.Forget Password Screen CSS
15.Confirm OTP Screen CSS
16.New Password Screen CSS
17.Home Screen Setting CSS
18.Home Screen One CSS
19.Home Screen Two CSS
20.Search Screen CSS
21.Error 404 Screen CSS
22.Filter Screen CSS
23.Best Seller Screen CSS
24.Categories Screen CSS
25.Choose Brands Screen CSS
26.Single Women Products Screen CSS
27.Rating Review Screen CSS 
28.Cart Screen CSS
29.Promocodes Screen CSS
30.Checkout Screen CSS
31.Account Screen CSS
32.My Orders Screen CSS
33.Order Track Screen CSS
34.Leave Review Screen CSS
35.My Wallet Screen CSS
36.Add New Card Screen CSS
37.Notification Screen CSS
38.Notification Options Screen CSS
39.Language Select Screen CSS
40.Currency Select Screen CSS
41.About Screen CSS
42.Contact Screen CSS
43.FAQ Screen CSS
------------------------------------------------------------------ */
/*-----------------------[ 1.Default CSS ]------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
    scroll-behavior: smooth;
}
html {
    scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
a {
    text-decoration: none;
}
dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
ul {
    padding-left: 0;
}
ul li {
    list-style: none;
}
button {
    border: none;
}
/* Chrome, Safari, Edge, Opera */
* {
    scrollbar-width: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}
body {
    margin: 0 auto;
    height: 100%;
}
body::-webkit-scrollbar {
    width: 0;
    background: transparent;
}
::-webkit-scrollbar {
    width: 0px;
}
.container {
    width: 100%;
    max-width: 100%;
}
.site_lr-spacer {
    padding: 0 12px;
}
:root {
    --hy-bg: #ffffff;
    --hy-text: #0f172a;
    --hy-muted: #64748b;
    --hy-track: #eef2f7;
    --hy-accent: #1996d4; /* markanın mavisi */
    --hy-accent-2: #1996d4; /* mavi vurgu */
    --hy-shadow: 0 10px 30px rgba(2, 6, 23, 0.1);
}

@media (prefers-color-scheme: dark) {
    :root {
        --hy-bg: #0b1220;
        --hy-text: #e5e7eb;
        --hy-muted: #9aa4b2;
        --hy-track: #1e293b;
        --hy-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    }
}

/* ===================== Haliyika Bottom Nav – Fixed ===================== */

:root {
    --hy-primary: #1996d4; /* Ana marka rengi */
    --hy-primary-soft: rgba(25, 150, 212, 0.18);
    --hy-text-muted: #e5e7eb;
    --hy-text-active: #ffffff;
}

.hy-bottom-nav {
    height: 62px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    justify-content: center;
    pointer-events: none; /* sadece iç elemanlar tıklanabilir */
    padding-left: 18px;
    padding-right: 18px;
}

/* Navigation içi */
.hy-bottom-nav__inner {
    border-radius: 24px;
    width: 100%;
    position: relative;
    bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: auto;
    background: #1996d4; /* İSTENEN ARKA PLAN RENGİ */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Link item – sadece ikon */
.hy-bottom-nav__item {
    position: relative;
    flex: 1;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--hy-text-muted);
    transition: color 0.2s ease, transform 0.2s ease;
}

/* İkon daha büyük */
.hy-bottom-nav__icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: transparent;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hy-bottom-nav__icon img {
    width: 26px;
    height: 26px;
    display: block;
}

/* Aktif / pressed state */
.hy-bottom-nav__item.is-active,
.hy-bottom-nav__item:active {
    color: var(--hy-text-active);
}

.hy-bottom-nav__item.is-active .hy-bottom-nav__icon,
.hy-bottom-nav__item:active .hy-bottom-nav__icon {
    background: var(--hy-primary-soft);
    box-shadow: 0 6px 12px rgba(25, 150, 212, 0.55);
    transform: translateY(-2px);
}

/* Aktif item için alt göstergesi (nokta) */
.hy-bottom-nav__item.is-active::after {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

/* ===================== Floating Cart ===================== */

.hy-bottom-cart {
    pointer-events: auto;
    text-decoration: none;
    margin-top: -40px;
}

.hy-bottom-cart__circle {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: #ffffff;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
    position: relative;
}

.hy-bottom-cart__circle img {
    width: 30px;
    height: 30px;
    display: block;
}

/* Sepet badge */
.hy-bottom-cart__badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--hy-primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    display: grid;
    place-items: center;
    padding: 0 6px;
    box-shadow: 0 0 0 2px #ffffff;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 2px #ffffff, 0 0 0 0 rgba(25, 150, 212, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 2px #ffffff, 0 0 0 8px rgba(25, 150, 212, 0);
    }
}

@media (max-width: 992px) {
    .hy-bottom-nav {
        display: flex;
    }
}

/* Küçük ekran optimizasyonları */
@media (max-width: 360px) {
    .hy-bottom-nav__inner {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hy-bottom-cart__circle {
        width: 56px;
        height: 56px;
    }

    .hy-bottom-cart__circle img {
        width: 26px;
        height: 26px;
    }
}

/* Overlay */
.hy-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 16px;
    background: var(--hy-bg);
    transition: opacity 0.35s ease, visibility 0.35s step-end;
}
.hy-loader.is-done {
    opacity: 0;
    visibility: hidden;
}

/* İçerik kolonu */
.hy-loader__center {
    width: min(92vw, 560px);
    display: grid;
    place-items: center;
    gap: 16px;
    text-align: center;
    filter: drop-shadow(var(--hy-shadow));
}

/* Dönen halka — performanslı conic-gradient */
.hy-loader__ring {
    width: clamp(56px, 10vw, 84px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: conic-gradient(
        from 0turn,
        var(--hy-accent) 0 25%,
        transparent 25% 100%
    );
    -webkit-mask: radial-gradient(
        farthest-side,
        #0000 calc(100% - 8px),
        #000 0
    );
    mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
    animation: hy-spin 1s linear infinite;
}
@keyframes hy-spin {
    to {
        transform: rotate(1turn);
    }
}

.hy-loader__text {
    margin: 0;
    font-size: clamp(14px, 1.8vw, 16px);
    color: var(--hy-text);
    letter-spacing: 0.2px;
    opacity: 0.9;
}

/* Sonsuz ilerleme barı */
.hy-loader__bar {
    width: min(520px, 80vw);
    height: 4px;
    border-radius: 999px;
    overflow: hidden;
    background: var(--hy-track);
}
.hy-loader__bar > span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--hy-accent), var(--hy-accent-2));
    animation: hy-progress 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes hy-progress {
    0% {
        width: 0%;
    }
    70% {
        width: 100%;
    }
    100% {
        width: 100%;
    }
}

/* Kullanıcı hareketi azaltmışsa animasyonları kapat */
@media (prefers-reduced-motion: reduce) {
    .hy-loader__ring,
    .hy-loader__bar > span {
        animation: none !important;
    }
}

/* Scroll kilidi (JS ile html'e eklenir) */
html.is-loading,
body.is-loading {
    overflow: hidden;
}

/*-----------------------[ 2.Preloader One CSS ]------------------------*/
.page-loader {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    text-align: center;
    z-index: 10000;
    overflow: hidden;
    gap: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 12px;
    background: #ffffff;
}
.splash-logo-box img {
    max-width: 100%;
    animation-name: hanging;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    transform-origin: center top;
}
@keyframes hanging {
    0% {
        transform: rotate(7deg);
    }
    100% {
        transform: rotate(-7deg);
    }
}
.logo-text {
    font-size: 48px;
    font-weight: 700;
    color: var(--2, #000);
    font-family: "League Spartan";
    text-transform: uppercase;
    padding-top: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.logo-sub-text {
    color: var(--2, #000);
    text-align: center;
    font-family: "League Spartan";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    position: relative;
    z-index: 1;
}
.splash-logo-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.splash-img1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}
.splash-img2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}
/*-----------------------[ 2.Preloader Two CSS ]------------------------*/
div#page-loader {
    display: flex;
    align-items: center;
    justify-content: center;
}
.blob {
    width: 100px;
    display: grid;
    background: #fff;
}
.blob:before,
.blob:after {
    content: "";
    grid-area: 1/1;
    width: 45px;
    height: 45px;
    background: #1996d4;
    animation: blob-rhf26m 2s infinite;
}
.blob:after {
    animation-delay: -1s;
}
@keyframes blob-rhf26m {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(100%, 0);
    }
    50% {
        transform: translate(100%, 100%);
    }
    75% {
        transform: translate(0, 100%);
    }
    100% {
        transform: translate(0, 0);
    }
}
/*-----------------------[ 3.Onboarding Screen CSS ]------------------------*/
.slide1 {
    background-image: linear-gradient(
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 1)
        ),
        url(../images/splash-screen/onbording-img1.jpg);
}
.slide2 {
    background-image: linear-gradient(
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 1)
        ),
        url(../images/splash-screen/onbording-img2.jpg);
}
.slide3 {
    background-image: linear-gradient(
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 1)
        ),
        url(../images/splash-screen/onbording-img3.jpg);
}
.Onboarding-main {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 100%;
    position: relative;
    height: 100vh;
    width: 100%;
}
.boarding-title h2 {
    color: #ffffff;
    font-family: "League Spartan";
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
}
.boarding-title p {
    color: #ffffff;
    font-family: Jost;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    padding-top: 13px;
}
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border-top: 0;
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.24);
}
.carousel-indicators .active {
    width: 28px !important;
    height: 9px !important;
    border-radius: 5px;
    background: #fff;
}
.Onboarding-Screen-1-full {
    position: absolute;
    bottom: 130px;
    left: 0;
    padding: 0 12px;
}
img.shape-spalsh-btn {
    position: absolute;
    right: -12px;
}
.onboarding-next-btn {
    width: 48px;
    height: 48px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 37px;
    bottom: -84px;
    cursor: pointer;
}
.carousel-indicators {
    position: absolute;
    bottom: 47px;
    left: -47px;
    right: auto;
    z-index: 2;
}
.skip_btn-onboading {
    text-align: right;
    padding-top: 15px;
    padding-right: 4px;
}
.skip_btn-onboading a {
    color: var(--1, #fff);
    font-family: Jost;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}
/*-----------------------[ 4.Lets Screen CSS ]------------------------*/
.lets-sec {
    margin-bottom: 60px;
}
.lets-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("../images/lets-you-screen/bg-img.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}
.nav-header {
    padding-top: 20px;
}
.lets-u-text {
    padding: 50px 0;
    color: var(--1, #fff);
    font-family: "League Spartan";
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
}
.media-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}
.let-media-icons {
    width: 48px;
    height: 48px;
    border: 2px solid #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
}

.let-media-icons:hover {
    border-color: #1996d4;
    background: #fff5f0;
    transform: translateY(-2px);
}

.let-media-icons img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(50%) sepia(0%) saturate(0%)
        hue-rotate(0deg) brightness(0.5) contrast(0.5);
}
.or-section p {
    overflow: hidden;
    color: var(--3, #555);
    text-align: center;
    font-family: Jost;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    margin: 32px 0;
}
.or-section p:before {
    right: 8px;
    margin-left: -50%;
}
.or-section p:after {
    left: 8px;
    margin-right: -50%;
}
.or-section p:before,
.or-section p:after {
    background: #f5f5f5;
    content: "";
    display: inline-block;
    height: 2px;
    position: relative;
    vertical-align: middle;
    width: 50%;
}
.button-main a,
.button-main button {
    border-radius: 8px;
    background: var(--4, #1996d4) !important;
    padding: 12px;
    color: var(--1, #fff) !important;
    text-align: center;
    font-family: Jost;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    display: block;
    width: 100%;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-sizing: border-box;
}

.button-main button:hover {
    background: #e55a00 !important;
    transform: translateY(-1px);
}

.button-main button:disabled {
    background: #ccc !important;
    cursor: not-allowed;
    transform: none;
}

.button-main button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 157, 219, 0.3);
}
.sing-in-up {
    color: var(--3, #555);
    text-align: center;
    font-family: Jost;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    background: white;
    padding: 16px 12px;
    z-index: 99;
}
.sing-in-up a {
    color: #000;
    font-weight: 600;
}
/*-----------------------[ 5.Sign In Screen CSS ]------------------------*/
.email-pass-main {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 12px;
    border-radius: 8px;
}
.email-pass-main input {
    border: none;
    outline: none;
    background: #f5f5f5;
    width: 100%;
    padding-left: 12px;
    color: #555555;
    font-family: League Spartan;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
#email-pass-main {
    margin-top: 32px;
    margin-bottom: 16px;
}
.remember-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    margin-bottom: 32px;
}
.footer-checkbox-input + .footer-chec-txt {
    position: relative;
    cursor: pointer;
    padding: 0;
}
.footer-checkbox-input {
    position: absolute;
    opacity: 0;
}
.footer-checkbox-input:checked + .footer-chec-txt:before {
    background: #1996d4;
    border: none;
}
.footer-checkbox-input + .footer-chec-txt:before {
    content: "";
    display: inline-block;
    vertical-align: text-top;
    width: 18px;
    height: 18px;
    border: 2px solid #000000;
    border-radius: 5px;
}
.footer-checkbox-input:checked + .footer-chec-txt:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 11px;
    background: white;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white,
        4px -6px 0 white, 4px -8px 0 white;
    transform: rotate(45deg);
}
.footer-chec-txt {
    color: #707070;
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.forget-btn a {
    color: #000;
    text-align: right;
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}
.email-pass-main-sub {
    margin-top: 16px;
}
.signupBtn {
    margin-top: 24px;
}
.iti-flag {
    position: relative;
}
.intl-tel-input {
    position: relative;
    display: inline-block;
    width: 100%;
}
.intl-tel-input.separate-dial-code .selected-dial-code {
    display: table-cell;
    vertical-align: middle;
    padding-left: 28px;
    display: none;
}
.intl-tel-input .selected-flag .iti-arrow::after {
    content: url(../images/svg/down-blck-arrow.svg);
    position: absolute;
    top: -10px;
    right: 7px;
}
.intl-tel-input .selected-flag .iti-arrow {
    border: none;
}
.intl-tel-input .selected-flag {
    padding: 0;
}
.intl-tel-input.separate-dial-code .selected-flag {
    background: transparent;
}
/*-----------------------[ 6.Verify Number CSS ]------------------------*/
.section-main-ver {
    padding: 0 12px;
    margin-bottom: 120px;
}
#top-header,
#top-navbar {
    background: #ffffff;
}
.fixed {
    position: fixed;
    z-index: 101;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    top: 0%;
    -webkit-box-shadow: 0 0 22px -4px rgb(0 0 0 / 17%);
    box-shadow: 0 0 22px -4px rgb(0 0 0 / 17%);
    -webkit-animation: fixedheader 600ms ease 0ms 1 forwards;
    animation: fixedheader 600ms ease 0ms 1 forwards;
}
@keyframes fixedheader {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* ==== HY NAVBAR (yeni namespace) ======================================= */

/* ===== Haliyika Slider (hy-*) ========================================= */
:root {
    --hy-radius: 16px;
    --hy-border: #e5e7eb;
    --hy-bg: #ffffff;
    --hy-text: #0f172a;
    --hy-muted: #64748b;
    --hy-accent: #1996d4; /* markaya göre güncelle */
    --hy-accent-2: #1996d4; /* mavi ikinci vurgu */
    --hy-shadow: 0 10px 30px rgba(2, 6, 23, 0.1);
    --hy-maxw: 1200px;
}

.hy-slider {
    margin: 14px auto;
    padding-inline: 12px;
}
.hy-slider__inner {
    max-width: var(--hy-maxw);
    margin-inline: auto;
    position: relative;
}

/* Slick'in bağlanacağı track */
.hy-slider__track {
    border-radius: var(--hy-radius);
    overflow: hidden;
}

/* Slide kartı */
.hy-slide__figure {
    position: relative;
    margin: 0;
    background: #f8fafc;
    /* Aspect ratio: mobil daha dikey, desktop daha yatay */
    aspect-ratio: 4/3; /* mobil varsayılan */
    border-radius: var(--hy-radius);
    overflow: hidden;
    box-shadow: var(--hy-shadow);
}
@media (min-width: 768px) {
    .hy-slide__figure {
        aspect-ratio: 16/9;
    }
}
.hy-slide__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain; /* Görsel kırpmasın, eski davranış ile uyumlu */
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* Kenar yumuşatma/derinlik efekti */
.hy-slide__fx {
    pointer-events: none;
    position: absolute;
    inset: 0;
    background: radial-gradient(
            120% 100% at 50% 100%,
            rgba(0, 0, 0, 0.06),
            transparent 55%
        ),
        linear-gradient(0deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0) 30%);
    mix-blend-mode: multiply;
}

/* Caption/CTA: alt-sağ, blur cam */
.hy-slide__caption {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    backdrop-filter: blur(8px);
}
.hy-btn {
    --p: 12px;
    --r: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: var(--r);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.08s ease, background 0.2s ease, box-shadow 0.2s ease,
        color 0.2s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.hy-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--hy-accent), var(--hy-accent-2));
}
.hy-btn--primary:hover {
    transform: translateY(-1px);
}

/* Arrows */
.hy-slider__arrows {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hy-slider__arrows .slick-arrow {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--hy-border);
    background: var(--hy-bg);
    display: grid;
    place-items: center;
    box-shadow: var(--hy-shadow);
    z-index: 2;
}
.hy-slider__arrows .slick-prev {
    left: 12px;
}
.hy-slider__arrows .slick-next {
    right: 12px;
}
.hy-slider__arrows .slick-prev:before,
.hy-slider__arrows .slick-next:before {
    color: var(--hy-text);
    font-size: 20px;
}

/* Dots => kapsül progress görünümlü */
.hy-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 10px;
    translate: -50% 0;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.hy-slider__dots .slick-dots {
    display: flex !important;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.hy-slider__dots .slick-dots li {
    margin: 0;
}
.hy-slider__dots .slick-dots button {
    width: 22px;
    height: 6px;
    border-radius: 999px;
    padding: 0;
    border: none;
    text-indent: -9999px;
    cursor: pointer;
    background: #e5e7eb;
    transition: all 0.25s ease;
}
.hy-slider__dots .slick-dots .slick-active button {
    width: 36px;
    background: var(--hy-accent);
}

/* Autoplay ilerleme çubuğu */
.hy-slider__progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 3px;
    background: #eef2f7;
    overflow: hidden;
    border-radius: 999px;
}
.hy-slider__progress > span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--hy-accent-2), var(--hy-accent));
    transition: width linear;
}

/* Mobilde okları gizle, dots kalsın */
@media (max-width: 767px) {
    .hy-slider__arrows {
        display: none;
    }
}

/* Minimal desktop görünüm */
@media (min-width: 992px) {
    /* Daha yatay oran, gölgesiz ve sade zemin */
    .hy-slider--minimal-desktop .hy-slide__figure {
        aspect-ratio: 21/9; /* billboard gibi geniş */
        box-shadow: none;
        background: transparent;
        border-radius: 12px;
    }
    .hy-slider--minimal-desktop .hy-slide__img {
        background: none; /* arka plan degrade’yi kaldır */
    }
    .hy-slider--minimal-desktop .hy-slide__fx {
        display: none; /* kenar yumuşatma efekti kapalı */
    }

    /* Oklar: arka plansız, ince ve yarı saydam */
    .hy-slider--minimal-desktop .hy-slider__arrows .slick-arrow {
        background: transparent;
        border: none;
        box-shadow: none;
        width: 36px;
        height: 36px;
        opacity: 0.55;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .hy-slider--minimal-desktop .hy-slider__arrows .slick-arrow:hover {
        opacity: 0.9;
        transform: translateY(-50%) scale(1.05);
    }
    .hy-slider--minimal-desktop .hy-slider__arrows .slick-prev:before,
    .hy-slider--minimal-desktop .hy-slider__arrows .slick-next:before {
        color: var(--hy-text);
        font-size: 18px;
    }

    /* Dots: cam kapsül yok; küçük, düz noktalar */
    .hy-slider--minimal-desktop .hy-slider__dots {
        background: transparent;
        box-shadow: none;
        padding: 0;
    }
    .hy-slider--minimal-desktop .hy-slider__dots .slick-dots {
        gap: 6px;
    }
    .hy-slider--minimal-desktop .hy-slider__dots .slick-dots button {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(15, 23, 42, 0.28);
    }
    .hy-slider--minimal-desktop
        .hy-slider__dots
        .slick-dots
        .slick-active
        button {
        background: var(--hy-text);
        width: 6px; /* artık büyümüyor: tamamen minimal */
    }

    /* Progress bar: masaüstünde gizle (daha sakin) */
    .hy-slider--minimal-desktop .hy-slider__progress {
        display: none;
    }

    /* CTA: blur cam yok; ince kenarlı düz buton */
    .hy-slider--minimal-desktop .hy-slide__caption {
        backdrop-filter: none;
        right: 12px;
        bottom: 12px;
    }
    .hy-slider--minimal-desktop .hy-btn--primary {
        background: transparent;
        color: var(--hy-text);
        border: 1px solid rgba(15, 23, 42, 0.25);
        box-shadow: none;
        transform: none;
    }
    .hy-slider--minimal-desktop .hy-btn--primary:hover {
        background: rgba(15, 23, 42, 0.05);
    }
}

:root {
    --hy-bg: #ffffff;
    --hy-text: #111827;
    --hy-muted: #6b7280;
    --hy-border: #e5e7eb;
    --hy-accent: #1996d4; /* marka mavisi */
    --hy-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    --hy-radius: 14px;
    --hy-nav-h: 56px; /* mobil yükseklik */
    --hy-nav-h-desktop: 68px;
    --hy-maxw: 1224px;
}

.hy-navbar {
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--hy-bg);
    border-bottom: 1px solid var(--hy-border);
    backdrop-filter: saturate(180%) blur(10px);
}

.hy-navbar--sticky.is-scrolled {
    /* istersen JS ile ekleyebilirsin */
    box-shadow: var(--hy-shadow);
}

.hy-logo--mobile {
    display: inline-flex;
}
.hy-logo--desktop {
    display: none;
}

.hy-menu-btn--mobile-right {
    display: inline-grid;
}

@media (max-width: 991.98px) {
    .hy-navbar {
        background: var(--hy-accent);
        border-bottom-color: transparent;
    }
    .hy-navbar .hy-title {
        color: #fff;
    }
    .hy-navbar .hy-icon-btn {
        border-color: rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.16);
    }
    .hy-navbar .hy-icon-btn img {
        filter: brightness(0) invert(1);
    }
    .hy-logo--mobile {
        color: #fff;
    }
    .hy-logo--mobile span {
        color: #fff;
    }
}

.hy-container {
    max-width: var(--hy-maxw);
    margin-inline: auto;
    padding-inline: 12px;
}

.hy-row {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto 1fr; /* sol - orta - sağ */
    min-height: var(--hy-nav-h);
    gap: 8px;
}

/* Sol bölüm */
.hy-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hy-left__mobile {
    display: flex;
    align-items: center;
}

/* Logo */
.hy-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--hy-text);
    font-weight: 700;
    font-size: 18px;
}
.hy-logo img {
    height: 26px;
    width: auto;
}

/* Mobil logo görünürlüğü */
.hy-logo--mobile {
    display: inline-flex;
}
.hy-logo--mobile-only span {
    display: none;
}
.hy-logo--mobile img {
    filter: brightness(0) invert(1);
}
.hy-logo--desktop {
    display: none;
}

/* Orta bölüm */
.hy-center {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.hy-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--hy-text);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Masaüstü navbar (mobilde gizli) */
.hy-primary-nav {
    display: none;
}
.hy-primary-nav ul {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.hy-primary-nav a {
    display: inline-block;
    padding: 8px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--hy-text);
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease;
}
.hy-primary-nav a:hover {
    background: #f3f4f6;
}
.hy-primary-nav a.is-active {
    color: var(--hy-accent);
    background: rgba(0, 157, 219, 0.08);
}

/* Giriş yap butonu */
.hy-nav-login-btn {
    color: var(--hy-text) !important;
    background: transparent !important;
}

.hy-nav-login-btn:hover {
    background: #f3f4f6 !important;
    color: var(--hy-text) !important;
}

/* Kayıt ol butonu - daha belirgin stil */
.hy-nav-register-btn {
    background: var(--hy-accent) !important;
    color: #ffffff !important;
    border: 1px solid var(--hy-accent) !important;
    padding: 8px 16px !important;
    font-weight: 600 !important;
}

.hy-nav-register-btn:hover {
    background: #0088c0 !important;
    border-color: #0088c0 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 157, 219, 0.3);
}

/* Sipariş Ver butonu - belirgin vurgulu stil */
.hy-nav-order-btn {
    background: #10b981 !important;
    color: #ffffff !important;
    border: 1px solid #10b981 !important;
    padding: 8px 16px !important;
    font-weight: 600 !important;
}

.hy-nav-order-btn:hover {
    background: #059669 !important;
    border-color: #059669 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Sağ bölüm */
.hy-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

/* Ortak icon buton */
.hy-icon-btn {
    display: inline-grid;
    place-items: center;
    height: 40px;
    width: 40px;
    border-radius: 12px;
    border: 1px solid var(--hy-border);
    background: #fff;
    padding: 6px;
    cursor: pointer;
    transition: transform 0.08s ease, background 0.2s ease,
        border-color 0.2s ease;
}
.hy-icon-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}
.hy-icon-btn:active {
    transform: scale(0.96);
}
.hy-icon-btn img {
    display: block;
    height: 22px;
    width: 22px;
    object-fit: contain;
}

/* Sepet rozeti */
.hy-cart-btn {
    position: relative;
}

/* Bildirim butonu */
.hy-notification-btn {
    position: relative;
}

.hy-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

/* Mobil çekmece (fallback) */
.hy-drawer {
    position: fixed;
    inset: 0;
    pointer-events: none;
}
.hy-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.4);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.hy-drawer__panel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0; /* soldan açılır */
    width: min(86vw, 360px);
    background: var(--hy-bg);
    border-right: 1px solid var(--hy-border);
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    padding: 16px;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 14px;
}
.hy-drawer.is-open {
    pointer-events: auto;
}
.hy-drawer.is-open .hy-drawer__overlay {
    opacity: 1;
}
.hy-drawer.is-open .hy-drawer__panel {
    transform: translateX(0);
}
.hy-drawer__close {
    justify-self: end;
    width: 36px;
    height: 36px;
    font-size: 20px;
    border-radius: 10px;
}
.hy-drawer__nav {
    display: grid;
    gap: 8px;
}
.hy-drawer__nav a {
    padding: 12px 10px;
    border-radius: 10px;
    border: 1px solid var(--hy-border);
    text-decoration: none;
    color: var(--hy-text);
    font-weight: 600;
}
.hy-drawer__nav a:hover {
    background: #f9fafb;
}

/* Erişilebilirlik yardımcı sınıfı */
.hy-sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==== Masaüstü kırılımı ==== */
@media (min-width: 992px) {
    .hy-row {
        min-height: var(--hy-nav-h-desktop);
        grid-template-columns: 1fr 2fr 1fr;
    }
    .hy-left__mobile {
        display: none;
    }
    .hy-logo {
        display: inline-flex;
    }
    .hy-logo--mobile {
        display: none;
    }
    .hy-logo--desktop {
        display: inline-flex;
    }
    .hy-menu-btn--mobile-right {
        display: none;
    }
    .hy-title {
        display: none;
    } /* Başlık sadece mobilde */
    .hy-primary-nav {
        display: block;
    } /* Masaüstü menü */
}

.top-navbar2 {
    border-bottom: 1px solid #f5f5f5;
}
.top-header-full {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 0;
}
.header-title {
    margin-left: auto;
    margin-right: auto;
}
.header-title h1 {
    color: var(--2, #000);
    text-align: center;
    font-family: "League Spartan";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}
header#top-navbar {
    padding: 0 12px 0 12px;
}
.img1-main {
    text-align: center;
    margin: 24px 0;
}
.img1-main img {
    max-width: 100%;
}
.veri-text {
    color: var(--3, #555);
    text-align: center;
    font-family: Jost;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.otp-field {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 0 40px 0;
}
.otp-field input {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 10px;
    text-align: center;
    border: transparent;
    background: #f5f5f5;
    outline: none;
    transition: all 0.1s;
    font-family: Jost;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    color: #000;
}
.otp-field input:focus {
    border: 2px solid #1996d4;
    background: transparent;
}
.otp-field input.filled {
    border: 2px solid #000;
    background: transparent;
}
.no-spinners::-webkit-outer-spin-button,
.no-spinners::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.not-yet {
    color: var(--3, #555);
    text-align: center;
    font-family: Jost;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.not-yet a {
    color: var(--2, #000);
    font-weight: 600;
}
.button-main.Verify-btn {
    position: fixed;
    bottom: 0;
    width: 600px;
    margin: 0 auto;
    padding: 16px 12px 20px;
    background: #ffffff;
    z-index: 100;
}
/*-----------------------[ 7.Personal Infp Screen CSS ]------------------------*/
.per-info-text-head {
    color: var(--2, #000);
    text-align: center;
    font-family: "League Spartan";
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    padding-bottom: 24px;
}
.profile-pic {
    max-height: 200px;
    display: inline-block;
    max-width: 200px;
    height: auto;
    width: 100%;
}
.camera-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 120px;
    margin: 0 auto;
}
.camera-img-main {
    width: 40px;
    height: 40px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: 22px;
    cursor: pointer;
}
.circle-img-girl {
    border-radius: 100%;
    overflow: hidden;
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
}
.file-upload {
    display: none;
}
.form-item {
    position: relative;
    margin-bottom: 15px;
}
.form-item input:focus + label,
.form-item input:valid + label {
    font-size: 14px;
    top: 3px;
    font-weight: 500;
    color: #1996d4 !important;
}
.personal-info-form .form-item input {
    font-size: 18px;
    color: #000000;
    width: 100%;
    border-radius: 12px;
    outline: none;
    border: none;
    background-color: #f5f5f5;
    padding: 19px 16px;
}
.form-item .info-person {
    position: absolute;
    cursor: text;
    z-index: 2;
    top: 33%;
    left: 5px;
    padding: 0 10px;
    color: #555555;
    transition: all 0.3s ease;
    font-family: Jost;
    font-weight: 500;
    line-height: 20px;
    font-size: 16px;
}
#ui-datepicker-div {
    display: none;
    background-color: #fff;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
    margin-top: 0.25rem;
    border-radius: 0.5rem;
    padding: 0.5rem;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
.ui-datepicker-calendar thead th {
    padding: 0.25rem 0;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: #78909c;
}
.ui-datepicker-calendar tbody td {
    width: 2.5rem;
    text-align: center;
    padding: 0;
}
div#ui-datepicker-div {
    z-index: 500 !important;
}
.ui-datepicker-calendar tbody td a {
    display: block;
    border-radius: 0.25rem;
    line-height: 2rem;
    transition: 0.3s all;
    color: #546e7a;
    font-size: 0.975rem;
    text-decoration: none;
    font-weight: 500;
}
.ui-datepicker-calendar tbody td a:hover {
    color: #1996d4;
}
.ui-datepicker-calendar tbody td a:hover {
    background: rgba(0, 157, 219, 0.08);
}
.ui-datepicker-calendar tbody td a.ui-state-active {
    background-color: #1996d4;
    color: white;
}
.ui-datepicker-header a.ui-corner-all {
    cursor: pointer;
    position: absolute;
    top: 0;
    width: 2rem;
    height: 0;
    margin: 0.5rem;
    border-radius: 0.25rem;
    transition: 0.3s all;
}
span.ui-icon.ui-icon-circle-triangle-w,
span.ui-icon.ui-icon-circle-triangle-e {
    font-size: 15px;
    color: #1996d4;
    font-weight: 500;
}
a.ui-datepicker-next.ui-corner-all span.ui-icon.ui-icon-circle-triangle-e {
    position: absolute;
    right: -230px;
}
.ui-datepicker-title {
    text-align: center;
    line-height: 32px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}
.per-info-arrow-main {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: 25px;
}
.per-info-arrow-main a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(0, 157, 219, 0.08);
    border-radius: 12px;
}
.per-info-arrow-main-sec {
    justify-content: start;
}
/* Style for toggle buttons */
.personal-info-sec-one,
.personal-info-sec-two {
    display: none;
}
.personal-info-sec-one.active,
.personal-info-sec-two.active {
    display: block;
}
.toggle-buttons {
    display: flex;
    justify-content: center;
    margin: 24px 0;
}
.toggle-btn-per-info {
    width: 36px;
    height: 8px;
    background-color: rgba(0, 157, 219, 0.09);
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 4px;
}
.toggle-btn-per-info.active {
    background-color: #1996d4;
}
/*-----------------------[ 8.Personal Information Loader Screen CSS ]------------------------*/
.sk-fading-circle {
    width: 40px;
    height: 40px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.sk-fading-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.sk-fading-circle .sk-circle:before {
    content: "";
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #000;
    border-radius: 100%;
    -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
    animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}
@keyframes sk-circleFadeDelay {
    0%,
    39%,
    100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.sk-fading-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}
.sk-fading-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}
.sk-fading-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.sk-fading-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}
.sk-fading-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}
.sk-fading-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.sk-fading-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}
.sk-fading-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}
.sk-fading-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}
.sk-fading-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}
.sk-fading-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}
.sk-fading-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}
.sk-fading-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}
.sk-fading-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}
.sk-fading-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}
.sk-fading-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}
.sk-fading-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}
.sk-fading-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}
.sk-fading-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}
.sk-fading-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}
.sk-fading-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}
.sk-fading-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}
.modal {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.56) 0%,
        rgba(0, 0, 0, 0.24) 100%
    );
    backdrop-filter: blur(2px);
    --bs-modal-bg: #fff;
}
.modal-content {
    border-radius: 24px;
}
.loader2 {
    text-align: center;
    margin-top: 32px;
}
.finger-modal-content .modal-body {
    padding: 24px 16px;
}
.finger-img-sec {
    display: flex;
    align-items: center;
    justify-content: center;
}
.congratulations {
    color: var(--2, #000);
    font-family: "League Spartan";
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    padding: 15px 0;
}
.few-sec {
    color: var(--3, #555);
    font-family: Jost;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}
/*-----------------------[ 9.Finger Print Screen CSS ]------------------------*/
.scan-main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 40vh);
    flex-direction: column;
    gap: 30px;
}
.scan {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(../images/finger-print-screen/FingerPrintBorder.png);
    width: 220px;
    height: 220px;
    background-repeat: no-repeat;
    background-size: cover;
}
.scan .fingerprint {
    position: relative;
    width: 220px;
    height: 220px;
    background: url(../images/finger-print-screen/fingerPrint.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.scan .fingerprint::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/finger-print-screen/fingerPrint.png);
    background-repeat: no-repeat;
    background-size: cover;
    animation: animate 4s ease-in-out infinite;
    filter: brightness(0) saturate(100%) invert(39%) sepia(92%) saturate(1292%)
        hue-rotate(359deg) brightness(99%) contrast(106%);
}
@keyframes animate {
    0%,
    100% {
        height: 0%;
    }
    50% {
        height: 100%;
    }
}
.scan .fingerprint::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #1996d4;
    border-radius: 8px;
    filter: drop-shadow(0 0 20px #1996d4) drop-shadow(0 0 60px #1996d4);
    animation: animate_line 4s ease-in-out infinite;
}
@keyframes animate_line {
    0%,
    100% {
        top: 0%;
    }
    50% {
        top: 100%;
    }
}
.secure {
    color: var(--3, #555);
    text-align: center;
    font-family: Jost;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    padding: 24px 0;
}
.do-later-btn {
    text-align: center;
    padding-top: 30px;
}
.do-later-btn a {
    color: var(--2, #000);
    text-align: center;
    font-family: Jost;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.finger-screen-btn {
    position: fixed;
    bottom: 0;
    width: 600px;
    margin: 0 auto;
    padding: 16px 12px 20px;
    background: #ffffff;
    z-index: 100;
}
/*-----------------------[ 10.Face Recognition Screen CSS ]------------------------*/
.status__icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1996d4;
    border-radius: 100%;
    position: relative;
}
.status__icon img {
    z-index: 1000;
}
.status__icon::after,
.status__icon::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #989898;
    border-radius: 100%;
    z-index: -100;
}
.status__icon:after {
    animation: pulse 3s linear infinite;
}
.status__icon:before {
    animation: pulse 3s 1s linear infinite;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}
@keyframes pulse-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 245, 245, 0.5);
    }
    100% {
        box-shadow: 0 0 0 calc(2 * 3rem) rgba(255, 0, 60, 0);
    }
}
/*-----------------------[ 11.Girl Face Recognition Screen CSS ]------------------------*/
.face-landmarks {
    background-image: url(../images/finger-print-screen/face-recong-girl.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
}
.EnableFace {
    position: absolute;
    width: 100%;
    padding: 24px 12px;
    color: #000;
}
.Subtract {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.face-scanner-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-40%, -100%);
    width: 100%;
    max-width: 120px;
    animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}
.loader-face-scan-main {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, -50%);
}
.loader-digit {
    color: var(--4, #1996d4);
    text-align: center;
    font-family: Jost;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    padding-bottom: 16px;
}
.ver-face-text {
    color: var(--2, #000);
    text-align: center;
    font-family: Jost;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    animation: blinker 1.5s linear infinite;
}
/*-----------------------[ 12. Preferred language Screen CSS ]------------------------*/
.skip-header-btn {
    color: var(--3, #555);
    font-family: Jost;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    line-height: 24px;
}
.hey-jessica {
    color: #000;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    padding: 24px 0 16px 0;
}
.facilitate {
    text-align: left;
    padding: 0;
}
.select-lang-sec {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 32px;
}
label.custom-radio-sel-lang {
    padding: 11px 16px;
    border: 2px solid #f5f5f5;
    border-radius: 4px;
    cursor: pointer;
    color: #000;
    text-align: center;
    font-family: Jost;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}
.lang-sec input[type="radio"] {
    display: none;
}
.lang-sec input[type="radio"]:checked + label {
    background: #000;
    border-radius: 4px;
    color: #fff;
    border: 2px solid transparent;
}
/*-----------------------[ 13.Choose Interests Screen CSS ]------------------------*/
.intere {
    padding-top: 24px;
}
.lang-sec input[type="checkbox"] {
    display: none;
}
.lang-sec input[type="checkbox"]:checked + label {
    background: #000000;
    border-radius: 4px;
    color: #fff;
    border: 2px solid transparent;
}
.account-created-text {
    text-align: center;
    padding-top: 0;
}
.img6 {
    padding-top: 30px;
}
/*-----------------------[ 14.Forget Password Screen CSS ]------------------------*/
.mobile-message-main {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    background-color: rgba(254, 102, 1, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#forget-password .form-item {
    position: relative;
    margin-top: 24px;
}
#forget-password .form-item input:focus + label,
#forget-password .form-item input:valid + label {
    font-size: 14px;
    top: 3px;
    font-weight: 500;
    color: #1996d4 !important;
}
#forget-password .form-item input:focus {
    border: 2px solid #1996d4;
}
#forget-password .form-item input {
    font-size: 18px;
    color: #000000;
    background: transparent;
    width: 100%;
    border-radius: 12px;
    outline: none;
    padding: 16px 16px 16px 75px;
    border: 2px solid var(--9, #f5f5f5);
    height: 80px;
}
#forget-password .info-person {
    position: absolute;
    cursor: text;
    z-index: 2;
    top: 33%;
    left: 65px;
    padding: 0 10px;
    color: #555555;
    transition: all 0.3s ease;
    font-family: Jost;
    font-weight: 500;
    line-height: 20px;
    font-size: 16px;
}
/*-----------------------[ 15.Confirm OTP Screen CSS ]------------------------*/
.block-footer {
    color: var(--3, #555);
    font-family: Jost;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    line-height: 24px;
    padding-bottom: 25px;
}
#countdowntimer {
    font-weight: 700;
    color: #000;
}
#countdowntimer::after {
    content: " Sec";
}
/*-----------------------[ 16.New Password Screen CSS ]------------------------*/
#New-password .form-item {
    position: relative;
    margin-top: 24px;
}
#New-password .form-item input:focus + label,
#New-password .form-item input:valid + label {
    font-size: 14px;
    top: 3px;
    font-weight: 500;
    color: #1996d4 !important;
}
#New-password .form-item input {
    font-size: 18px;
    color: #000000;
    background: #f5f5f5;
    width: 100%;
    border-radius: 12px;
    outline: none;
    padding: 20px 16px;
    border: 2px solid var(--9, #f5f5f5);
    height: 64px;
}
#New-password .form-item .eye-off {
    position: absolute;
    right: 20px;
    top: 20px;
}
#New-password .info-person {
    position: absolute;
    cursor: text;
    z-index: 2;
    top: 33%;
    left: 10px;
    padding: 0 10px;
    color: #555555;
    transition: all 0.3s ease;
    font-family: Jost;
    font-weight: 500;
    line-height: 20px;
    font-size: 16px;
}
/*-----------------------[ 17.Home Screen Setting CSS ]------------------------*/
.offcanvas-header {
    border-bottom: 2px solid #f5f5f5;
}
.home-setting-icons-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 2px solid #f5f5f5;
}
.setting-opestion-main {
    display: flex;
    align-items: center;
    gap: 16px;
}
.setting-icons-main {
    width: 48px;
    height: 48px;
    background: rgba(0, 157, 219, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.setting-icons-main img {
    filter: brightness(0) saturate(100%) invert(48%) sepia(100%) saturate(2000%)
        hue-rotate(180deg) brightness(95%) contrast(105%);
    width: 24px;
    height: 24px;
}
.new-notification {
    color: var(--2, #000);
    font-family: Jost;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.btn-close {
    --bs-btn-close-focus-shadow: none;
    --bs-btn-close-opacity: 1;
}
.offcanvas-title {
    color: var(--2, #000);
    text-align: center;
    font-family: "League Spartan";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}
/*-----------------------[ 18.Home Screen One CSS ]------------------------*/
.shop-ad-card {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 16px;
    border-radius: 16px;
    margin: 0px 8px 0 8px;
}
.shop-ad-card-img1 {
    background-image: url("../images/home-screen/cap-man-img1.jpg");
}
.shop-ad-card-img2 {
    background-image: url("../images/home-screen/cap-man-img2.jpg");
}
.shop-ad-card-img3 {
    background-image: url("../images/home-screen/cap-man-img3.jpg");
}
.shop-ad-card-img4 {
    background-image: url("../images/home-screen/cap-man-img4.jpg");
}
.shop-ad-card-img6 {
    background-image: url("../images/home-screen/cap-man-img6.jpg");
}
.shop-ad-card-img7 {
    background-image: url("../images/home-screen/cap-man-img7.jpg");
}
.season {
    color: var(--1, #fff);
    font-family: "League Spartan";
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    padding-bottom: 8px;
    max-width: 220px;
}
.disc {
    color: var(--1, #fff);
    font-family: Jost;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.ShopNowBtn a {
    margin-top: 32px;
    display: inline-block;
}
.shop-card {
    position: relative;
}
.shop-card ul.slick-dots {
    display: flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    right: 25px;
    bottom: 20px;
}
.shop-card ul.slick-dots button {
    font-size: 0;
    color: #000;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #fff;
}
.shop-card li.slick-active button {
    width: 24px;
    height: 8px;
    background-color: #fff;
    border-radius: 15px;
    border: none;
}
.search-bar-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 12px;
    border-radius: 8px;
    background: var(--9, #f5f5f5);
    margin: 24px 0;
}
.search-bar-main input {
    width: 100%;
    outline: none;
    border: none;
    background: var(--9, #f5f5f5);
    color: var(--3, #555);
    font-family: Jost;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
/* ------------- Categories -------------*/
.categories-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 24px 0 16px 0;
}
.categories {
    color: var(--2, #000);
    font-family: "League Spartan";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}
.view-all-arrow {
    filter: brightness(0) saturate(100%) invert(32%) sepia(0%) saturate(1503%)
        hue-rotate(153deg) brightness(99%) contrast(92%);
}
.view-all-text {
    color: var(--3, #555);
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 3px;
}
.categories-slider {
    margin-left: 12px;
    padding-right: 12px;
}
.categories-slider-head {
    margin: 0 8px 0 8px;
    text-align: center;
    min-width: 140px;
}
.categories-img-oval {
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    width: 100%;
    max-width: 100px;
    margin-bottom: 12px;
}
.categories-img-oval img {
    position: relative;
    bottom: -3px;
}
.categories-img1 {
    background: #a9efff;
    height: 120px;
    width: 120px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.categories-img2 {
    background: #ffbf9b;
    height: 120px;
    width: 120px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.categories-img3 {
    background: #ffb9bc;
    height: 120px;
    width: 120px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.categories-img4 {
    background: #ffd885;
    height: 120px;
    width: 120px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.categories-img5 {
    background: #bab9ff;
    height: 120px;
    width: 120px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.categories-img6 {
    background: #cdff9b;
    height: 120px;
    width: 120px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.categories-img7 {
    background: #cbc6ca;
    height: 120px;
    width: 120px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.categories-img8 {
    background: #ff9be9;
    height: 120px;
    width: 120px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.categories-img9 {
    background: #c7b09e;
    height: 120px;
    width: 120px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.categories-name {
    color: var(--2, #000);
    text-align: center;
    font-family: "League Spartan";
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}
.categories-items {
    color: var(--3, #555);
    text-align: center;
    font-family: Jost;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}
/* ------------- Featured -------------*/
.featured-slider-head {
    margin: 0 8px 0 8px;
}
.featured-img-box {
    height: 160px;
    border-radius: 8px;
    background: var(--9, #f5f5f5);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
}
.featured-img-box img {
    mix-blend-mode: darken;
    max-width: 100%;
}
.like-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}
.heart-icon {
    width: 18px;
    height: 18px;
    cursor: pointer;
    fill: none;
    stroke: #555555;
    stroke-width: 3;
    transition: fill 0.3s ease, stroke 0.3s ease;
}
.heart-icon.filled {
    fill: red;
    stroke: red;
}
.featured-prod-name {
    color: var(--2, #000);
    font-family: Jost;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}
.featured-prod-price {
    color: var(--2, #000);
    font-family: Jost;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}
.featured-prod-dmain {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 8px;
}
.featured-prod-rating {
    color: var(--3, #555);
    font-family: Jost;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    display: flex;
    align-items: stretch;
    gap: 2px;
}
.featured-prod-rating::before {
    content: url("../images/svg/star-orng.svg");
}
/* ------------- shop-ad-card2 -------------*/
.shop-ad-card2 {
    margin: 24px 0 0 0;
    border-radius: 0;
    padding: 32px 16px;
}
#shop-ad-card-second ul.slick-dots {
    position: absolute;
    right: 25px;
    bottom: 33px;
}
/* ------------- Logo Brand -------------*/
.brand-slider .featured-img-box {
    width: 100%;
    max-width: 120px;
    height: 64px;
    margin-bottom: 0;
    padding: 12px;
}
.brand-slider {
    margin-left: 12px;
}
.brand-slider.featured-slider-head {
    margin: 0 8px 12px 8px;
}
/* ------------- Best Sellers -------------*/
.best-sellers-slider {
    margin-left: 12px;
    margin-bottom: 24px;
}
.best-sellers-slider .featured-img-box {
    max-width: 200px;
    height: 220px;
}
.pluse-sign-box {
    width: 48px;
    height: 48px;
    background: #000;
    border-radius: 8px 0 8px 0;
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pluse-sign-box img {
    mix-blend-mode: normal;
}
.sale-stamp {
    color: var(--1, #fff);
    text-align: center;
    font-family: Jost;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    padding: 8px;
    border-radius: 4px;
    background: #ff373c;
    position: absolute;
    left: 8px;
    bottom: 8px;
}
.Shor {
    color: var(--2, #000);
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    overflow: hidden;
}
.featured-prod-price span {
    color: var(--3, #555);
    font-size: 12px;
    line-height: 18px;
    text-decoration-line: line-through;
    padding-left: 8px;
}
/* ------------- New Arrivals -------------*/
.tab-btn-main {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
    overflow: auto;
    margin-left: 12px;
}
.tab-btn-main::-webkit-scrollbar {
    display: none;
}
.tabContainer {
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
    position: relative;
}
.tab-btn {
    color: var(--2, #000);
    text-align: center;
    font-family: Jost;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    border-radius: 12px;
    border: 2px solid #000;
    padding: 7px 12px;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 10px;
}
.new-arrivals {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.Tabcondent {
    position: absolute;
    width: 50%;
    height: 50%;
    opacity: 0;
    transition: all ease-in-out 0.3s;
}
.tab-btn.tab-active,
.tab-btn:hover {
    background: #000;
    color: #fff;
}
.Tabcondent.tab-active {
    width: 100%;
    height: 100%;
    opacity: 1;
    border-radius: 0px;
    transition: all ease-in-out 0.6s;
    margin: 0 auto;
    position: relative;
}
.new-arrivals .featured-img-box {
    width: 100%;
    height: auto;
    cursor: auto;
}
.pluse-sign-box-arrivals {
    width: 32px;
    height: 32px;
}
.like-btn-new-arrivals {
    width: 26px;
    height: 26px;
    top: 4px;
    right: 4px;
}
.like-btn-new-arrivals .heart-icon {
    width: 16px;
    height: 16px;
}
.Shor-arrivals {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 1100px;
}
.featured-prod-price-arrivals {
    padding: 12px 0;
}
/* ------------- Home Scrren Footer -------------*/
.bottom-menu-svg-main {
    position: relative;
}
@media (min-width: 992px) {
    .bottom-menu-svg-main,
    .navigation {
        display: none !important; /* masaüstünde gizle */
    }
}
.bottom-menu-svg {
    position: fixed;
    bottom: -40px;
    z-index: 100;
}
.gol3 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background-color: #000000;
    border-radius: 50%;
    z-index: 1001;
    bottom: 100px;
}
.add-to-cart-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
}
.home-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.bottom-menu-svg-design {
    height: 160px;
    width: 100%;
    background: #fff;
}
.navigation {
    position: fixed;
    bottom: 25px;
    z-index: 100;
    width: 100%;
    padding: 0 32px;
}
.navigation .listWrap {
    list-style: none;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
li.list.active {
    position: relative;
}
li.list.active .white-circle {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: -22px;
    left: -4px;
    filter: blur(12px);
}
.navigation .listWrap li a {
    position: relative;
    display: flex;
    justify-content: center;
}
.navigation .listWrap li:active a .icon,
.navigation .listWrap li.active a .icon {
    filter: brightness(0) saturate(100%) invert(39%) sepia(93%) saturate(1634%)
        hue-rotate(1deg) brightness(100%) contrast(101%);
    transform: translateY(-20px);
}
.navigation .listWrap li a .icon {
    position: relative;
    display: block;
    text-align: center;
    transition: 0.5s;
    color: #fff;
}
.navigation .listWrap li:active a .text,
.navigation .listWrap li.active a .text {
    opacity: 1;
    transform: translateY(10px);
}
.navigation .listWrap li a .text {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #1996d4;
    transition: 0.5s;
    transform: translateY(20px);
    opacity: 0;
    z-index: 1;
}
/*-----------------------[ 19.Home Screen Two CSS ]------------------------*/
.home-screen2ShopCard .shop-ad-card {
    margin: 0;
    border-radius: 0 0 32px 32px;
    padding: 150px 16px 24px;
}
.shop-ad-card-page2img1 {
    background-image: url("../images/home-screen/home2Slider-img1.jpg");
}
.shop-ad-card-page2img2 {
    background-image: url("../images/home-screen/home2Slider-img2.jpg");
}
.shop-ad-card-page2img3 {
    background-image: url("../images/home-screen/home2Slider-img3.jpg");
}
.shop-ad-card-page2img4 {
    background-image: url("../images/home-screen/home2Slider-img4.jpg");
}
/* Top Categories */
.mind-items {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.item-name-box {
    width: 74px;
    height: 102px;
    border-radius: 37px 37px 4px 4px;
    border: 2px solid #f5f5f5;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.16);
}
.item-name-box-sub {
    width: 64px;
    height: 64px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px 4px 8px 3px;
}
.item-name-box-name {
    color: var(--2, #000);
    text-align: center;
    font-family: Jost;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 15px;
}
.shop-ad-card-img5 {
    background-image: url("../images/home-screen/cap-man-img5.jpg");
}
/*-----------------------[ 20.Search Screen CSS ]------------------------*/
.Tabcondent-search-screen .Tabcondent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.Tabcondent-search-screen .new-arrivals {
    flex-direction: column;
    margin-bottom: 0;
}
.Tabcondent-search-screen .new-arrivals .featured-img-box {
    flex-direction: column;
    margin-bottom: 0;
}
.Tabcondent-search-screen .rating-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
/*-----------------------[ 21.Error 404 Screen CSS ]------------------------*/
.erorScrren {
    text-align: center;
}
.erorScrren img {
    margin-top: 24px;
    max-width: 100%;
}
.keyword {
    color: var(--3, #555);
    font-family: Jost;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding-top: 12px;
}
/*-----------------------[ 22.Filter Screen CSS ]------------------------*/
.container-heeh {
    margin-top: 50px;
}
.container-heeh .price-filter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.container-heeh .slider {
    position: relative;
    width: 100%;
    height: 2px;
    background: #f5f5f5;
    border-radius: 5px;
}
.container-heeh .slider input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    width: 100%;
    height: 2px;
    background: transparent;
    pointer-events: none;
    outline: none;
}
.container-heeh .slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #1996d4;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
}
.container-heeh .slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #1996d4;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
}
.container-heeh .slider::before {
    content: "";
    position: absolute;
    height: 2px;
    background: #1996d4;
    border-radius: 5px;
    left: var(--left);
    right: calc(100% - var(--right));
}
.container-heeh .price-label {
    position: absolute;
    top: -38px;
    transform: translateX(-100%);
    color: var(--1, #fff);
    text-align: center;
    font-family: Jost;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    background-image: url(../images/svg/price-bg.svg);
    background-size: cover;
    background-position: center;
    width: 34px;
    height: 25px;
    padding-top: 3px;
}
.container-heeh #min-price {
    left: var(--left);
    margin-left: 30px;
}
.container-heeh #max-price {
    left: var(--right);
    margin-right: 20px;
}
.filter-sales-btn-container {
    display: flex;
    justify-content: space-between;
    padding: 4px;
    border: 2px solid #000;
    border-radius: 8px;
    gap: 10px;
    margin-top: 24px;
}
.filter-sales-btn {
    color: #000;
    text-align: center;
    font-family: Jost;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    padding: 6px 20px;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}
.filter-sales-btn.active {
    background-color: #000;
    color: #fff;
}
.review-desc {
    display: flex;
    align-items: center;
    margin-top: 12px;
    padding-right: 16px;
    overflow: auto;
    gap: 12px;
}
.custom-radio-sel-review {
    padding: 5px 12px;
    border-radius: 18px;
    border: 2px solid #000;
    cursor: pointer;
    color: #000;
    text-align: center;
    font-family: Lato;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    display: inline-flex;
}
.review-sec input {
    display: none;
}
.review-star {
    margin-right: 4px;
}
.review-sec input[type="radio"]:checked + label {
    border-radius: 18px;
    background: #000;
    color: #fff;
}
/*-----------------------[ 23.Best Seller Screen CSS ]------------------------*/
.filterSvg2-main {
    display: flex;
    align-items: center;
    gap: 5px;
}
.sorting,
.filterSvg2-main h2 {
    font-weight: 600;
}
.verify-section-main {
    border-bottom: 1px solid #f5f5f5;
    padding: 16px 24px;
}
.wallet-text {
    font-weight: 400;
}
.privacy_manage {
    color: var(--2, #000);
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.verify-section-main div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.form-check-input-radio {
    border: 2px solid #000;
    background-color: transparent;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
}
.form-check-input-radio:checked[type="radio"] {
    outline: 2px solid #000;
    outline-offset: 4px;
    background: #000;
    width: 11px;
    height: 11px;
    margin-right: 5px;
    border: 1px solid #000;
}
/*-----------------------[ 24.Categories Screen CSS ]------------------------*/
.Categories-screen-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 16px 18px;
    margin-top: 16px;
}
.Categories-screen-main .categories-slider-head {
    margin: 0;
}
/*-----------------------[ 25.Choose Brands Screen CSS ]------------------------*/
.ChooseBrands-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 16px;
    margin-top: 16px;
}
.ChooseBrands-main .featured-img-box {
    align-items: normal;
    height: 80px;
    padding: 12px;
    margin-bottom: 0;
}
.ChooseBrands-main .featured-slider-head {
    width: 100%;
    margin: 0;
}
.brandLogo-name {
    color: var(--2, #000);
    text-align: center;
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    padding-top: 8px;
}
.SpecialOffer1 {
    margin-top: 16px;
}
/*-----------------------[ 26.Single Women Products Screen CSS ]------------------------*/
.singfooter-cart {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%)
        hue-rotate(327deg) brightness(97%) contrast(100%);
}
.ad-cart-num {
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1996d4;
    border-radius: 50%;
    color: var(--1, #fff);
    text-align: center;
    font-family: "League Spartan";
    font-size: 10px;
    font-weight: 700;
    position: absolute;
    top: -3px;
    right: -3px;
}
.single-product-slider {
    border-radius: 16px;
    background: var(--7, #d9d9d9);
    margin: auto;
    margin: 16px 0;
}
.single-product-slider-img-main {
    max-width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
}
.single-product-slider-img-main img {
    max-width: 100%;
}
.single-slick-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    position: absolute;
    top: 45%;
    z-index: 10;
}
.slick-prev {
    left: 0;
    border-radius: 0 8px 8px 0;
}
.slick-next {
    right: 0;
    border-radius: 8px 0 0 8px;
}
.georgette {
    color: var(--2, #000);
    font-family: "League Spartan";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}
.raSpld {
    display: flex;
    align-items: center;
    gap: 16px;
}
.sold {
    color: var(--3, #555);
    font-family: Jost;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 12px;
    border-radius: 4px;
    background: var(--9, #f5f5f5);
    padding: 3px 8px;
}
.rsplad-rw {
    color: var(--2, #000);
    font-family: Jost;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 0 16px 0;
}
.descr {
    color: var(--2, #000);
    font-family: "League Spartan";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}
.descr-main {
    padding: 16px 0;
    border-top: 2px solid #f5f5f5;
    border-bottom: 2px solid #f5f5f5;
}
.text-container {
    position: relative;
}
.truncated-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
    color: var(--3, #555);
    font-family: Jost;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}
.read-more-checkbox {
    display: none;
}
.read-more-btn {
    color: #000;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    display: inline-block;
}
.read-more-btn::after {
    content: "Read More";
}
.read-more-checkbox:checked ~ .truncated-text {
    -webkit-line-clamp: unset;
}
.read-more-checkbox:checked ~ .read-more-btn::after {
    content: "Read Less";
}
.about-detail-main {
    display: flex;
    align-items: center;
}
.about-detail {
    color: var(--3, #555);
    font-family: Jost;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    max-width: 160px;
    width: 100%;
}
.about-detail:before {
    content: "\2022";
    font-size: 30px;
    color: #555;
    padding-right: 10px;
    position: relative;
    bottom: -8px;
}
.about-detail-info {
    color: var(--2, #000);
    font-family: Jost;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    width: 340px;
}
.about-detail-info::before {
    content: ":";
    color: #555;
    margin-right: 30px;
}
.AdditionalInfo-main {
    padding: 16px 0;
    border-bottom: 2px solid #f5f5f5;
}
.size-btn-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}
.size-btn {
    width: 32px;
    height: 32px;
    border: 2px solid #f5f5f5;
    color: var(--3, #555);
    text-align: center;
    font-family: Jost;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    background: transparent;
    border-radius: 50%;
}
.size-btn.active {
    background: #000;
    color: #fff;
}
.cloths-color-sec {
    display: flex;
    column-gap: 8px;
    margin-top: 12px;
}
.color-wrap label {
    border-radius: 20px;
    position: relative;
}
.color1 {
    background: #ff7ca0;
}
.color2 {
    background: #65d6ba;
}
.color3 {
    background: #6570d6;
}
.color4 {
    background: #abd665;
}
.color5 {
    background: #000000;
}
.color6 {
    background: #ffb800;
}
.color7 {
    background: #0094ff;
}
.color8 {
    background: #61523c;
}
.color-wrap input[type="radio"] {
    appearance: none;
}
.col-deatils {
    height: 32px;
    width: 32px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.color-wrap input[type="radio"]:checked:after {
    opacity: 1;
}
.color-wrap input:after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    background-image: url(../images/svg/check.svg);
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
}
.size-color-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 16px;
    padding-bottom: 50px;
}
#addToCartButtonSingle {
    box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.04);
}
.addToCartButtonSingle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
}
.price-it span {
    color: var(--4, #1996d4);
    padding-left: 5px;
}
.counter-container {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}
.counter-button {
    background-color: transparent;
    border: 2px solid #f5f5f5;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    color: #555555;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.counter-button:hover {
    background-color: #f5f5f5;
}
.counter-value {
    margin: 0 8px;
    width: 40px;
    height: 24px;
    border-radius: 4px;
    background: var(--9, #f5f5f5);
    color: var(--2, #000);
    text-align: center;
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}
.SingleShoewsSize {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
/*-----------------------[ 27.Rating Review Screen CSS ]------------------------*/
.rating-review {
    color: var(--2, #000);
    font-family: "League Spartan";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    margin: 16px 0;
}
.rating-review span {
    font-weight: 400;
}
.customer-review-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.customer-review-main-sub {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 0 12px 0;
}
.customer-img {
    max-width: 100%;
    border-radius: 50%;
}
.customer-name {
    color: var(--2, #000);
    font-family: "League Spartan";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.cutomer-review-time {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: var(--3, #555);
    font-family: Jost;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
}
.review-reply {
    color: var(--3, #555);
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    padding-bottom: 8px;
    font-family: Jost;
}
.helpful-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}
.helpful-main p {
    color: var(--2, #000);
    font-family: Jost;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}
.like-dislike-main {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-right: 20px;
}
.like-dislike-btns {
    background: transparent;
}
.like-dislike-btns span {
    color: var(--3, #555);
    font-family: Jost;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}
/*-----------------------[ 28.Cart Screen CSS ]------------------------*/
.shopNowCart {
    margin-top: 32px;
    margin-bottom: 40px;
    padding: 0 12px;
}
.gol3.active {
    background: #1996d4;
}
.cart-product-box-main {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 2px solid #f5f5f5;
}
.cart-product-box {
    width: 140px;
    height: 140px;
    border-radius: 8px;
    background: var(--9, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-product-box img {
    mix-blend-mode: multiply;
}
.Knee-Long {
    color: var(--2, #000);
    font-family: Jost;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}
.knee-price {
    color: var(--2, #000);
    font-family: Jost;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}
.kneeTile {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 12px 0;
}
.kneeTile p {
    color: var(--3, #555);
    font-family: Jost;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.cart-counter-container {
    justify-content: left;
}
#promoCodeApply-Main {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f5f5f5;
}
#promoCodeApply {
    border-radius: 8px;
    width: 100%;
}
.PromoApplyBtn {
    color: var(--1, #fff);
    text-align: center;
    font-family: Jost;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 97px;
    height: 48px;
    background: #000;
    border-radius: 8px;
}
.subtotal {
    color: var(--2, #000);
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
}
.discount,
.delivery {
    font-weight: 400;
}
.discount span {
    color: var(--5, #4ade80);
}
.delivery span {
    color: #ff373c;
}
.subDis-main {
    padding: 22px 0;
    border-bottom: 2px solid #f5f5f5;
}
.btn-total-amountPrice-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}
.ttooya {
    color: var(--2, #000);
    font-family: "League Spartan";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.eiasm {
    color: var(--2, #000);
    font-family: "League Spartan";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}
.btn-total-amountPrice-main {
    padding: 24px 0 50px;
}
.btn-total-amountPrice-main .button-main {
    width: 100%;
}
/*-----------------------[ 29.Promocodes Screen CSS ]------------------------*/
#promoScreenInput {
    margin: 16px 0;
}
.coupon-code-box-sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
}
.coupon-code-box {
    border-radius: 8px;
    border: 2px solid #f5f5f5;
    padding: 16px;
    margin: 16px 0;
}
.percentag-offer {
    color: var(--2, #000);
    font-family: Jost;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.expire-date {
    color: #555555;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.coupon-code {
    font-size: 14px;
    font-weight: 500;
}
.exp {
    color: #1996d4;
}
/*-----------------------[ 30.Checkout Screen CSS ]------------------------*/
.myOrder-text {
    color: var(--2, #000);
    font-family: "League Spartan";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 8px 0;
    border-bottom: 2px solid #f5f5f5;
}
.myOrder-text span {
    font-weight: 500;
}
.Georg_main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
}
#Georg_main {
    margin: 16px 0 24px;
}
.Georg {
    max-width: 200px;
}
.eneum-main {
    overflow: hidden;
    color: var(--3, #555);
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.eneum-main-discount {
    color: #4ade80;
}
.eneum-main-delivery {
    color: #ff373c;
}
.add-loc-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(0, 157, 219, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.shipping-detil h2 {
    color: var(--2, #000);
    font-family: "League Spartan";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.shipping-detil p {
    color: var(--3, #555);
    font-family: Jost;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.addlsHopot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    padding-top: 16px;
    border-bottom: 2px solid #f5f5f5;
}
.addlsHopot-sub {
    display: flex;
    align-items: center;
    gap: 16px;
}
.AdditionalNotes-main {
    border-radius: 8px;
    background: var(--9, #f5f5f5);
    padding: 12px;
    margin-top: 14px;
}
.AdditionalNotes-main p {
    color: var(--2, #000);
    font-family: "League Spartan";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    padding-bottom: 12px;
}
.AdditionalNotes-main textarea {
    width: 100%;
    height: 130px;
    outline: none;
    background: var(--9, #f5f5f5);
    border: none;
    color: #555555;
    font-family: Jost;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 20px;
    resize: none;
}
.shippDtials {
    color: var(--2, #000);
    font-family: "League Spartan";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 24px 24px 16px 24px;
    border-bottom: 1px solid #f5f5f5;
}
.form-check {
    display: block;
    min-height: 0;
    padding-left: 0;
    margin-bottom: 0;
}
.Ave {
    color: var(--3, #555);
    font-family: Jost;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding-top: 5px;
}
.vsisa-logo {
    width: 45px;
    height: 32px;
    border: 2px solid #f5f5f5;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center !important;
}
.traMyOrder-btn #traMyOrder-btn {
    background: transparent;
    border: 2px solid #000;
    color: #000;
    margin-bottom: 16px;
}
.Wishlist-tab {
    margin-top: 16px;
}
/*-----------------------[ 31.Account Screen CSS ]------------------------*/
.account-profile-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 24px 0;
}
.account-profile-main-sub {
    display: flex;
    align-items: center;
    gap: 16px;
}
.account-img {
    max-width: 100%;
    border-radius: 50%;
}
.Jessica {
    color: var(--2, #000);
    font-family: "League Spartan";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding-bottom: 4px;
}
.Jessica-number {
    color: var(--3, #555);
    font-family: Jost;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}
.accountListText {
    color: var(--2, #000);
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.accountlistMain {
    border-radius: 12px;
    border: 1px solid var(--9, #f5f5f5);
    margin-bottom: 12px;
    margin-top: 0;
    padding: 8px;
}
.profile-screen-main {
    margin-top: 24px;
}
/*-----------------------[ 32.My Orders Screen CSS ]------------------------*/
#ongoing {
    width: 100%;
    margin-left: 0;
    border: 2px solid #1996d4;
    gap: 0;
    border-radius: 8px;
    margin-top: 16px;
}
.ongoing {
    color: #1996d4;
    text-align: center;
    font-family: "League Spartan";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding: 12px;
    max-width: 300px;
    width: 100%;
}
.ongoing.tab-active {
    background: #1996d4;
    color: #ffffff;
}
.LeaveReview,
.LeaveReview a {
    color: var(--1, #fff);
    text-align: center;
    font-family: Jost;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    background: #000;
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
}
.Delivered {
    background: #f5f5f5;
    color: #000;
    display: inline;
}
.leavereviw-main {
    justify-content: flex-start;
    gap: 20px;
    padding-top: 12px;
}
.knee-pricedada {
    font-size: 16px;
}
/*-----------------------[ 33.Order Track Screen CSS ]------------------------*/
.track-order-veh {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 58px;
    position: relative;
    margin: 24px 0;
}
.doted-lines-tack {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translate(-50%);
}
.orderStatusDe {
    color: var(--2, #000);
    font-family: "League Spartan";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding: 24px 0;
    border-top: 2px solid #f5f5f5;
}
.orderStatusDe-sub {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    margin-bottom: 32px;
}
.orderStatusDe-text-main {
    display: flex;
    align-items: center;
    gap: 12px;
}
.orderStatusDe-text h2 {
    color: var(--2, #000);
    font-family: "League Spartan";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}
.orderStatusDe-text p {
    color: var(--3, #555);
    font-family: Jost;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    padding-top: 4px;
}
.orderStatusDe-Time {
    color: var(--3, #555);
    font-family: Jost;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
}
.dottedLine::after {
    content: "";
    position: absolute;
    width: 100%;
    top: 30px;
    left: 15px;
    border-left: 2px dashed black;
    height: 40px;
}
.howis {
    margin-top: 24px;
}
/*-----------------------[ 34.Leave Review Screen CSS ]------------------------*/
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    font-size: 32px;
    gap: 5px;
    cursor: pointer;
}
.star-rating input {
    display: none;
}
.star-rating label {
    color: #ccc;
    cursor: pointer;
}
.star-rating :checked ~ label {
    color: #1996d4;
}
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #1996d4;
}
.rate-star {
    margin: 20px 0;
}
.product-comment {
    width: 100%;
    height: 206px;
    border: 1px solid #f6f8fa !important;
    border-radius: 8px;
    resize: none;
    background: #f0f0f0;
}
.product-textarea1 {
    width: 100%;
    resize: none;
    height: 135px;
    border: none;
    outline: none;
    padding: 16px;
    color: #000;
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    background: #f0f0f0;
    border-radius: 8px;
}
.uploadbtn-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: sticky;
    bottom: 0;
}
.img-upload {
    width: 150px;
    padding: 7px 0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #fff;
    color: var(--3, #555);
    font-family: Jost;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}
/*-----------------------[ 35.My Wallet Screen CSS ]------------------------*/
.wallet-amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}
.wallet-amount h2 {
    color: var(--2, #000);
    font-family: "League Spartan";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}
.wallet-amount p {
    color: #1996d4;
    font-weight: 500;
}
.you_can_add {
    color: var(--3, #555);
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.limit {
    color: var(--3, #555);
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding: 24px 0 32px;
}
.mastCard {
    width: 74px;
    height: 48px;
}
.Njdcn {
    color: #000;
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
#Njdcn {
    color: #1996d4;
}
/*-----------------------[ 36.Add New Card Screen CSS ]------------------------*/
.demo-visa {
    background-image: url(../images/add-new-card/card-img.png);
    background-position: center;
    background-repeat: no-repeat;
    max-height: 200px;
    height: 100%;
    max-width: 343px;
    width: 100%;
    margin: 20px auto;
    border-radius: 24px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.card-hidden-number {
    color: var(--1, #fff);
    font-family: "League Spartan";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 1.2px;
}
.card-name-jessica-main {
    display: flex;
    justify-content: space-around;
    column-gap: 25px;
}
.card-name-jessica {
    color: var(--1, #fff);
    font-family: "League Spartan";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    width: 100%;
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.card-name-jessica-main-sub {
    display: flex;
    justify-content: space-around;
    column-gap: 25px;
}
.card-date-cvv {
    color: var(--1, #fff);
    font-family: "League Spartan";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.cvv-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
/*-----------------------[ 37.Notification Screen CSS ]------------------------*/
.odPIN {
    justify-content: center;
}
.map1-img {
    max-width: 100%;
    padding-top: 16px;
}
.yrteb {
    text-align: center;
}
.today-yesterday {
    color: var(--2, #000);
    font-family: "League Spartan";
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    padding-bottom: 8px;
}
.notification_box {
    border-radius: 8px;
    background: var(--9, #f5f5f5);
    padding: 12px;
    margin-bottom: 8px;
}
.spacial-discount {
    color: var(--2, #000);
    font-family: "League Spartan";
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}
.promotion {
    padding-top: 5px;
    color: var(--3, #555);
    font-family: Jost;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
#today-yesterday,
#today-yesterday2 {
    padding-top: 25px;
}
/*-----------------------[ 38.Notification Options Screen CSS ]------------------------*/
.swiches-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #f5f5f5;
}
.remember-text {
    color: var(--2, #000);
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.check-box {
    display: flex;
}
.swiches-toggle input:checked[type="checkbox"] {
    background: #1996d4;
    border: 2px solid transparent;
}
.swiches-toggle input[type="checkbox"] {
    position: relative;
    appearance: none;
    width: 40px;
    height: 24px;
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid #f5f5f5;
    transition: 0.4s;
}
.swiches-toggle input:checked[type="checkbox"]::after {
    left: 46%;
}
.swiches-toggle input[type="checkbox"]::after {
    position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    top: 1px;
    left: 0;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 3px 1px 0px rgba(0, 0, 0, 0.05),
        0px 1px 1px 0px rgba(0, 0, 0, 0.08), 0px 3px 8px 0px rgba(0, 0, 0, 0.08);
    transform: scale(1.1);
    transition: 0.4s;
}
/*-----------------------[ 39.Language Select Screen CSS ]------------------------*/
.flg-main {
    width: 48px;
    height: 48px;
    border-radius: 24px;
    border: 1px solid var(--9, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.flg-main img {
    border-radius: 50%;
}
.flag {
    color: var(--2, #000);
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.falg-text-mainsa {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    border-radius: 24px 12px 12px 24px;
    border: 1px solid var(--9, #f5f5f5);
    padding: 12px;
}
.language-select {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}
.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    transition: 0.3s ease;
}
.language-option input[type="radio"] {
    display: none;
}
.custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    transition: 0.3s ease;
}
.language-option input[type="radio"]:checked + .custom-radio {
    background-color: #1996d4;
    border-color: #1996d4;
}
.language-option input[type="radio"]:checked + .custom-radio::after {
    content: url(../images/svg/check.svg);
    position: absolute;
    top: 0;
    left: 0;
}
/*-----------------------[ 40.Currency Select Screen CSS ]------------------------*/
.currency-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #f5f5f5;
}
.usd-dollar-main {
    display: flex;
    align-items: center;
    gap: 10px;
}
.usd-dollar-main img,
.contacsd-img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(99%) saturate(7480%)
        hue-rotate(311deg) brightness(94%) contrast(98%);
}
/*-----------------------[ 41.About Screen CSS ]------------------------*/
.sit {
    color: var(--3, #555);
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding-bottom: 8px;
}
.contacsd-text {
    color: var(--4, #1996d4);
    font-family: "League Spartan";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    padding-top: 24px;
}
.heklp {
    color: var(--2, #000);
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.helksp-amian {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--9, #f5f5f5);
    margin-top: 4px;
}
.media-icon-main {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 10px;
}
.media-icon-name {
    color: var(--2, #000);
    text-align: center;
    font-family: Jost;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    padding-top: 12px;
}
.yseunf {
    padding: 16px 0 12px 0;
}
/*-----------------------[ 42.Contact Screen CSS ]------------------------*/
.contact-asjk {
    margin-top: 32px;
}
.conta-phone {
    color: var(--2, #000);
    font-family: Jost;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    border-radius: 8px;
    background: var(--9, #f5f5f5);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 12px;
}
/*-----------------------[ 43.FAQ Screen CSS ]------------------------*/
.accordion-item {
    border: none;
}
.accordion-header {
    color: #000;
    font-family: "League Spartan";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    padding: 16px 0;
    border-top: 2px solid #f5f5f5;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-content {
    display: none;
}
.open-class {
    display: block;
}
.accordion-header.active {
    color: #1996d4;
    border-bottom: 2px solid #f5f5f5;
}
.sub-accordion-header {
    padding-bottom: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.sub-accordion-content {
    display: none;
    padding-bottom: 16px;
    color: var(--3, #555);
    font-family: Jost;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.sub-accordion-header.active {
    color: #1996d4;
}
.icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}
.icon.rotate {
    transform: rotate(180deg);
}
.feed-labal {
    color: var(--2, #000);
    font-family: "League Spartan";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}
.accordion-content,
.sub-accordion-content {
    display: none;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}
.accordion-content.open,
.sub-accordion-content.open {
    display: block;
}
/*-----------------------[ 44.Pop Up Add Home Screen CSS ]------------------------*/
.backgroundOverlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #000000;
    opacity: 0.5;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    z-index: 101;
    display: none;
}
.delayedPopupWindow {
    display: none;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #fff;
    z-index: 102;
    padding: 16px;
    margin: 0 auto;
    border-radius: 24px 24px 0 0;
}
#btnClose {
    width: 100%;
    position: absolute;
    top: 10px;
    right: 15px;
    text-align: right;
    text-decoration: none;
    color: #000;
    font-size: 25px;
}
.formDescription {
    text-align: center;
}
.formDescription img {
    width: 85px;
    max-width: 100%;
    animation-name: hanging;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    transform-origin: center top;
}
.formDescription h3 {
    display: block;
    font-family: "League Spartan";
    font-size: 35px;
    font-weight: 700;
    color: #000;
    padding: 10px 0;
    text-transform: uppercase;
}
.formDescription p {
    margin-bottom: 15px;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    font-family: Jost;
    color: var(--3, #555);
    text-align: center;
}
.home-scrren-main {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*-----------------------[ Sidebar Divider CSS ]------------------------*/
.sidebar-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 15px 0;
    border: none;
}

/*-----------------------[ Header Menu Button CSS ]------------------------*/
.header-menu-btn {
    display: flex;
    align-items: center;
}

.header-menu-btn .btn {
    background: none;
    border: none;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-menu-btn img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(93%) saturate(1634%)
        hue-rotate(1deg) brightness(100%) contrast(101%);
}

/*-----------------------[ Fiyat Talep Alanı CSS ]------------------------*/
.price-request-section {
    padding: 20px 12px;
    background: #f8f9fa;
    margin: 20px 0;
    border-radius: 16px;
}

.price-request-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
}

.price-request-card {
    background: white;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.price-request-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.price-request-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1996d4, #44b8e9);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.primary-card .card-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.secondary-card .card-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.accent-card .card-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.success-card .card-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.card-title {
    color: #1a1a1a;
    font-family: "League Spartan", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.card-description {
    color: #6b7280;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.card-button {
    margin-top: auto;
}

.btn-primary,
.btn-secondary,
.btn-accent,
.btn-success {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 12px;
    font-family: "League Spartan", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ee82f9 0%, #f3455a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(240, 147, 251, 0.3);
}

.btn-accent {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #3d9bfe 0%, #00e6fe 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 172, 254, 0.3);
}

.btn-success {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.btn-success:hover {
    background: linear-gradient(135deg, #3dd66b 0%, #2ef5d5 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(67, 233, 123, 0.3);
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .price-request-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .price-request-card {
        padding: 20px 16px;
    }

    .card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 12px;
    }

    .card-title {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 10px;
    }

    .card-description {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 16px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-accent,
    .btn-success {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .price-request-section {
        padding: 16px 8px;
        margin: 16px 0;
    }

    .price-request-card {
        padding: 16px 12px;
    }

    .card-icon {
        width: 48px;
        height: 48px;
    }

    .card-title {
        font-size: 15px;
        line-height: 20px;
    }

    .card-description {
        font-size: 12px;
        line-height: 16px;
    }
}

/* Masaüstü ve Mobil Sepet Butonu Görünümleri */
/* Masaüstü sepet butonu - mobilde gizle */
@media (max-width: 991.98px) {
    .hy-desktop-cart {
        display: none !important;
    }
    .hy-desktop-logout {
        display: none !important;
    }
}

/* Mobil sepet butonu - masaüstünde gizle */
@media (min-width: 992px) {
    .hy-mobile-cart {
        display: none !important;
    }
    .hy-mobile-logout {
        display: none !important;
    }
}
