.bd-products-page,
.bd-products-page * {
    box-sizing: border-box;
}

.bd-products-page {
    --bd-anthracite: #202b35;
    --bd-anthracite-hover: #2b3a46;
    --bd-bordeaux: #b0142f;
    --bd-border: #dce5ee;
    --bd-line: #e8eef4;
    --bd-text: #243140;
    --bd-soft-text: #536477;
    --bd-bg: #f3f7fa;
    --bd-card: #ffffff;
    --bd-product-blue: #2e8dc3;
    width: 100%;
    min-height: 100vh;
    background: var(--bd-bg);
    color: var(--bd-text);
    font-family: inherit;
    overflow-x: hidden;
}

.bd-products-page a {
    color: inherit;
    text-decoration: none;
}

.bd-products-shell {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 22px;
    width: 100%;
    padding: 18px;
}

.bd-products-filter,
.bd-products-list {
    min-width: 0;
}

.bd-filter-box,
.bd-product-options,
.bd-product-info-bar,
.bd-product-footer {
    border: 1px solid var(--bd-border);
    border-radius: 7px;
    background: var(--bd-card);
    box-shadow: 0 10px 28px rgba(32, 43, 53, 0.055);
}

.bd-filter-box {
    padding: 17px 18px 18px;
}

.bd-filter-box h1 {
    margin: 0 0 18px;
    text-align: center;
    color: #152333;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.25;
}

.bd-filter-group {
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid var(--bd-border);
    border-radius: 6px;
    background: #fff;
}

.bd-filter-group summary {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 14px;
    background: var(--bd-anthracite);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.bd-filter-group summary::-webkit-details-marker {
    display: none;
}

.bd-filter-group summary::after {
    content: "⌄";
    margin-left: auto;
    color: rgba(255,255,255,0.86);
    font-size: 13px;
}

.bd-filter-group[open] summary::after {
    content: "⌃";
}

.bd-filter-body {
    padding: 12px 13px;
}

.bd-filter-body label {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 25px;
    color: #334255;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
}

.bd-filter-body input {
    width: 14px;
    height: 14px;
    margin: 0;
    accent-color: var(--bd-anthracite);
}

.bd-search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    margin-top: 4px;
    border: 0;
    border-radius: 6px;
    background: var(--bd-anthracite);
    color: #ffffff;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(32, 43, 53, 0.13);
    transition: background 180ms ease, transform 180ms ease;
}

.bd-search-button:hover {
    background: var(--bd-anthracite-hover);
    transform: translateY(-1px);
}

.bd-product-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 64px;
    margin-bottom: 0;
    padding: 10px 16px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: linear-gradient(#f7f9fb, #ffffff);
    box-shadow: inset 0 1px 1px rgba(32,43,53,0.12);
}

.bd-product-search-wrap {
    position: relative;
    width: min(520px, 100%);
}

.bd-product-search-wrap::before {
    content: "⌕";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #8797a8;
    font-size: 15px;
    pointer-events: none;
}

.bd-product-search-wrap input {
    width: 100%;
    min-height: 40px;
    padding: 0 14px 0 33px;
    border: 1px solid #cfdbe8;
    border-radius: 6px;
    background: #fff;
    color: var(--bd-text);
    font: inherit;
    font-size: 14px;
    outline: none;
}

.bd-product-search-wrap input:focus {
    border-color: rgba(176, 20, 47, 0.46);
    box-shadow: 0 0 0 3px rgba(176, 20, 47, 0.08);
}

.bd-product-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    color: #637387;
    font-size: 14px;
    white-space: nowrap;
}

.bd-product-actions strong {
    color: var(--bd-bordeaux);
    font-weight: 800;
}

.bd-compare-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 6px;
    background: var(--bd-bordeaux);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 9px 18px rgba(176, 20, 47, 0.16);
}

.bd-product-info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    margin-bottom: 10px;
    padding: 10px 16px;
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background: linear-gradient(#2b3a46, #202b35);
    color: #fff;
}

