/* Product detail / related products */

.product-detail-hero {
    background: linear-gradient(135deg, #3F3D3C 0%, #585756 100%);
    padding: 48px 0 40px;
    margin-bottom: 40px;
}
.product-detail-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.product-detail-hero-title {
    margin: 0;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    letter-spacing: -.025em;
    color: #ffffff;
    line-height: 1.2;
}
.product-detail-hero-title span {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #69D3F1;
    margin-bottom: 6px;
}
.product-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.5);
}
.product-detail-breadcrumb a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: color .2s;
}
.product-detail-breadcrumb a:hover { color: #69D3F1; }
.product-detail-breadcrumb svg {
    width: 14px;
    height: 14px;
    opacity: .4;
}

.product-wrap {
    display: grid;
    gap: 24px;
}

.product-main {
    padding: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 6px 24px rgba(0,0,0,.03);
}
.product-main-inner {
    padding: 28px 32px 36px;
}

.product-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
}
.product-gallery-shell {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}
.product-gallery-shell-single {
    grid-template-columns: minmax(0, 1fr);
}
.hero-image {
    width: 100%;
    min-width: 0;
    height: 520px;
    max-height: 520px;
    border-radius: 14px;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.hero-image:hover img {
    transform: scale(1.02);
}

.thumb-grid {
    display: grid;
    grid-auto-rows: 88px;
    gap: 10px;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
}
.thumb-grid::-webkit-scrollbar {
    width: 6px;
}
.thumb-grid::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}
.thumb-grid::-webkit-scrollbar-track {
    background: transparent;
}
.thumb-grid-single {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .92);
    color: #3F3D3C;
    box-shadow: 0 4px 14px rgba(63, 61, 60, .18);
    cursor: pointer;
    transition: all .2s ease;
    z-index: 2;
}
.gallery-nav svg {
    width: 20px;
    height: 20px;
}
.gallery-nav:hover {
    background: #ffffff;
    color: #008CC7;
    transform: translateY(-50%) scale(1.05);
}
.gallery-nav:disabled {
    opacity: .45;
    cursor: not-allowed;
    transform: translateY(-50%);
}
.gallery-nav-prev { left: 14px; }
.gallery-nav-next { right: 14px; }
.thumb-btn {
    height: 76px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    background: #f8fafc;
    cursor: pointer;
    padding: 0;
    transition: border-color .25s, box-shadow .25s, transform .2s;
}
.thumb-btn:hover {
    border-color: #16B5E4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22,181,228,.22);
}
.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.thumb-btn.active {
    border-color: #16B5E4;
    box-shadow: 0 0 0 3px rgba(22,181,228,.22);
}

.product-content {
    padding: 20px 22px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
}
.product-content h1 {
    margin: 0 0 6px;
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 800;
    letter-spacing: -.02em;
    color: #3F3D3C;
    line-height: 1.15;
}
.product-category-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    background: #f0f9ff;
    color: #008CC7;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(22, 181, 228, .45);
}

.feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    line-height: 1.5;
    color: #334155;
}
.feature-list li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border-radius: 50%;
    background: #f0f9ff;
    border: 1.5px solid rgba(22, 181, 228, .45);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230ea5e9'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.asset-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}
.asset-actions .btn {
    padding: 11px 20px;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all .25s ease;
}
.asset-actions .btn-outline {
    border: 1.5px solid #e2e8f0;
    color: #334155;
    background: #ffffff;
}
.asset-actions .btn-outline:hover {
    border-color: #16B5E4;
    color: #008CC7;
    background: #f0f9ff;
    box-shadow: 0 4px 12px rgba(14,165,233,.1);
}
.asset-actions .btn-outline::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23334155' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 10v6m0 0l-3-3m3 3l3-3m2 8H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
.asset-actions .btn-primary {
    border: 1.5px solid #16B5E4;
    color: #ffffff;
    background: #16B5E4;
}
.asset-actions .btn-primary:hover {
    background: #008CC7;
    border-color: #008CC7;
    box-shadow: 0 4px 12px rgba(14,165,233,.25);
}
.asset-actions .btn-primary::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M14.752 11.168l-3.197-2.132A1 1 0 0010 9.87v4.263a1 1 0 001.555.832l3.197-2.132a1 1 0 000-1.664z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 12a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.desc-block {
    margin-top: 36px;
    padding: 32px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}
