    :root {
    /* Renkler */
    --prime: rgba(237, 28, 36, 1);
    --white: rgba(255, 255, 255, 1);
    --black: rgba(0, 0, 0, 1);
    --dark-grey: rgba(86, 86, 86, 1);
    --grey: rgba(166, 166, 166, 1);
    --light-grey: rgba(242, 242, 242, 1);
    --secondary-black: #262626;
    --hover-grey: #595959;
    /* Font A��rl�klar� */
    --font-weight-300: 300;
    --font-weight-400: 400;
    --font-weight-600: 600;
    --font-weight-700: 700;
    /* Font Boyutlar� */
    --font-size-12: 12px;
    --font-size-14: 14px;
    --font-size-18: 18px;
    --font-size-20: 20px;
    --font-size-22: 22px;
    --font-size-24: 24px;
    --font-size-32: 32px;
    --font-size-34: 34px;
    --font-size-40: 40px;
    --font-size-44: 44px;
    --font-size-48: 48px;
    --font-size-64: 64px;
    /* Di�er De�erler */
    --border-radius-8: 8px;
    --border-radius-12: 12px;
    --transition-0-3s: all 0.3s ease;
    --letter-spacing-0-6: 0.6px;
    --font-urbanist: "Urbanist", sans-serif;
}

a {
    text-decoration: none;
    color: var(--light-grey);
}

body {
    font-family: var(--font-urbanist);
}

.top-contact a {
    position: relative;
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-12);
    color: var(--black);
    text-decoration: none;
    transition: var(--transition-0-3s);
}

    .top-contact a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: currentColor;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .top-contact a:hover {
        color: var(--hover-grey);
    }

        .top-contact a:hover::after {
            transform: scaleX(1);
        }

.top-contact svg {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
    fill: currentColor;
    transition: fill 0.3s ease;
    color: var(--black);
}

.top-header {
    user-select: none;
    padding: 14px 0px;
    background: var(--white);
    z-index: 1;
    display: block;
    position: relative;
}

.header-logo {
    height: 80px;
    width: 247px;
}

.desktop-nav .nav-link {
    color: var(--dark-grey);
    padding: 0.6rem 1rem;
    transition: var(--transition-0-3s);
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-20);
    line-height: 100%;
    vertical-align: middle;
    text-transform: capitalize;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-black);
}

.desktop-nav .dropdown-menu {
    border-radius: 0.3rem;
    opacity: 1;
    padding: 12px 9px;
    left: 40px;
    border-top-right-radius: var(--border-radius-12);
    border-bottom-right-radius: var(--border-radius-12);
    border-bottom-left-radius: var(--border-radius-12);
    background: var(--light-grey);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

    .desktop-nav .dropdown-menu li {
        opacity: 1;
        padding: 5px 10px;
        width: 200px;
        height: 34px;
        border-bottom: 1px solid var(--black);
    }

        .desktop-nav .dropdown-menu li a {
            font-weight: var(--font-weight-600);
            font-size: var(--font-size-20);
            line-height: normal;
            text-transform: capitalize;
            padding: 0;
            color: var(--dark-grey);
            transition: var(--transition-0-3s);
        }

.dropdown-menu li a:hover {
    background: transparent !important;
    color: var(--secondary-black);
}

.navbar .dropdown-toggle::after {
    content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M6 7.4L0 1.4L1.4 0L6 4.6L10.6 0L12 1.4L6 7.4Z' fill='currentColor'/></svg>");
    display: inline-block;
    margin-left: 6px;
    vertical-align: text-top;
    border: unset !important;
}

.home-link .bi-house {
    font-size: 1.2rem;
    color: var(--prime);
    vertical-align: middle;
}

nav.navbar {
    background-color: var(--light-grey);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.offcanvas-body .navbar-nav li a {
    border-bottom: 2px solid var(--dark-grey);
    color: var(--dark-grey);
    font-size: var(--font-size-20);
    font-style: normal;
    font-weight: var(--font-weight-600);
    line-height: normal;
    letter-spacing: var(--letter-spacing-0-6);
    text-transform: capitalize;
    margin-bottom: 15px;
}

.offcanvas-body .navbar-nav li ul li a {
    border-bottom: 1px solid var(--dark-grey) !important;
    padding: 0px 10px 5px !important;
}

.offcanvas-body .navbar-nav li a {
    padding: 15px !important;
}

.offcanvas-body .navbar-nav .dropdown-toggle::after {
    content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M6 7.4L0 1.4L1.4 0L6 4.6L10.6 0L12 1.4L6 7.4Z' fill='currentColor'/></svg>");
    display: inline-block;
    margin-left: 6px;
    vertical-align: text-top;
    border: unset !important;
}

.offcanvas-body .dropdown-menu {
    position: static !important;
    width: 100%;
    background: transparent;
    box-shadow: none;
    transition: max-height 0.4s ease;
    border: 0px !important;
}

.carousel-caption {
    border-radius: var(--border-radius-8);
    padding: 1rem 1.5rem;
    text-align: left;
    width: 100%;
    left: 0;
    padding: 30px;
}

    .carousel-caption h5 {
        color: var(--white);
        font-size: var(--font-size-64);
        font-style: normal;
        font-weight: var(--font-weight-700);
        line-height: normal;
        letter-spacing: var(--letter-spacing-0-6);
        text-transform: uppercase;
        text-shadow: 1px 2px 4px var(--black);
    }

.carousel-item img {
    border-radius: var(--border-radius-12);
    object-fit: cover;
    max-height: 450px;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55.89%, var(--black) 90.84%), url(<path-to-image>) lightgray -65.815px -596.521px / 105.861% 252.427% no-repeat;
}

.carousel-indicators [data-bs-target] {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--white);
    transition: background-color 0.3s ease;
}

.carousel-indicators .active {
    background-color: var(--white);
}