.bd-product-info-bar h2 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.bd-product-info-bar p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.bd-product-info-bar strong {
    color: #fff;
    font-weight: 800;
}

.bd-product-grid {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bd-product-grid-item {
    min-width: 0;
    padding: 0 10px 15px;
}

.bd-product-card {
    position: relative;
    margin: 0;
    border: 1px solid #e2e7ed;
    background: #fff;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.bd-product-card:hover {
    border-color: #2e8dc3;
    box-shadow: 0 12px 26px rgba(32, 43, 53, 0.12);
    transform: translateY(-1px);
}

.bd-product-thumb {
    position: relative;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.18);
}

.bd-product-image {
    position: relative;
    display: block;
    width: 100%;
    min-height: 110px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(32,43,53,0.035), rgba(176,20,47,0.035)),
        #f5f8fb;
}

.bd-product-img:not([src]),
.bd-product-img[src=""] {
    display: none;
}

.bd-product-img[src]:not([src=""]) + .bd-product-placeholder {
    display: none;
}

.bd-product-img {
    display: block;
    width: 100%;
    min-height: 110px;
    object-fit: cover;
    border-radius: 0;
}

.bd-product-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    color: #7b8998;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-align: center;
}

.bd-compare-check {
    position: absolute;
    right: -6px;
    bottom: -34px;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 30px;
    border-radius: 0 0 10px 10px;
    background: rgba(32,43,53,0.88);
    cursor: pointer;
    opacity: 0;
    transition: opacity 180ms ease, transform 180ms ease;
}

.bd-product-card:hover .bd-compare-check {
    opacity: 1;
    transform: translateY(-2px);
}

.bd-compare-check input {
    width: 14px;
    height: 14px;
    margin: 0;
    accent-color: var(--bd-bordeaux);
}

.bd-product-summary {
    position: relative;
    min-height: 82px;
    padding: 15px 8px 5px;
    background: #fff;
    transition: background 180ms ease, color 180ms ease;
}