.desc-block-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.desc-block-header::before {
    content: '';
    width: 4px;
    height: 26px;
    background: #16B5E4;
    border-radius: 4px;
    flex-shrink: 0;
}
.desc-block h2 {
    margin: 0;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 800;
    letter-spacing: -.015em;
    color: #3F3D3C;
}
.desc-text {
    color: #475569;
    line-height: 1.85;
    font-size: 15px;
}

.related-products-block {
    margin-top: 6px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 6px 24px rgba(0,0,0,.03);
    padding: 26px 28px;
}
.related-products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}
.related-products-header h2 {
    margin: 0;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 800;
    letter-spacing: -.015em;
    color: #3F3D3C;
}
.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.related-products-carousel {
    position: relative;
    overflow: hidden;
}
.related-products-track {
    display: flex;
    width: 100%;
    transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}
.related-products-slide {
    flex: 0 0 100%;
    min-width: 0;
}
.related-products-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}
.related-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    padding: 0;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.related-dot.is-active {
    background: #16B5E4;
    border-color: #16B5E4;
    transform: scale(1.1);
}
.related-product-card {
    display: block;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.related-product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(22, 181, 228, .5);
    box-shadow: 0 8px 20px rgba(22, 181, 228, .18);
}
.related-product-image {
    height: 170px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}