#mainCarousel {
    margin-top: 72px;
    margin-bottom: 72px;
}

.marka-container {
    display: flex;
    margin: 0 auto;
    align-items: center;
    align-content: space-around;
    gap: 9rem;
}

@media (max-width: 1400px) {
    .marka-container {
        gap: 3rem;
    }
}

@media (max-width: 1200px) {
    .marka-container {
        flex-direction: column;
        align-items: center;
    }
}

.section-title {
    color: var(--prime);
    font-size: var(--font-size-32);
    font-style: normal;
    font-weight: var(--font-weight-700);
    line-height: normal;
    letter-spacing: var(--letter-spacing-0-6);
    text-transform: uppercase;
}

.marka-container .car-card,
.firsat-card {
    border-radius: 1rem;
    cursor: pointer;
    text-align: center;
    width: 340px;
}

.firsat-card {
    height: 280px;
}

.marka-container .car-image {
    user-select: none;
    width: 300px;
    height: 188px;
}

.marka-container .car-label p {
    color: var(--black);
    text-align: center;
    font-size: var(--font-size-32);
    font-style: normal;
    font-weight: var(--font-weight-700);
    line-height: normal;
    letter-spacing: var(--letter-spacing-0-6);
    text-transform: uppercase;
    margin: 0px;
}

.marka-container .car-label {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 60px;
    border-radius: var(--border-radius-8);
    background: var(--light-grey);
}

.carousel-inner {
    border-radius: var(--border-radius-12) !important;
}

.firsat-card {
    background-color: var(--prime);
    display: flex;
    align-items: center;
    padding: 20px;
    position: relative;
    color: var(--white);
    font-size: var(--font-size-40);
    font-style: normal;
    font-weight: var(--font-weight-700);
    line-height: normal;
    text-transform: uppercase;
    text-align: start;
}

    .firsat-card::after {
        content: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200' fill='none'%3E%3Cpath d='M43.1346 86.8307C30.9725 86.8307 20.7429 82.6368 12.4457 74.2489C4.14858 65.8611 0 55.6189 0 43.5224C0 31.4279 4.19103 21.1983 12.5731 12.8336C20.9571 4.47082 31.1973 0.289436 43.2938 0.289436C55.3883 0.289436 65.6199 4.47082 73.9884 12.8336C82.357 21.1983 86.5412 31.4144 86.5412 43.4819C86.5412 55.644 82.3473 65.9093 73.9595 74.2779C65.5716 82.6464 55.2967 86.8307 43.1346 86.8307ZM43.0912 59.6237C47.5755 59.6237 51.4038 58.055 54.576 54.9175C57.7482 51.7781 59.3343 47.9672 59.3343 43.4848C59.3343 39.0005 57.7656 35.2629 54.6281 32.2721C51.4887 29.2812 47.6778 27.7858 43.1954 27.7858C38.711 27.7858 34.9735 29.2639 31.9826 32.22C28.9918 35.178 27.4964 38.8982 27.4964 43.3806C27.4964 47.8649 28.9744 51.6932 31.9305 54.8654C34.8886 58.0376 38.6088 59.6237 43.0912 59.6237ZM156.408 200C144.37 200 134.153 195.826 125.76 187.479C117.366 179.13 113.169 168.903 113.169 156.799C113.169 144.693 117.363 134.443 125.751 126.049C134.139 117.656 144.414 113.459 156.576 113.459C168.738 113.459 179.016 117.694 187.41 126.165C195.803 134.636 200 144.863 200 156.845C200 168.828 195.744 179.016 187.233 187.41C178.724 195.803 168.449 200 156.408 200ZM156.515 172.793C161 172.793 164.737 171.244 167.728 168.145C170.719 165.046 172.214 161.283 172.214 156.857C172.214 152.43 170.736 148.673 167.78 145.586C164.822 142.499 161.102 140.955 156.619 140.955C152.135 140.955 148.307 142.505 145.135 145.603C141.962 148.702 140.376 152.465 140.376 156.891C140.376 161.318 141.945 165.075 145.083 168.162C148.222 171.249 152.033 172.793 156.515 172.793ZM19.1027 200L0 180.897L180.897 0L200 19.1027L19.1027 200Z' fill='white' fill-opacity='0.4'/%3E%3C/svg%3E");
        position: absolute;
        right: 48px;
        width: 200px;
        height: 200px;
        pointer-events: none;
        user-select: none;
        aspect-ratio: 1 / 1;
    }

@media (max-width: 768px) {
    .car-card,
    .firsat-card {
        width: 90%;
        max-width: 350px;
        margin-bottom: 1.5rem;
    }
}

.accordion-button {
    font-weight: var(--font-weight-700);
    font-size: var(--font-size-32);
    line-height: normal;
    text-transform: uppercase;
    color: var(--black) !important;
    background: var(--light-grey) !important;
    border: 1px solid var(--bs-accordion-border-color);
    border-radius: var(--border-radius-8) !important;
}

.accordion-item {
    margin-bottom: 16px;
    border: 0px;
}

.accordion-body {
    border: 0px !important;
}

@media (max-width: 780px) {
    .accordion-button {
        font-size: var(--font-size-22) !important;
    }

    .marka-container .car-image {
        width: 150px !important;
        height: 94px !important;
    }

    .marka-container .car-label p {
        font-size: var(--font-size-22) !important;
    }

    .header-logo {
        height: 80px;
        width: 130px;
    }

    #mainCarousel {
        margin: 32px 0 48px 0 !important;
        padding: 0px;
    }

    .carousel-item img {
        max-height: 300px;
        border-radius: 0px;
    }

    .carousel-indicators {
        display: none;
    }

    .carousel-inner {
        border-radius: 0px !important;
    }

    .carousel-caption {
        border-radius: var(--border-radius-8);
        padding: 0px 1rem;
        text-align: left;
        width: 100%;
        left: 0;
        bottom: 12px !important;
    }

        .carousel-caption h5 {
            font-size: var(--font-size-14);
            bottom: 15%;
            padding: 0px;
            width: 95%;
            max-width: none;
        }

    .container#mainCarousel {
        max-width: 100% !important;
    }
}