.bd-product-card:hover .bd-product-summary {
    background: linear-gradient(#2f93ca, #1d6f9f);
    color: #fff;
}

.bd-product-summary h2 {
    height: 55px;
    margin: 0 0 4px;
    overflow: hidden;
    color: #555f6c;
    font-size: 12px;
    font-weight: 800;
    line-height: 15px;
    text-overflow: ellipsis;
    white-space: pre-line;
}

.bd-product-card:hover .bd-product-summary h2 {
    color: #fff;
}

.bd-product-summary small {
    position: absolute;
    right: 5px;
    top: -26px;
    z-index: 9;
    display: inline-block;
    max-width: calc(100% - 10px);
    padding: 2px 6px;
    overflow: hidden;
    background: #333;
    color: #ffc910;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bd-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 2px;
    padding: 14px 18px;
    color: #637387;
    font-size: 13px;
}

.bd-product-footer strong {
    color: var(--bd-bordeaux);
}

.bd-pagination {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bd-pagination button {
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid #d2dde8;
    border-radius: 6px;
    background: #fff;
    color: var(--bd-anthracite);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.bd-pagination button.active {
    border-color: var(--bd-bordeaux);
    background: var(--bd-bordeaux);
    color: #fff;
}

@media (max-width: 1440px) {
    .bd-product-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .bd-products-shell {
        grid-template-columns: 280px minmax(0, 1fr);
        padding: 14px;
        gap: 14px;
    }

    .bd-product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .bd-products-shell {
        display: block;
    }

    .bd-products-filter {
        margin-bottom: 14px;
    }

    .bd-product-options,
    .bd-product-info-bar,
    .bd-product-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .bd-product-actions {
        align-items: flex-start;
        flex-direction: column;
        white-space: normal;
    }

    .bd-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .bd-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bd-product-grid-item {
        padding: 0 6px 12px;
    }
}

/* ÜRÜNLER — PASTEL AKORDİYON FİLTRE DÜZENİ */

.bd-products-page {
    --bd-pastel-blue: #eef7fc;
    --bd-pastel-blue-hover: #e8f3f9;
    --bd-pastel-blue-active: #dfeef6;
    --bd-pastel-border: #bdd8e8;
    --bd-pastel-accent: #5d9fbe;
    --bd-pastel-accent-dark: #347b9d;
    --bd-navy: #113852;
    --bd-navy-dark: #0b2e47;
    --bd-muted-text: #687b8c;
    --bd-muted-border: #d7e3eb;
    --bd-muted-line: #e8eff4;
    --bd-page-bg: #f3f7fa;
    background: var(--bd-page-bg);
}

.bd-products-shell {
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
}

.bd-filter-box {
    padding: 18px;
    border: 1px solid var(--bd-muted-border);
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(17, 56, 82, 0.05);
}

.bd-filter-box h1 {
    margin: 0 0 18px;
    color: var(--bd-navy-dark);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
}

.bd-category-filter,
.bd-brand-filter {
    margin: 0 0 12px;
    overflow: hidden;
    border: 1px solid var(--bd-pastel-border);
    border-radius: 7px;
    background: #fff;
}

.bd-filter-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    padding: 0 13px;
    border-bottom: 1px solid var(--bd-pastel-border);
    background: var(--bd-pastel-blue);
    color: var(--bd-navy);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.bd-filter-section-title::before {
    display: none;
}


.bd-category-accordion {
    padding: 6px 8px 8px;
    background: #fff;
}

.bd-category-accordion-level {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.bd-category-accordion-level .bd-category-accordion-level {
    margin: 0;
    padding: 2px 0;
    border-top: 1px solid #edf2f5;
    background: #fbfdfe;
}

.bd-category-accordion-item {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.bd-category-accordion-link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 24px;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 40px;
    margin: 0;
    padding: 8px 10px;
    border: 0;
    border-bottom: 1px solid #edf2f5;
    border-radius: 0;
    background: transparent;
    color: #344f63;
    text-align: left;
    transition: background 150ms ease, color 150ms ease;
}

.bd-category-accordion-item:last-child > .bd-category-accordion-link {
    border-bottom-color: transparent;
}

.bd-category-accordion-link:hover {
    background: #f5f9fb;
    color: var(--bd-navy-dark);
}

.bd-category-accordion-link.is-open {
    background: #f8fbfd;
    color: var(--bd-navy);
}

.bd-category-accordion-link.is-selected {
    border: 1px solid #c9dfe9;
    border-radius: 5px;
    background: var(--bd-pastel-blue-active);
    color: var(--bd-navy-dark);
}

.bd-category-all {
    grid-template-columns: minmax(0, 1fr);
    margin: 0 0 4px;
    padding: 8px 10px;
    border-bottom: 1px solid #e5edf2;
    border-radius: 0;
    font-weight: 750;
}

.bd-category-all.is-selected {
    border: 1px solid #c9dfe9;
    border-radius: 5px;
}

.bd-category-accordion-name {
    min-width: 0;
    color: inherit;
    font-size: 12.5px;
    font-weight: 650;
    line-height: 1.4;
    overflow-wrap: anywhere;
    text-align: left;
}

.bd-category-accordion-link.is-open .bd-category-accordion-name,
.bd-category-accordion-link.is-selected .bd-category-accordion-name {
    font-weight: 780;
}

.bd-category-accordion-arrow {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    color: #7896a8;
}

.bd-category-accordion-arrow::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 7px;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg);
    transform-origin: center;
    transition: transform 150ms ease, color 150ms ease;
}

.bd-category-accordion-link.is-open .bd-category-accordion-arrow::before {
    top: 6px;
    transform: rotate(45deg);
}

.bd-category-accordion-link:hover .bd-category-accordion-arrow,
.bd-category-accordion-link.is-open .bd-category-accordion-arrow {
    color: var(--bd-pastel-accent-dark);
}

.bd-brand-options {
    max-height: 240px;
    padding: 7px 8px 8px;
    overflow-y: auto;
}

.bd-brand-option {
    position: relative;
    display: grid;
    grid-template-columns: 17px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 7px 8px;
    border-radius: 5px;
    color: #40586b;
    cursor: pointer;
}

.bd-brand-option:hover {
    background: #f5f9fb;
    color: var(--bd-navy-dark);
}

.bd-brand-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bd-brand-check {
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid #9fb3c0;
    border-radius: 3px;
    background: #fff;
}

.bd-brand-option input:checked + .bd-brand-check {
    border-color: var(--bd-pastel-accent-dark);
    background: var(--bd-pastel-accent-dark);
}

.bd-brand-option input:checked + .bd-brand-check::after {
    content: "✓";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}

.bd-brand-name {
    min-width: 0;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.35;
}

.bd-brand-count {
    min-width: 22px;
    padding: 2px 7px;
    border-radius: 10px;
    background: var(--bd-pastel-blue);
    color: #5f7f91;
    font-size: 11px;
    font-weight: 750;
    text-align: center;
}

.bd-filter-empty {
    padding: 12px 8px;
    color: #7d8d99;
    font-size: 12px;
    font-weight: 600;
}

.bd-search-button {
    min-height: 42px;
    margin-top: 2px;
    border-radius: 6px;
    background: var(--bd-navy);
    box-shadow: 0 7px 16px rgba(17, 56, 82, 0.13);
}

.bd-search-button:hover {
    background: var(--bd-navy-dark);
}

.bd-product-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 72px;
    margin-bottom: 14px;
    padding: 13px 16px;
    border: 1px solid var(--bd-muted-border);
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(17, 56, 82, 0.04);
}

.bd-product-heading {
    min-width: 170px;
}

.bd-product-heading h2 {
    margin: 0 0 4px;
    color: var(--bd-navy-dark);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.2;
}

.bd-product-heading p {
    margin: 0;
    color: var(--bd-muted-text);
    font-size: 13px;
    font-weight: 600;
}

.bd-product-heading strong {
    color: var(--bd-pastel-accent-dark);
    font-weight: 800;
}

.bd-product-search-wrap {
    width: min(520px, 100%);
}

.bd-product-search-wrap::before {
    left: 14px;
    color: #8395a4;
}

.bd-product-search-wrap input {
    min-height: 42px;
    padding-left: 36px;
    border-color: #cbdbe5;
    border-radius: 6px;
    font-size: 13px;
}

.bd-product-search-wrap input:focus {
    border-color: #94bed2;
    box-shadow: 0 0 0 3px rgba(93, 159, 190, 0.10);
}

.bd-product-info-bar,
.bd-product-actions,
.bd-compare-button,
.bd-compare-check {
    display: none !important;
}

.bd-product-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0 0 18px;
    list-style: none;
}