.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.related-product-body {
    padding: 12px 12px 14px;
}
.related-product-title {
    margin: 0;
    color: #3F3D3C;
    font-weight: 700;
    font-size: 14.5px;
    line-height: 1.35;
}
.related-product-empty {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

@media (max-width: 1180px) {
    .related-products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 880px) {
    .product-header { grid-template-columns: 1fr; }
    .hero-image { height: 440px; max-height: 440px; max-width: 100%; }
    .product-gallery-shell { grid-template-columns: 1fr; }
    .thumb-grid {
        grid-auto-flow: column;
        grid-auto-columns: minmax(74px, 74px);
        grid-auto-rows: unset;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding-right: 0;
        padding-bottom: 4px;
    }
    .related-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-detail-hero { padding: 36px 0 30px; margin-bottom: 28px; }
}
@media (max-width: 560px) {
    .hero-image { height: 320px; max-height: 320px; }
    .thumb-grid-single { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .product-main-inner { padding: 20px 18px 28px; }
    .product-content { padding: 16px; }
    .desc-block { padding: 22px 18px; }
    .related-products-block { padding: 20px 16px; }
    .related-products-grid { grid-template-columns: 1fr; }
    .product-detail-hero { padding: 28px 0 24px; margin-bottom: 20px; }
}

   /* ===== BIOMEDICART-STYLE CATALOG ===== */

   body {
    background: #ffffff;
}

/* üst başlık kaldırıldı */
.catalog-hero {
    display: none;
}

/* kategori başlık bandı */
.catalog-category-banner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    background:
        radial-gradient(circle at 80% 15%, rgba(22, 181, 228, .2), transparent 28%),
        linear-gradient(135deg, #3F3D3C 0%, #4A4A49 58%, #5F5F5E 100%);
    color: #ffffff;
    text-align: center;
    padding: 44px 28px 48px;
    margin-bottom: 34px;
    border-radius: 14px;
}
.catalog-category-banner::after {
    content: '';
    position: absolute;
    z-index: -1;
    inset: auto 0 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #16B5E4 30%, #9EE6F8 50%, #16B5E4 70%, transparent);
}
.catalog-category-banner__inner {
    width: min(850px, 100%);
    margin: 0 auto;
}
.catalog-category-banner__eyebrow,
.catalog-category-section-heading span {
    display: block;
    color: #16B5E4;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    line-height: 1.4;
    text-transform: uppercase;
}
.catalog-category-banner__title {
    margin: 9px 0 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.15;
}
.catalog-category-banner__description {
    max-width: 720px;
    margin: 17px auto 0;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 1.8;
}

/* ana container */
.catalog-wrap-container {
    width: min(1680px, calc(100% - 40px));
    margin: 30px auto 40px;
}

.catalog-wrap {
display: grid;
grid-template-columns: 360px minmax(0, 1fr);
gap: 32px;
align-items: start;
}

.catalog-main {
min-width: 0;
}

.catalog-sidebar {
position: sticky;
top: 90px;
background: #ffffff;
padding: 0 14px 14px;
width: 100%;
min-width: 0;
border: 1px solid #e2e8f0;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(63, 61, 60, .06);
overflow: hidden;
}

.catalog-sidebar-list {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 5px;
list-style: none;
margin: 0;
padding: 0;
}

.catalog-sidebar li {
min-width: 0;
}

.catalog-sidebar-link {
display: block;
width: 100%;
max-width: 100%;
text-decoration: none;
color: #334155;
font-size: 12px;
line-height: 1.35;
font-weight: 650;
padding: 10px 11px;
border-radius: 7px;
background: transparent;
border: 1px solid transparent;
transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
letter-spacing: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.catalog-sidebar-link:hover {
background: #EAF9FD;
border-color: rgba(22, 181, 228, .32);
color: #008CC7;
transform: translateY(-1px);
}

.catalog-sidebar-link.active-cat {
background: linear-gradient(135deg, #008CC7, #16B5E4);
border-color: #008CC7;
color: #ffffff;
box-shadow: 0 4px 10px rgba(22, 181, 228, .2);
}

/* sidebar başlık – masaüstünde sade metin gibi */
.catalog-sidebar-header {
margin: 0 -14px 12px;
padding: 16px 18px 14px;
background: #f8fafc;
border-bottom: 1px solid #e2e8f0;
}
.catalog-sidebar-header h3 {
margin: 0;
font-size: .95rem;
font-weight: 800;
color: #3F3D3C;
letter-spacing: -.01em;
}
.catalog-sidebar-toggle {
display: none;
}

/* ===== RIGHT GRID ===== */
.catalog-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 45px 30px; /* önce 90px 90px gibi genişti */
align-items: start;
justify-items: stretch;
}

.catalog-category-seo-content,
.catalog-category-faq {
    color: #475569;
    font-size: 15px;
    line-height: 1.85;
}

.catalog-category-seo-content,
.catalog-category-faq {
    position: relative;
    margin-top: 54px;
    padding: 34px 38px 38px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(63, 61, 60, .03), 0 14px 36px rgba(63, 61, 60, .04);
}

.catalog-category-seo-content::before,
.catalog-category-faq::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 38px;
    width: 72px;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: #16B5E4;
}

.catalog-category-section-heading {
    margin-bottom: 22px;
}

.catalog-category-section-heading h2 {
    margin: 7px 0 0;
    color: #3F3D3C;
    font-size: clamp(1.35rem, 2.2vw, 1.8rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.25;
}

.catalog-category-seo-content__body {
    max-width: 920px;
}

.catalog-category-faq__list {
    display: grid;
    gap: 10px;
}

.catalog-category-faq__item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.catalog-category-faq__item[open] {
    border-color: rgba(22, 181, 228, .55);
    background: #fffdf8;
    box-shadow: 0 5px 18px rgba(63, 61, 60, .04);
}

.catalog-category-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 19px;
    color: #172033;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
}

.catalog-category-faq__item summary::-webkit-details-marker {
    display: none;
}

.catalog-category-faq__icon {
    position: relative;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f8f3e8;
}

.catalog-category-faq__icon::before,
.catalog-category-faq__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    border-radius: 2px;
    background: #008CC7;
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
}

.catalog-category-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.catalog-category-faq__item[open] .catalog-category-faq__icon::after {
    transform: translate(-50%, -50%) rotate(0);
}

.catalog-category-faq__answer {
    margin: 0 19px;
    padding: 0 0 19px;
    color: #64748b;
    border-top: 1px solid #d7f1fa;
    padding-top: 15px;
}

/* ürün kartı */
.product-card {
width: 100%;
max-width: none; /* kartı daraltma */
background: transparent;
border: none;
box-shadow: none;
border-radius: 0;
overflow: visible;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
cursor: pointer;
transition: transform .18s ease;
}

.product-card-main {
display: block;
text-decoration: none;
color: inherit;
}

/* görsel alanı */
.product-thumb {
width: 100%;
height: 340px; /* önce küçük kalıyordu */
display: flex;
align-items: center;
justify-content: center;
background: #ffffff;
overflow: hidden;
}

/* görseli büyüt */
.product-thumb img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
transition: transform .25s ease;
}