.list-info .info {
    padding: 15px;
}

.list-info .circle {
    color: var(--prime);
    font-weight: var(--font-weight-700);
    font-size: var(--font-size-34);
}

.list-info .info strong {
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-24);
    line-height: normal;
    text-transform: capitalize;
    color: var(--black);
}

.list-info .info p {
    font-weight: var(--font-weight-400);
    font-size: var(--font-size-20);
    line-height: normal;
    margin-top: 12px;
    color: var(--black);
}

.custom-card-ads {
    width: 400px;
    height: 400px;
    opacity: 1;
    background: url("../img/Servis banner (1).jpg") no-repeat;
    background-size: cover;
    border-radius: var(--border-radius-8);
    padding: 14px;
}

    .custom-card-ads p {
        font-weight: var(--font-weight-700);
        font-size: var(--font-size-40);
        line-height: normal;
        letter-spacing: 0px;
        text-transform: uppercase;
        margin-top: 58px;
        color: var(--secondary-black);
    }

.custom-card-ads-1 {
    width: 900px;
    height: 400px;
    opacity: 1;
    border-radius: var(--border-radius-8);
    background: url("../img/Renew banner.jpg") no-repeat;
    background-size: cover;
    border-radius: var(--border-radius-8);
    padding: 59px 155px 38px;
    position: relative;
    overflow: hidden;
    align-content: center;
    text-align: center;
}

    .custom-card-ads-1::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
        border-radius: var(--border-radius-8);
        z-index: 1;
    }

    .custom-card-ads-1 > * {
        position: relative;
        z-index: 2;
    }

    .custom-card-ads-1 img {
        width: 522px;
        height: 99px;
        opacity: 1;
        margin-bottom: 24px;
    }

    .custom-card-ads-1 p {
        font-weight: var(--font-weight-700);
        font-size: var(--font-size-20);
        line-height: normal;
        text-align: center;
        text-transform: lowercase;
        color: var(--white);
    }

    .custom-card-ads-1 button {
        color: var(--white);
        border: none;
        background: var(--prime);
        opacity: 1;
        border-radius: 100px;
        padding-top: 12px;
        padding-right: 24px;
        padding-bottom: 12px;
        padding-left: 24px;
        font-weight: var(--font-weight-600);
        font-size: var(--font-size-20);
        line-height: normal;
        text-transform: capitalize;
    }

.btn-custom:hover {
    background: var(--secondary-black);
    color: var(--white);
}

.custom-card {
    position: relative;
    color: var(--white);
    padding: 20px;
    margin: auto;
    width: 340px;
    height: 500px;
    opacity: 1;
    border-radius: var(--border-radius-12);
    background-size: cover !important;
}

    .custom-card h5 {
        font-weight: var(--font-weight-600);
        font-size: var(--font-size-48);
        line-height: normal;
        text-transform: capitalize;
        margin-bottom: 100px;
    }

    .custom-card p {
        font-weight: var(--font-weight-400);
        font-size: var(--font-size-20);
        line-height: normal;
        margin-bottom: 30px;
    }

    .custom-card img {
        position: absolute;
        height: 385px;
        bottom: 0px;
        right: -20px;
        opacity: 1;
        z-index: 1;
        display: block;
    }

    .custom-card .card-content {
        position: relative;
        z-index: 2;
    }

    .btn-custom {
        color: var(--white);
        border: none;
        background: var(--prime);
        opacity: 1;
        border-radius: 100px;
        padding-top: 12px;
        padding-right: 24px;
        padding-bottom: 12px;
        padding-left: 24px;
        font-weight: var(--font-weight-600);
        font-size: var(--font-size-20);
        line-height: normal;
        text-transform: capitalize;
    }

@media (max-width: 1200px) {
    .custom-card {
        width: 300px;
        height: 460px;
        margin-bottom: 22px;
    }

    .widget .custom-card {
        width: 340px;
    }

    .custom-card img {
        height: 340px;
        right: -22px;
    }

    .custom-card h5 {
        font-weight: var(--font-weight-600);
        font-size: var(--font-size-44);
        line-height: normal;
        text-transform: capitalize;
        margin-bottom: 80px;
    }
}

@media (min-width: 1200px) {
    .justify-self-md-end {
        justify-self: end !important;
    }
}

.campain-carousel .card {
    border-radius: var(--border-radius-12);
    background: var(--light-grey);
    overflow: hidden;
    height: 600px;
}

    .campain-carousel .card img {
        width: 100%;
        height: auto;
    }

.campain-carousel img {
    display: block;
    width: 100%;
    opacity: 1;
    border-top-left-radius: var(--border-radius-12);
    border-top-right-radius: var(--border-radius-12);
}

.campain-carousel .card-title {
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-24);
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 22px;
}

.campain-carousel .card-text {
    font-weight: var(--font-weight-400);
    font-size: var(--font-size-20);
    line-height: normal;
    margin-bottom: 22px;
}

.campain-carousel .owl-dots {
    text-align: center;
    margin-top: 15px;
}

.campain-carousel .owl-dot {
    width: 14px !important;
    height: 14px !important;
    margin: 0 5px;
    border-radius: 50%;
    background: var(--dark-grey) !important;
    display: inline-block;
    transition: var(--transition-0-3s);
}

    .campain-carousel .owl-dot.active {
        background: var(--prime) !important;
    }