.bd-product-grid-item {
    min-width: 0;
    padding: 0;
}

.bd-product-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid #dce6ec;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(17, 56, 82, 0.05);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.bd-product-card:hover {
    border-color: #bfd8e5;
    box-shadow: 0 12px 26px rgba(17, 56, 82, 0.09);
    transform: translateY(-2px);
}

.bd-product-thumb {
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.bd-product-image {
    aspect-ratio: 4 / 3;
    min-height: 0;
    border-radius: 0;
    background: #f1f5f7;
}

.bd-product-img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    transition: transform 220ms ease;
}

.bd-product-card:hover .bd-product-img {
    transform: scale(1.02);
}

.bd-product-summary {
    min-height: 108px;
    padding: 14px 15px 15px;
    border-top: 1px solid #edf1f4;
    border-radius: 0;
    background: #fff;
    color: var(--bd-navy-dark);
}

.bd-product-card:hover .bd-product-summary {
    background: #fff;
    color: var(--bd-navy-dark);
}

.bd-product-brand {
    display: inline-block;
    margin-bottom: 7px;
    color: var(--bd-pastel-accent-dark);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
}

.bd-product-summary h2 {
    height: auto;
    margin: 0;
    overflow: hidden;
    color: var(--bd-navy-dark);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.bd-product-card:hover .bd-product-summary h2 {
    color: var(--bd-navy-dark);
}

.bd-product-summary p {
    margin: 7px 0 0;
    overflow: hidden;
    color: #7b8995;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bd-product-summary small {
    position: static;
    display: none;
}

.bd-product-footer {
    margin-top: 2px;
    border: 1px solid var(--bd-muted-border);
    border-radius: 8px;
    box-shadow: none;
}

.bd-product-footer strong {
    color: var(--bd-pastel-accent-dark);
}

.bd-pagination button.active {
    border-color: var(--bd-pastel-accent-dark);
    background: var(--bd-pastel-accent-dark);
}

@media (max-width: 1600px) {
    .bd-product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .bd-products-shell {
        grid-template-columns: 290px minmax(0, 1fr);
        gap: 14px;
        padding: 14px;
    }
}

@media (max-width: 900px) {
    .bd-products-shell {
        display: block;
    }

    .bd-products-filter {
        margin-bottom: 14px;
    }

    .bd-product-options {
        align-items: stretch;
        flex-direction: column;
    }

    .bd-product-search-wrap {
        width: 100%;
    }

    .bd-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .bd-products-shell {
        padding: 10px;
    }

    .bd-filter-box {
        padding: 14px;
    }

    .bd-product-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .bd-product-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .bd-pagination {
        flex-wrap: wrap;
    }
}

/* ÜRÜNLER — SON ONAYLI ÜST ARAMA VE AKORDİYON DÜZENİ */

.bd-product-options {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) minmax(380px, 560px) minmax(140px, 1fr);
    align-items: center;
    gap: 20px;
    min-height: 70px;
    padding: 12px 16px;
}