.product-card:hover .product-thumb img {
transform: scale(1.035);
}

/* başlık */
.product-body {
padding-top: 8px; /* görsel ile yazı arası azaltıldı */
}

.product-body h3 {
margin: 0;
color: #111111;
font-size: 20px;
font-weight: 500;
line-height: 1.3;
letter-spacing: 0;
transition: color .2s ease;
}

.product-card:hover .product-body h3 {
color: #008CC7;
}

/* ürün doküman/video butonları – sadece ürün listesinde kullanılıyor */
.product-card-actions {
margin-top: 10px;
display: grid;
gap: 6px;
justify-items: center;
}

.product-asset-btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 7px 14px;
border-radius: 4px;
border: 1px solid #d1d5db;
background: #ffffff;
color: #374151;
font-size: 11px;
font-weight: 600;
text-decoration: none;
text-transform: uppercase;
letter-spacing: .04em;
transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.product-asset-btn:hover {
background: #16B5E4;
border-color: #16B5E4;
color: #ffffff;
}

/* boş durum */
.catalog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
    border: none;
    background: transparent;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1400px) {
    .catalog-wrap {
        grid-template-columns: 340px minmax(0, 1fr);
    }

    .catalog-grid {
        gap: 70px 60px;
    }
}

@media (max-width: 1199px) {
    .catalog-wrap {
        grid-template-columns: 320px minmax(0, 1fr);
        gap: 28px;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
        gap: 50px 40px;
    }

    .catalog-sidebar-link {
        font-size: 11px;
        padding-inline: 9px;
    }
}

@media (max-width: 992px) {
    .catalog-wrap {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        position: static;
    }

    .catalog-sidebar-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-main {
        min-width: 0;
    }
}