@media (max-width: 768px) {
    .campain-carousel .owl-dot {
        width: 12px;
        height: 12px;
        margin: 0 5px;
        background: #ccc;
        border-radius: 50%;
    }

        .campain-carousel .owl-dot.active {
            background: var(--prime) !important;
        }
}

.campain-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

    .campain-carousel .owl-nav .nav-btn {
        background: var(--grey);
        color: var(--white);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        pointer-events: auto;
        transition: var(--transition-0-3s);
    }

        .campain-carousel .owl-nav .nav-btn:hover {
            background: #333;
            color: var(--white);
        }

    .campain-carousel .owl-nav .material-symbols-outlined {
        font-size: 28px;
        line-height: 1;
    }

footer h5 {
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-24);
    line-height: normal;
    vertical-align: middle;
    text-transform: capitalize;
    margin-bottom: 24px;
}

footer ul li {
    font-weight: var(--font-weight-300);
    font-size: var(--font-size-20);
    line-height: normal;
    vertical-align: middle;
    margin-bottom: 12px;
}

footer p span {
    font-size: var(--font-size-14) !important;
}

footer p {
    font-weight: var(--font-weight-300);
    font-size: var(--font-size-20);
    line-height: normal;
    vertical-align: middle;
}

.brands-container {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .brands-container .car-card {
        border-radius: 1rem;
        cursor: pointer;
        width: 340px;
        margin: 24px 0px;
    }

@media (min-width: 1400px) {
    .brands-container {
        padding-right: 60px;
    }
}

@media (max-width: 778px) {
    .brands-container .car-card {
        margin: 24px auto !important;
    }
}

.brands-container .car-label {
    background: var(--light-grey);
    width: 340px;
    height: 122px;
    border-radius: var(--border-radius-8);
    opacity: 1;
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.brands-container .car-label > span {
    position: absolute;
    right: 14px;
    bottom: 4px;
}

.brands-container .car-label p {
        font-weight: var(--font-weight-700);
        font-size: var(--font-size-32);
        line-height: normal;
        vertical-align: middle;
        text-transform: uppercase;
        color: var(--black);
        margin: 0px;
        text-align: start;
    }

.brands-container .car-card img {
    margin-bottom: -10px;
}

.brands-container .car-card span span:first-child {
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-12);
    line-height: normal;
    text-align: right;
    display: block;
    color: var(--grey);
}

.brands-container .car-card span span:nth-of-type(2) {
    font-weight: var(--font-weight-700);
    font-size: var(--font-size-24);
    line-height: normal;
    letter-spacing: var(--letter-spacing-0-6);
    text-align: right;
    color: var(--dark-grey);
    display: block;
}

.brands-container .car-card span span:nth-of-type(3) {
    font-weight: var(--font-weight-400);
    text-align: right;
    color: var(--grey);
    display: block;
}

@media (max-width: 1200px) {
    .widget .firsat-card {
        width: 340px !important;
    }
}

#carAccordion .accordion-button {
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-24);
    line-height: normal;
    text-transform: capitalize;
    background: transparent !important;
    border-width: 0px 0px 3px;
    border-color: var(--black);
    border-radius: 0px !important;
    flex-direction: column;
}

#carAccordion .brands-version {
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-24);
    line-height: normal;
    text-transform: capitalize;
}

#carAccordion .badge-type {
    margin-top: 12px;
}

@media (max-width: 768px) {
    #carAccordion .badge-type {
        flex-wrap: wrap;
    }

        #carAccordion .badge-type span:nth-of-type(3) {
            margin: 6px;
        }
}

#carAccordion .price-text {
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-24);
    line-height: 100%;
    text-align: right;
    text-transform: capitalize;
    color: var(--black);
    margin-bottom: 4px;
}

#carAccordion .price-caption {
    font-weight: var(--font-weight-400);
    text-align: right;
    color: var(--grey);
}

#carAccordion .badge-type span {
    font-weight: var(--font-weight-600);
    color: var(--white);
    font-size: var(--font-size-18);
    line-height: 100%;
    text-transform: capitalize;
    border-radius: 100px;
    padding: 4px 8px;
    margin-right: 8px;
    background: var(--grey);
}

    #carAccordion .badge-type span:nth-of-type(3) {
        background: var(--black);
    }

    #carAccordion .badge-type span:nth-of-type(4) {
        background: var(--dark-grey);
    }

#carAccordion .accordion-button::after {
    display: none;
}

#carAccordion .accordion-button svg {
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

#carAccordion .accordion-button[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.max-width {
    width: max-content;
}

#carAccordion .detail-card {
    background: var(--light-grey);
    padding: 12px;
    border-bottom: 1px solid var(--dark-grey);
}

#carAccordion .detail-title {
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-24);
    line-height: normal;
    text-transform: capitalize;
}

#carAccordion ul.detail-list {
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-20);
    line-height: normal;
    text-transform: capitalize;
}

#carAccordion .detail-price {
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-24);
    line-height: normal;
    text-align: right;
    text-transform: capitalize;
}


#carAccordionPriceList .accordion-button {
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-24);
    line-height: normal;
    text-transform: capitalize;
    background: transparent !important;
    border-width: 0px 0px 3px;
    border-color: var(--black);
    border-radius: 0px !important;
    flex-direction: column;
}

#carAccordionPriceList .brands-version {
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-20);
    line-height: normal;
    text-transform: capitalize;
}

#carAccordionPriceList .badge-type {
    margin-top: 12px;
}

@media (max-width: 768px) {
    #carAccordionPriceList .badge-type {
        flex-wrap: wrap;
    }

        #carAccordionPriceList .badge-type span:nth-of-type(3) {
            margin: 6px;
        }
}

#carAccordionPriceList .price-text {
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-20);
    line-height: 100%;
    text-align: right;
    text-transform: capitalize;
    color: var(--black);
    margin-bottom: 4px;
}