.bd-result-count {
    justify-self: start;
    color: #65798a;
    font-size: 13px;
    font-weight: 650;
    white-space: nowrap;
}

.bd-result-count strong {
    color: var(--bd-navy-dark);
    font-weight: 800;
}

.bd-product-search-group {
    grid-column: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 76px;
    align-items: stretch;
    width: 100%;
    min-width: 0;
}

.bd-product-toolbar-spacer {
    min-width: 0;
}

.bd-product-search-wrap {
    width: 100%;
}

.bd-product-search-wrap input {
    min-height: 42px;
    border-radius: 6px 0 0 6px;
    border-right: 0;
}

.bd-product-search-button {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid #bfd5e1;
    border-radius: 0 6px 6px 0;
    background: #eaf4f8;
    color: var(--bd-navy-dark);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: background 150ms ease, border-color 150ms ease;
}

.bd-product-search-button:hover {
    border-color: #a9c8d7;
    background: #deedf4;
}

.bd-product-search-button:focus-visible {
    outline: 3px solid rgba(93, 159, 190, 0.16);
    outline-offset: 1px;
}

.bd-category-accordion-link,
.bd-category-all {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 7px;
    padding: 8px 10px;
}

.bd-category-accordion-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    min-width: 18px;
    height: 20px;
    color: #718d9e;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.bd-category-accordion-toggle.is-empty {
    visibility: hidden;
}

.bd-category-accordion-arrow {
    display: none !important;
}

.bd-category-accordion-level .bd-category-accordion-level {
    margin: 0;
    padding: 0;
    border-top: 0;
    background: #fbfdfe;
}

.bd-category-accordion-name {
    text-align: left;
}

.bd-brand-options {
    max-height: 260px;
    overflow-y: auto;
}

@media (max-width: 980px) {
    .bd-product-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bd-result-count,
    .bd-product-search-group,
    .bd-product-toolbar-spacer {
        grid-column: 1;
    }

    .bd-product-toolbar-spacer {
        display: none;
    }

    .bd-product-search-group {
        width: min(560px, 100%);
        justify-self: center;
    }
}

@media (max-width: 560px) {
    .bd-product-search-group {
        grid-template-columns: minmax(0, 1fr) 68px;
    }

    .bd-product-search-button {
        padding: 0 12px;
    }
}