@media (max-width: 780px) {
    .catalog-category-banner {
        padding: 38px 18px 42px;
        margin-bottom: 26px;
        border-radius: 10px;
    }
    .catalog-category-banner__title {
        font-size: 1.65rem;
    }
    .catalog-category-banner__description {
        margin-top: 13px;
        font-size: 14px;
        line-height: 1.7;
    }
    .catalog-wrap-container {
        width: calc(100% - 20px);
        margin: 20px auto 30px;
    }

    .catalog-wrap {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        position: static;
        margin-bottom: 20px;
        border-radius: 8px;
        padding: 0;
    }

    /* mobil: başlık yerine açılır/kapanır buton */
    .catalog-sidebar-header {
        margin: 0;
        padding: 0;
        border-bottom: 0;
    }
    .catalog-sidebar-header h3 {
        display: none;
    }
    .catalog-sidebar-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
        font-weight: 700;
        color: #111;
        background: #fff;
        border: none;
        cursor: pointer;
        text-align: left;
        -webkit-tap-highlight-color: transparent;
    }
    .catalog-sidebar-toggle:hover {
        background: #f5f5f5;
    }
    .catalog-sidebar-toggle-icon {
        flex-shrink: 0;
        margin-left: 8px;
        transition: transform 0.2s ease;
        color: #008CC7;
    }
    .catalog-sidebar.is-open .catalog-sidebar-toggle-icon {
        transform: rotate(180deg);
    }
    /* mobil: kategori listesi varsayılan kapalı */
    .catalog-sidebar-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0 10px;
    }
    .catalog-sidebar.is-open .catalog-sidebar-list {
        max-height: 80vh;
        overflow-y: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .catalog-sidebar-list {
        border-top: 1px solid #e5e7eb;
    }

    .catalog-sidebar-link {
        font-size: 12px;
        padding: 11px 10px;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .catalog-category-seo-content,
    .catalog-category-faq {
        margin-top: 34px;
        padding: 27px 20px 22px;
        border-radius: 10px;
    }

    .catalog-category-seo-content::before,
    .catalog-category-faq::before {
        left: 20px;
    }

    .catalog-category-faq__item summary {
        padding: 15px;
    }

    .catalog-category-faq__answer {
        margin: 0 15px;
        padding: 13px 0 16px;
    }

    .product-thumb {
        height: 240px;
    }

    .product-thumb img {
        max-height: 230px;
    }

    .product-body h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .catalog-sidebar-list {
        grid-template-columns: 1fr;
    }
}

/* Search results */
.search-results-hero {
    padding: 42px 20px 46px;
    text-align: center;
    color: #ffffff;
    background:
        radial-gradient(circle at 78% 10%, rgba(22, 181, 228, .18), transparent 30%),
        linear-gradient(135deg, #3F3D3C, #5F5F5E);
    border-bottom: 3px solid #16B5E4;
}

.search-results-hero span {
    display: block;
    color: #16B5E4;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.search-results-hero h1 {
    margin: 7px 0 0;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.2;
}

.search-results-page {
    background: #ffffff;
}

.search-results-form {
    display: flex;
    width: min(680px, 100%);
    margin: 0 auto 38px;
    padding: 5px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(63, 61, 60, .08);
}

.search-results-form input {
    min-width: 0;
    flex: 1;
    height: 46px;
    padding: 0 18px;
    border: 0;
    outline: 0;
    color: #3F3D3C;
    background: transparent;
    font-size: 15px;
}

.search-results-form button {
    flex: 0 0 auto;
    padding: 0 25px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #008CC7, #16B5E4);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.search-results-summary {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 7px;
    margin-bottom: 36px;
    color: #64748b;
    font-size: 17px;
}

.search-results-summary strong {
    color: #3F3D3C;
    font-size: 22px;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.search-result-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 13px;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(63, 61, 60, .04);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.search-result-card:hover {
    transform: translateY(-4px);
    border-color: rgba(22, 181, 228, .55);
    box-shadow: 0 15px 34px rgba(63, 61, 60, .1);
}

.search-result-card__media {
    height: 250px;
    padding: 18px;
    background: #ffffff;
    border-bottom: 1px solid #eef2f7;
}

.search-result-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.search-result-card__body {
    padding: 17px 18px 19px;
}

.search-result-card__body > span {
    display: block;
    margin-bottom: 6px;
    color: #008CC7;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.search-result-card__body h2 {
    margin: 0;
    color: #3F3D3C;
    font-size: 16px;
    line-height: 1.4;
}

.search-result-card__body div {
    margin-top: 13px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.search-results-empty {
    padding: 60px 20px;
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
    color: #64748b;
    text-align: center;
    background: #f8fafc;
}

@media (max-width: 1100px) {
    .search-results-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .search-results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .search-result-card__media {
        height: 190px;
        padding: 12px;
    }
}

@media (max-width: 520px) {
    .search-results-form {
        border-radius: 12px;
    }

    .search-results-form button {
        padding-inline: 16px;
    }

    .search-results-summary {
        display: block;
        text-align: center;
    }

    .search-results-grid {
        grid-template-columns: 1fr;
    }
}