#carAccordionPriceList .price-caption {
    font-weight: var(--font-weight-400);
    text-align: right;
    color: var(--grey);
    font-size: var(--font-size-20);
}

#carAccordionPriceList .badge-type span {
    font-weight: var(--font-weight-400);
    color: var(--white);
    font-size: var(--font-size-14);
    line-height: 100%;
    text-transform: capitalize;
    border-radius: 100px;
    padding: 4px 8px;
    margin-right: 8px;
    background: var(--grey);
}

    #carAccordionPriceList .badge-type span:nth-of-type(3) {
        background: var(--black);
    }

    #carAccordionPriceList .badge-type span:nth-of-type(4) {
        background: var(--dark-grey);
    }

#carAccordionPriceList .accordion-button::after {
    display: none;
}

#carAccordionPriceList .accordion-button svg {
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

#carAccordionPriceList .accordion-button[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

#carAccordionPriceList .detail-card {
    background: var(--light-grey);
    padding: 12px;
    border-bottom: 1px solid var(--dark-grey);
    transition: background-color 0.7s ease; 
}

#carAccordionPriceList .detail-card.selected {
    background-color: #e0e0e0;
}

#carAccordionPriceList .detail-title {
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-20);
    line-height: normal;
    text-transform: capitalize;
}

#carAccordionPriceList ul.detail-list {
    font-weight: var(--font-weight-400);
    font-size: var(--font-size-14);
    line-height: normal;
    text-transform: capitalize;
}

#carAccordionPriceList .detail-price {
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-20);
    line-height: normal;
    text-align: right;
    text-transform: capitalize;
}

.yeniarac-card {
    border-radius: 1rem;
    cursor: pointer;
    text-align: center;
    width: 340px;
    height: 280px;
    background: var(--dark-grey);
    display: flex;
    padding: 20px;
    position: relative;
    color: var(--white);
    font-size: var(--font-size-40);
    font-style: normal;
    font-weight: var(--font-weight-700);
    line-height: normal;
    text-transform: uppercase;
    text-align: start;
}

    .yeniarac-card::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 19px;
        width: 200px;
        height: 200px;
        pointer-events: none;
        user-select: none;
        aspect-ratio: 1 / 1;
        background: url("data:image/svg+xml;utf8,<svg width='250' height='247' viewBox='0 0 250 247' fill='none' xmlns='http://www.w3.org/2000/svg'><path opacity='0.5' d='M15.4444 247C11.0685 247 7.40046 245.521 4.44028 242.562C1.48009 239.603 0 235.936 0 231.562V108.062L32.4333 15.4375C33.9778 10.8063 36.7449 7.07553 40.7347 4.24532C44.7245 1.41511 49.1648 0 54.0556 0H223.944C228.835 0 233.275 1.41511 237.265 4.24532C241.255 7.07553 244.022 10.8063 245.567 15.4375L278 108.062V231.562C278 235.936 276.52 239.603 273.56 242.562C270.6 245.521 266.931 247 262.556 247H247.111C242.735 247 239.067 245.521 236.107 242.562C233.147 239.603 231.667 235.936 231.667 231.562V216.125H46.3333V231.562C46.3333 235.936 44.8532 239.603 41.8931 242.562C38.9329 245.521 35.2648 247 30.8889 247H15.4444ZM43.2444 77.1875H234.756L218.539 30.875H59.4611L43.2444 77.1875ZM69.5 169.812C75.9352 169.812 81.4051 167.561 85.9097 163.059C90.4144 158.556 92.6667 153.089 92.6667 146.656C92.6667 140.224 90.4144 134.756 85.9097 130.254C81.4051 125.751 75.9352 123.5 69.5 123.5C63.0648 123.5 57.5949 125.751 53.0903 130.254C48.5856 134.756 46.3333 140.224 46.3333 146.656C46.3333 153.089 48.5856 158.556 53.0903 163.059C57.5949 167.561 63.0648 169.812 69.5 169.812ZM208.5 169.812C214.935 169.812 220.405 167.561 224.91 163.059C229.414 158.556 231.667 153.089 231.667 146.656C231.667 140.224 229.414 134.756 224.91 130.254C220.405 125.751 214.935 123.5 208.5 123.5C202.065 123.5 196.595 125.751 192.09 130.254C187.586 134.756 185.333 140.224 185.333 146.656C185.333 153.089 187.586 158.556 192.09 163.059C196.595 167.561 202.065 169.812 208.5 169.812ZM30.8889 185.25H247.111V108.062H30.8889V185.25Z' fill='white'/></svg>") no-repeat center / contain;
    }

.widget {
    justify-items: end;
}

@media (max-width: 1200px) {
    .widget .yeniarac-card {
        width: 340px;
    }
}

/* Son Form */
.custom-form {
    background-color: var(--black);
    border-radius: var(--border-radius-12);
    padding: 30px 20px 30px 20px;
    width: 340px;
    color: var(--white);
}

    .custom-form h2 {
        font-weight: var(--font-weight-700);
        font-size: var(--font-size-32);
        line-height: normal;
        text-align: center;
        vertical-align: middle;
        text-transform: uppercase;
        color: var(--white);
        margin-bottom: 26px;
    }

    .custom-form .form-control {
        background-color: transparent;
        border: 1px solid var(--white);
        border-radius: 7px;
        color: var(--white);
        font-size: 0.9rem;
        padding: 8px 12px;
        margin-bottom: 16px;
    }

        .custom-form .form-control::placeholder {
            color: var(--grey);
            opacity: 1;
        }

        .custom-form .form-control:focus {
            background-color: transparent;
            color: var(--white);
            border-color: var(--prime);
            box-shadow: none;
        }

    .custom-form textarea.form-control {
        height: 90px;
        resize: none;
    }

    .custom-form .form-check-label {
        user-select: none;
        font-weight: var(--font-weight-600);
        font-size: var(--font-size-12);
        line-height: normal;
        vertical-align: middle;
        color: var(--white);
    }

    .custom-form .form-check-input {
        width: 18px;
        height: 18px;
        margin-top: 0.1rem;
        margin-right: 10px;
        border: 1px solid var(--white);
        background-color: transparent;
        accent-color: var(--white);
        cursor: pointer;
        position: absolute;
    }

    .custom-form .btn-submit {
        background-color: var(--prime);
        color: var(--white);
        border: none;
        padding: 12px 20px;
        border-radius: 100px;
        margin-top: 15px;
        cursor: pointer;
        font-weight: var(--font-weight-600);
        font-size: var(--font-size-20);
        line-height: normal;
        text-transform: capitalize;
    }

        .custom-form .btn-submit:not(.btn-check) + .btn:active {
            background-color: transparent;
        }