/* KATEGORİ AKORDİYON — SADE İKON VE PASTEL AKTİF DURUM */

.bd-category-accordion-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    min-width: 20px;
    height: 20px;
    overflow: hidden;
    border: 1px solid #c9dbe5;
    border-radius: 4px;
    background: #f7fafc;
    color: transparent;
    font-size: 0;
    line-height: 0;
}

.bd-category-accordion-link.has-children .bd-category-accordion-toggle::before {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #6f8d9f;
    border-bottom: 1.5px solid #6f8d9f;
    transform: rotate(-45deg);
    transition: transform 150ms ease, border-color 150ms ease;
}

.bd-category-accordion-link.is-open .bd-category-accordion-toggle::before {
    transform: rotate(45deg);
}

.bd-category-accordion-link:hover .bd-category-accordion-toggle,
.bd-category-accordion-link.is-open .bd-category-accordion-toggle {
    border-color: #aecbd8;
    background: #eef6f9;
}

.bd-category-accordion-link:hover .bd-category-accordion-toggle::before,
.bd-category-accordion-link.is-open .bd-category-accordion-toggle::before {
    border-color: #466f84;
}

.bd-category-accordion-toggle.is-empty {
    visibility: hidden;
    border: 0;
    background: transparent;
}

.bd-category-accordion-link.is-selected {
    border-color: #d3e4ec;
    background: #eef6fa;
    box-shadow: inset 3px 0 0 #8eb6c8;
}

.bd-category-accordion-link.is-selected .bd-category-accordion-name {
    color: #173f57;
}

.bd-category-accordion-level.level-1 > .bd-category-accordion-item > .bd-category-accordion-link {
    background-color: #fbfdfe;
}

.bd-category-accordion-level.level-2 > .bd-category-accordion-item > .bd-category-accordion-link {
    background-color: #f8fbfd;
}

.bd-category-accordion-level.level-3 > .bd-category-accordion-item > .bd-category-accordion-link {
    background-color: #f5f9fb;
}

.bd-category-accordion-level .bd-category-accordion-link.is-selected {
    background: #eef6fa;
}

/* ÜRÜN KATEGORİLERİ — PROJELER FİLTRE PANELİYLE AYNI PASTEL AKORDİYON */

.bd-category-accordion {
    padding: 6px 8px 8px;
    background: #fff;
}

