.filterMenu .menu ul li a.active {
    color: var(--pColor);
    font-weight: bold;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-70 {
    margin-top: 70px;
}

.customInput {
    background: #fff;

    width: 100%;
    display: block;
    padding: 30px 50px;
    border: 0;
    height: 80px;

    color: #0b4556;

    font-size: 14px;
    font-weight: 500;
    z-index: 2;
    position: relative;
}

@media (max-width: 768px) {
    .customInput {
        padding: 30px 20px;
    }
}

.filter-menus {
    padding: 35px 25px 40px;
    display: flex;

    flex-direction: column;
    gap: 15px;
}

.filter-menus .widget-facet {
    margin-bottom: 1rem;
}

.facet-title {
    display: flex;
    justify-content: space-between; /* Başlık ve ok simgesini ayır */
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: #343a40; /* Daha koyu gri ton */
    cursor: pointer; /* Tıklanabilir işaretçi */
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6; /* Alt çizgi */
    transition: all 0.3s ease; /* Hover efekti için geçiş */
}

.facet-title:hover {
    color: #0d6efd; /* Mavi ton hover efekti */
}

.facet-title .icon {
    transition: transform 0.3s ease; /* Simge dönüş efekti */
}

.facet-title[aria-expanded="false"] .icon {
    transform: rotate(180deg); /* Simgeyi ters çevir */
}

.collapse {
    padding-top: 0.5rem;
}

.list-categoris {
    list-style: none; /* Liste noktalarını kaldır */
    padding-left: 1rem; /* İçeriden boşluk */
    margin: 0;
}

.list-categoris li {
    margin-bottom: 0.5rem; /* Alt boşluk */
    display: flex;
    align-items: center;
}

.list-categoris li input[type="checkbox"] {
    margin-right: 0.5rem; /* Checkbox ile yazı arası boşluk */
    accent-color: #0d6efd; /* Bootstrap birincil renk */
}

.list-categoris li label {
    cursor: pointer; /* Tıklanabilir işaretçi */
    font-size: 1rem;
    color: #495057; /* Gri ton */
    transition: color 0.2s ease;
}

.list-categoris li label:hover {
    color: #0d6efd; /* Hoverda mavi ton */
}

.tf-product-info-variant-picker {
    font-family: Arial, sans-serif;

    line-height: 1.5;
}

#variant-picker {
    margin-bottom: 15px;
}

.variant-picker-item {
    margin-bottom: 10px;
    padding: 10px;

    border-radius: 5px;
}

.variant-picker-label {
    font-weight: bold;
    margin-bottom: 5px;
}

.variant-picker-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.style-text {
    cursor: pointer;
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

.style-text:hover {
    background-color: #f5f5f5;
    color: #333;
}

p {
    margin: 5px 0;
}

#stock {
    font-weight: bold;
    color: #28a745;
}

section.productDetail .productImage .imgArea img {
    aspect-ratio: 4/4;
    object-fit: contain;
}

section.productDetail .productInfo .content .buttons .btn {
    font-size: 13px;
}

/**/

.orderInfo {
    padding: 30px 128px 30px;
}

@media (max-width: 768px) {
    .orderInfo {
        padding: 30px;
    }
}

.textarea {
    box-shadow: -32px 20px 39.5px 0px rgba(11, 69, 86, 0.08);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;

    width: 100%;
    display: block;
    border: 0;
    height: 80px;

    color: #0b4556;

    font-weight: 500;
    z-index: 2;
    position: relative;
    font-size: 16px;

    padding: 25px 55px;
    height: 70px;
}

@media (max-width: 768px) {
    .textarea {
        padding: 25px 25px;
    }
}

.pagination {
    display: flex;
    justify-content: center; /* Yatayda ortalar */

    align-items: center; /* Dikeyde hizalar */

    margin-top: 20px;
    margin-bottom: 20px;
    gap: 10px; /* Butonlar arasÄ±nda boÅŸluk */
}

.pagination .page-item {
    flex: none; /* ElemanlarÄ±n boyutunu sabit tutar */
}

.pagination .page-link {
    color: #28a745;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 10px 15px; /* Buton boyutunu bÃ¼yÃ¼tmek iÃ§in padding ekler */
    transition: all 0.3s ease;
    text-align: center;
}

.pagination .page-link:hover {
    background-color: #28a745;
    color: #fff;
    border-color: #28a745;
    text-decoration: none;
}

.pagination .page-link.active {
    background-color: #28a745;
    color: #fff;
    border-color: #28a745;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

.btnPrimary {
    color: #fff;

    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s ease all;
    background: #28a745;
    padding: 27px 67px;
    font-size: 18px;
    border: none;
}

.form-select {
    background: #fff;

    width: 100%;
    display: block;
    padding: 10px 20px;
    border: 0;
    height: 80px;

    color: #0b4556;

    font-size: 14px;
    font-weight: 500;
    z-index: 2;
    position: relative;
}

.mr-5 {
    margin-right: 50px;
}
.mt-10 {
    margin-top: 100px;
}

.mt-5 {
    margin-top: 50px;
}

.mt-5 {
    margin-top: 50px;
}


.mt-5 {
    margin-top: 50px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-1 {
    margin-top: 10px;
}


.mb-10 {
    margin-bottom: 100px;
}

.mb-5 {
    margin-bottom: 50px;
}

.eventIcon {
    font-size: 24px;
}

.color-danger {
    color: #e62c2c;
}
.color-edit {
    color: #28a745;
}

.borderedCard {
    border: 1px solid;
    padding: 20px;
    border-radius: 10px;
}

.customcheckbox1 input {
    opacity: 0;
    display: block;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
}

th,
td {
    border: 1px solid #ddd;
    padding: 12px 15px;
}

th {
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
}

tr:nth-child(even) {
}

tr:hover {
    background-color: #f1f1f1;
}

td {
    color: #555;
}

th:first-child,
td:first-child {
    text-align: left;
}

th:last-child,
td:last-child {
    text-align: right;
}

@media screen and (max-width: 768px) {
    table {
        font-size: 14px;
    }

    th,
    td {
        padding: 10px;
    }
}

.m-0 {
    margin: 0px !important;
}

.mb-0 {
    margin-bottom: 0px !important;
}

header .userProfile .menu {
    min-width: 170px !important;
}

header:after {
    aspect-ratio: 0;
}

.footerBottom .copyright {
    justify-content: flex-start;
    gap: 10px;
}

.otherLangs a {
    text-transform: uppercase;
}

header .login {
    display: block !important;
}

section.productDetail .productUsageImage .imgArea img {
    object-fit: contain !important;
}

@media screen and (max-width: 576px) {
    .mainpage header {
        background: transparent;
        left: 0;
        right: 0;
        top: 0;

        z-index: 3;
    }

    .mainpage header::after {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    section.testimonial .sectionTitle {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 130px;
    }
}

.aspect-img {
    aspect-ratio: 4/4;
    object-fit: contain;
}

.r-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.mainSlideArea {
    position: relative;
    overflow: hidden;
}

.mainSlideArea .container {
    position: absolute;
    z-index: 2;
}

.mainSlideArea .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 1.3;
    object-fit: cover;
    z-index: 1;
}


.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}