.custom-sort {
    background-color: var(--white);
    padding: 6px;
    margin-right: 4px;
}

    .custom-sort .dropdown-toggle::after {
        margin-left: 0.3rem;
    }

    .custom-sort .btn-select {
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        font-weight: var(--font-weight-600);
        font-size: var(--font-size-20);
        line-height: normal;
        letter-spacing: var(--letter-spacing-0-6);
        vertical-align: middle;
        text-transform: capitalize;
        color: var(--black);
    }

        .custom-sort .btn-select:hover,
        .custom-sort .btn-select:focus {
            background-color: transparent;
            box-shadow: none;
        }

    .custom-sort .dropdown-toggle::after {
        content: "";
        display: inline-block;
        width: 13px;
        height: 8px;
        margin-left: 0.3rem;
        vertical-align: middle;
        background-image: url("data:image/svg+xml,%3csvg width='13' height='8' viewBox='0 0 13 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M6.5 7.4L0.5 1.4L1.9 0L6.5 4.6L11.1 0L12.5 1.4L6.5 7.4Z' fill='black'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-size: contain;
        border: none;
    }

/* ---- Sadece filtre alan�n� kapsayan CSS ---- */
.custom-filters {
    background-color: var(--light-grey);
    border-radius: var(--border-radius-12);
    border: 1px solid var(--light-grey);
}

.offcanvas-body.custom-filters {
    background: var(--white);
    border: 0px;
    border-radius: 0px;
}

    .offcanvas-body.custom-filters .dropdown-toggle-btn {
        background: var(--white);
    }

.custom-filters .filter-title {
    margin-top: 45px;
    margin-bottom: 20px;
    user-select: none;
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-20);
    line-height: normal;
    text-transform: capitalize;
    color: var(--prime);
}

.custom-filters .brand-options {
    margin-bottom: 1rem;
    user-select: none;
}

    .custom-filters .brand-options label {
        display: block;
        cursor: pointer;
        transition: color 0.2s ease;
        font-weight: var(--font-weight-600);
        font-size: var(--font-size-20);
        margin-bottom: 20px;
        line-height: normal;
        text-transform: capitalize;
        color: var(--dark-grey);
    }

        .custom-filters .brand-options label:hover {
            color: var(--prime);
        }

    .custom-filters .brand-options input[type="radio"] {
        display: none;
    }

        .custom-filters .brand-options input[type="radio"]:checked + label {
            color: var(--prime);
            font-weight: var(--font-weight-600);
        }

.custom-filters select.form-select {
    cursor: pointer;
    background-color: transparent;
    color: var(--dark-grey);
    border: none;
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-20);
    line-height: normal;
    text-transform: capitalize;
}

.custom-filters select.form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M6 7.4L0 1.4L1.4 0L6 4.6L10.6 0L12 1.4L6 7.4Z' fill='%23565656'/%3e%3c/svg%3e");
    color: var(--dark-grey);
    background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
    background-size: 12px 8px;
    padding: 0px;
}

.custom-filters .btn-search {
    background: var(--prime);
    border: none;
    color: var(--white);
    width: 100%;
    font-size: 1.1rem;
    font-weight: var(--font-weight-600);
    border-radius: 0.25rem;
    transition: background-color 0.2s ease;
    height: 120px;
    opacity: 1;
    gap: 10px;
    padding: 24px;
    border-bottom-right-radius: var(--border-radius-8);
    border-bottom-left-radius: var(--border-radius-8);
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-20);
    line-height: normal;
    text-transform: capitalize;
}

    .custom-filters .btn-search:hover,
    .custom-filters .btn-search:focus {
        background-color: #b1001b;
        color: var(--white);
    }

.custom-filters .btn-clear {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    user-select: none;
    display: inline-block;
    width: 100%;
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-20);
    line-height: normal;
    text-align: center;
    text-transform: capitalize;
    color: var(--prime);
}

    .custom-filters .btn-clear:hover,
    .custom-filters .btn-clear:focus {
        color: #900013;
        text-decoration: underline;
    }

/* Ara� Kart� */
.custom-car-cards {
    justify-content: space-between !important;
}

    .custom-car-cards .car-card {
        background: var(--light-grey);
        box-shadow: none;
        max-width: 340px;
        width: 340px;
        border-radius: var(--border-radius-12);
        margin: 1rem auto;
    }

.car-card-info {
    padding: 1rem;
    text-align: start;
}

.custom-car-cards .car-image {
    border-radius: var(--border-radius-12);
    width: 100%;
    object-fit: cover;
    background: linear-gradient(to bottom, var(--white) 60%, #000000a0 100%);
}

.custom-car-cards .car-year-brand {
    margin-bottom: 15px;
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-20);
    line-height: normal;
    text-transform: capitalize;
    color: var(--dark-grey);
}

.custom-car-cards .car-model {
    margin-bottom: 15px;
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-20);
    line-height: normal;
    text-transform: capitalize;
    color: var(--black);
    transition: var(--transition-0-3s);
}