.bd-category-accordion-level,
.bd-category-accordion-level .bd-category-accordion-level {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.bd-category-accordion-item {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.bd-category-accordion-link,
.bd-category-all {
    position: relative;
    display: block;
    width: 100%;
    min-height: 42px;
    margin: 0;
    padding: 10px 36px 10px 12px;
    border: 0;
    border-bottom: 1px solid #e4edf2;
    border-radius: 0;
    background: #fff;
    color: #173a56;
    text-align: left;
    box-shadow: none;
    transition: background 150ms ease, color 150ms ease;
}

.bd-category-accordion-item:last-child > .bd-category-accordion-link {
    border-bottom-color: transparent;
}

.bd-category-accordion-link:hover,
.bd-category-all:hover {
    background: #f4f9fb;
    color: #102f48;
}

.bd-category-accordion-link.is-open {
    background: #f8fbfd;
    color: #173a56;
}

.bd-category-accordion-link.is-selected,
.bd-category-accordion-level .bd-category-accordion-link.is-selected,
.bd-category-all.is-selected {
    border: 0;
    border-bottom: 1px solid #dbe9f0;
    border-radius: 4px;
    background: #eaf4f8;
    color: #102f48;
    box-shadow: none;
}

.bd-category-accordion-name {
    display: block;
    min-width: 0;
    color: inherit;
    font-size: 12.5px;
    font-weight: 650;
    line-height: 1.4;
    overflow-wrap: anywhere;
    text-align: left;
}

.bd-category-accordion-link.is-open .bd-category-accordion-name,
.bd-category-accordion-link.is-selected .bd-category-accordion-name {
    font-weight: 750;
}

.bd-category-accordion-toggle {
    position: absolute;
    right: 11px;
    top: 50%;
    display: block;
    width: 16px;
    min-width: 16px;
    height: 16px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: transparent;
    font-size: 0;
    line-height: 0;
    transform: translateY(-50%);
}

.bd-category-accordion-link.has-children .bd-category-accordion-toggle::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 3px;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #6f8f9f;
    border-bottom: 1.5px solid #6f8f9f;
    transform: rotate(-45deg);
    transform-origin: center;
    transition: transform 150ms ease, border-color 150ms ease;
}

.bd-category-accordion-link.is-open .bd-category-accordion-toggle::before {
    top: 2px;
    transform: rotate(45deg);
}

.bd-category-accordion-link:hover .bd-category-accordion-toggle::before,
.bd-category-accordion-link.is-open .bd-category-accordion-toggle::before {
    border-color: #3f7187;
}

.bd-category-accordion-toggle.is-empty {
    display: none;
}

.bd-category-accordion-arrow {
    display: none !important;
}

.bd-category-accordion-level.level-1 > .bd-category-accordion-item > .bd-category-accordion-link,
.bd-category-accordion-level.level-2 > .bd-category-accordion-item > .bd-category-accordion-link,
.bd-category-accordion-level.level-3 > .bd-category-accordion-item > .bd-category-accordion-link {
    background: #fff;
}

.bd-category-accordion-level.level-1 > .bd-category-accordion-item > .bd-category-accordion-link:hover,
.bd-category-accordion-level.level-2 > .bd-category-accordion-item > .bd-category-accordion-link:hover,
.bd-category-accordion-level.level-3 > .bd-category-accordion-item > .bd-category-accordion-link:hover {
    background: #f4f9fb;
}

.bd-category-accordion-level.level-1 > .bd-category-accordion-item > .bd-category-accordion-link.is-selected,
.bd-category-accordion-level.level-2 > .bd-category-accordion-item > .bd-category-accordion-link.is-selected,
.bd-category-accordion-level.level-3 > .bd-category-accordion-item > .bd-category-accordion-link.is-selected {
    background: #eaf4f8;
}


/* Ürün kartı detay bağlantısı */
.bd-product-card-link { display:block; height:100%; color:inherit; text-decoration:none; }
.bd-product-card-link:focus-visible { outline:3px solid rgba(93,159,190,.18); outline-offset:3px; border-radius:10px; }

/* BIDENTRA PRODUCT COMPARE - START */
.bd-compare-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin: 0 0 18px;
}

.bd-compare-status {
    min-height: 20px;
    color: #647789;
    font-size: 13px;
    font-weight: 700;
    text-align: right;
}

.bd-compare-status.is-error {
    color: #b42318;
}

.bd-compare-open {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid #b0142f;
    border-radius: 6px;
    background: #b0142f;
    color: #fff !important;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;
    transition: background-color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.bd-compare-open:hover {
    border-color: #8f1026;
    background: #8f1026;
}

.bd-compare-open.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.bd-product-card {
    position: relative;
}

.bd-card-compare {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 8;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid rgba(17, 56, 82, 0.18);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.96);
    color: #113852;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(17, 56, 82, 0.09);
    user-select: none;
}

.bd-card-compare:hover {
    border-color: rgba(176, 20, 47, 0.45);
    color: #b0142f;
}

.bd-card-compare input {
    width: 15px;
    height: 15px;
    margin: 0;
    accent-color: #b0142f;
}

.bd-product-card.is-compare-selected {
    border-color: rgba(176, 20, 47, 0.58);
    box-shadow: 0 0 0 2px rgba(176, 20, 47, 0.08), 0 12px 30px rgba(17, 56, 82, 0.10);
}

.bd-product-card.is-compare-selected .bd-card-compare {
    border-color: #b0142f;
    background: #b0142f;
    color: #fff;
}

@media (max-width: 900px) {
    .bd-compare-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .bd-compare-status {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .bd-compare-open {
        width: 100%;
    }
}