.custom-car-cards .car-card:hover .car-model {
    color: var(--prime) !important;
}

.custom-car-cards .car-color {
    margin-bottom: 4px;
}

    .custom-car-cards .car-color span {
        font-weight: var(--font-weight-400);
        font-size: var(--font-size-18);
        line-height: normal;
        margin-right: 25px;
        margin-bottom: 15px;
        position: relative;
        color: var(--dark-grey);
    }

.custom-car-cards .car-specs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

    .custom-car-cards .car-specs span {
        font-weight: var(--font-weight-400);
        font-size: var(--font-size-18);
        line-height: normal;
        position: relative;
        color: var(--dark-grey);
    }

.custom-car-cards .car-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.car-card-info .car-price {
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-24);
    line-height: normal;
    text-align: right;
    text-transform: capitalize;
    color: var(--dark-grey);
}

.icon-share {
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: block;
}

.car-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.share-box {
    position: absolute;
    bottom: 125%;
    left: 0;
    display: flex;
    gap: 8px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-0-3s);
    background: var(--white);
    padding: 0.5rem;
    border-radius: var(--border-radius-8);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .share-box.show {
        opacity: 1;
        max-height: 100px;
    }

.share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e0e0e0;
    color: var(--black);
    font-weight: var(--font-weight-700);
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
    padding: 4px;
}

    .share-icon:hover {
        transform: scale(1.1);
        background: #d0d0d0;
    }

    .share-icon.facebook {
        background: #3b5998;
        color: var(--white);
    }

    .share-icon.whatsapp {
        background: #25d366;
        color: var(--white);
    }

    .share-icon.linkedin {
        background: #0a66c2;
        color: var(--white);
    }

    .share-icon.instagram {
        background: #e1306c;
        color: var(--white);
    }

.renewavantaj {
    margin-top: 54px;
    border-radius: var(--border-radius-8);
    background: var(--black);
    color: var(--white);
    padding: 53px 20px 49px;
    user-select: none;
}

    .renewavantaj .lead {
        font-weight: var(--font-weight-600);
        font-size: var(--font-size-24);
        line-height: normal;
        text-transform: capitalize;
    }

    .renewavantaj .iconbox {
        padding: 10px;
        opacity: 1;
        gap: 12px;
        display: grid;
        justify-content: center;
        align-content: center;
        justify-items: center;
        margin: 100px auto 0px;
    }

        .renewavantaj .iconbox span {
            font-weight: var(--font-weight-600);
            font-size: var(--font-size-24);
            line-height: normal;
            text-align: center;
            text-transform: capitalize;
            color: var(--white);
        }

.text-red {
    color: var(--prime) !important;
}

.aracdetay .car-card {
    background: var(--light-grey);
    border-radius: var(--border-radius-12);
    width: 100%;
    max-width: 100% !important;
}

.aracdetay .car-year-brand {
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-20);
    line-height: normal;
    text-transform: capitalize;
    color: var(--dark-grey);
}

.aracdetay .car-model {
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-20);
    line-height: normal;
    text-transform: capitalize;
    margin: 15px 0px;
}

.aracdetay .car-color {
    margin-bottom: 4px;
}

    .aracdetay .car-color span {
        font-weight: var(--font-weight-400);
        font-size: var(--font-size-20);
        line-height: normal;
        margin-right: 25px;
        margin-bottom: 15px;
        position: relative;
        color: var(--dark-grey);
    }

.aracdetay .car-specs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

    .aracdetay .car-specs span {
        font-weight: var(--font-weight-400);
        font-size: var(--font-size-20);
        line-height: normal;
        position: relative;
        color: var(--dark-grey);
    }

.aracdetay .main-slider img {
    width: 100%;
    object-fit: cover;
    border-top-left-radius: var(--border-radius-12);
    border-top-right-radius: var(--border-radius-12);
}

.aracdetay .thumb-slider img {
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    padding: 0px 8px;
}

.aracdetay .thumb-slider .owl-item.current img {
    opacity: 1;
}

.aracdetay .main-slider {
    position: relative;
}

    .aracdetay .main-slider .owl-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        pointer-events: none;
        padding: 0px 14px;
    }

        .aracdetay .main-slider .owl-nav button {
            background: var(--light-grey);
            color: var(--white);
            font-size: 28px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: auto;
            transition: 0.3s;
        }

            .aracdetay .main-slider .owl-nav button:hover {
                background: rgba(0, 0, 0, 0.8);
            }

                .aracdetay .main-slider .owl-nav button:hover svg {
                    fill: var(--white);
                }

.aracdetay .owl-stage {
    text-align: -webkit-center;
}

.aracdetay .main-slider .owl-nav button span {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.aracdetay .nav-tabs {
    border-bottom: none;
    margin-bottom: 0;
}

.aracdetay .nav-link:first-child {
    margin-right: 30px;
}

.aracdetay .nav-link {
    background: var(--light-grey);
    color: var(--dark-grey);
    font-weight: var(--font-weight-700);
    border: none;
    opacity: 1;
    border-radius: 100px;
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 24px;
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-20);
    line-height: normal;
    text-transform: capitalize;
}

    .aracdetay .nav-link:hover {
        background: var(--prime);
        color: var(--white);
    }

    .aracdetay .nav-link.active {
        background: var(--prime);
        color: var(--white);
    }

.aracdetay .table-custom {
    border-collapse: collapse;
    width: 100%;
    font-size: 0.9rem;
    margin-top: 8px;
}

    .aracdetay .table-custom tr {
        border-bottom: 2px solid var(--black);
    }

    .aracdetay .table-custom td {
        padding: 8px 0px;
        vertical-align: middle;
        font-weight: var(--font-weight-400);
        font-size: var(--font-size-20);
        line-height: normal;
    }

.aracdetay .price-cell {
    font-weight: var(--font-weight-700);
    text-align: right;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--black);
    font-size: 1rem;
}

.aracdetay .footer-note {
    color: var(--black);
    margin-top: 14px;
    padding: 0px 6px;
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-12);
    line-height: 100%;
}

.aracdetay .table-custom td:last-child {
    text-align: end;
}

.contact-card {
    margin-bottom: 20px;
}

.contact-card-info {
    background-color: var(--light-grey);
    border-radius: 10px 10px 0 0;
    padding: 12px 10px;
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-20);
    line-height: normal;
    height: 230px !important;
}

.contact-header {
    font-weight: var(--font-weight-700);
    margin-bottom: 12px;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

    .contact-info a {
        color: var(--dark-grey);
        font-weight: var(--font-weight-600);
        font-size: var(--font-size-18);
        line-height: normal;
        vertical-align: middle;
        margin-left: 12px;
    }

    .contact-info svg {
        margin-right: 7px;
        color: var(--prime);
        min-width: 16px;
        min-height: 16px;
    }

.contact-card .tag {
    padding: 1px 13px;
    margin-right: 8px;
    user-select: none;
    display: inline-block;
    opacity: 1;
    border-radius: 100px;
    background: var(--prime);
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-20);
    line-height: normal;
    text-transform: capitalize;
    color: var(--white);
}

.contact-footer {
    padding: 4px 18px;
    font-weight: var(--font-weight-700);
    font-size: 28px;
    line-height: normal;
    text-align: right;
    text-transform: uppercase;
    color: var(--white);
    background: var(--black);
    border-bottom-right-radius: var(--border-radius-8);
    border-bottom-left-radius: var(--border-radius-8);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    border-radius: 50px;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }

.dropdown-toggle-btn {
    width: 100%;
    text-align: left;
    border: 0px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-20);
    line-height: normal;
    text-transform: capitalize;
    padding: 0px;
    color: var(--dark-grey);
}

/* Genel filtre liste stilleri */
.filter-list {
    list-style: none;
    margin: 0;
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-20);
    line-height: normal;
    text-transform: capitalize;
    color: var(--dark-grey);
    background: var(--white);
    padding: 14px;
}

    .filter-list li.filter-item {
        margin-bottom: 12px;
    }

    .filter-list .filter-link {
        display: block;
        cursor: pointer;
        padding: 0.3rem 0.5rem;
        text-decoration: none;
        color: var(--secondary-black);
        transition: color 0.2s ease;
    }

        .filter-list .filter-link:hover {
            color: var(--grey);
        }

        .filter-list .filter-link.active {
            font-weight: var(--font-weight-700);
            color: var(--prime);
        }

    .filter-list .sub-menu {
        list-style: none;
        padding-left: 1rem;
        margin: 0.2rem 0;
        display: none;
    }

        .filter-list .sub-menu.active {
            display: block;
        }

        .filter-list .sub-menu li a {
            padding: 0.2rem 0;
            display: block;
            cursor: pointer;
        }

.btn-filter {
    padding: 0;
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-20);
    line-height: normal;
    vertical-align: middle;
    text-transform: capitalize;
    color: var(--black);
}

.custom-sort .dropdown-menu {
    border: 1px solid var(--light-grey);
    border-radius: 0.3rem;
    opacity: 1;
    padding: 12px 9px;
    border-top-right-radius: var(--border-radius-12);
    border-bottom-right-radius: var(--border-radius-12);
    border-bottom-left-radius: var(--border-radius-12);
    background: var(--light-grey);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

    .custom-sort .dropdown-menu button {
        padding: 4px 8px !important;
        border-bottom: 2px solid var(--dark-grey);
        color: var(--dark-grey);
        font-size: var(--font-size-14);
        font-style: normal;
        font-weight: var(--font-weight-600);
        line-height: normal;
        letter-spacing: var(--letter-spacing-0-6);
        text-transform: capitalize;
        margin-bottom: 4px;
    }

        .custom-sort .dropdown-menu button:hover {
            background: transparent !important;
            color: var(--prime);
        }

/* Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* ��erik */
.popup-content {
    background: #000;
    padding: 20px;
    max-width: 600px;
    width: auto;
    border-radius: 10px;
    position: relative;
}

/* Kapatma butonu */
.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}
.page-link {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    color: #262626;
}
.active>.page-link, .page-link.active {
    background: #262626;
}
.page-link:hover {
    color: #262626;
}
.page-link:last-child, .page-link:last-child {
    border-top-right-radius: 4px!important;
    border-bottom-right-radius: 4px!important;
}

.boxed {
  position: relative;
  height: 589px;
  color: #fff;
  text-align: left;
  padding-bottom: 40px;
  overflow: hidden;
  background: url("../img/boxedboxes/banner-bg.png") no-repeat;
  background-size: cover;
  border-radius: 8px;
  padding: 25px 35px;
}

.boxed h1 {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 1);
    font-size: 96px;
    font-style: normal;
    font-weight: 500;
}

.boxed p {
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.boxed-boxes {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1080px;
}

.boxed-boxes .box {
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    width: 160px;
    height: 215px;
    display: flex;
    align-items: flex-end;
    padding: 8px;
    transition: transform 0.2s;
}

.boxed-boxes .box img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

.boxed-boxes .box span {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.boxed-boxes .box:hover {
  transform: translateY(-5px);
}

@media (max-width: 1399px) {
    .boxed-boxes {
        width: 900px;
    }
    .boxed-boxes .box {
        width: 135px;
        height: 215px;
    }
}
@media (max-width: 1200px) {
    .boxed-boxes .box {
        width: 108px;
        height: 215px;
    }
}

@media (max-width: 950px) {
    .boxed-boxes {
        width: 695px;
    }
    .boxed-boxes .box {
        width: 103px;
        height: 215px;
    }
}