/**
 * Products Section Styles
 * MatCrafter - Premium Product Presentation
 * 
 * Uses mc- prefix to avoid collisions with theme's global .page-header styles
 */

/* =============================================
   ARCHIVE PAGE - HERO
   ============================================= */
.mc-archive-hero {
    position: relative;
    padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(1.75rem, 4vw, 2.5rem);
    overflow: hidden;
    background: linear-gradient(165deg, var(--color-neutral-100, #fff) 0%, var(--color-light-blue, #e8f2ff) 45%, var(--color-neutral-200, #f8fafc) 100%);
}

.mc-archive-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(0, 70, 190, 0.09) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(0, 58, 155, 0.06) 0%, transparent 50%);
    opacity: 1;
}

.mc-archive-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230046be' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.9;
}

.mc-archive-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 42rem;
}

.mc-archive-hero__breadcrumb {
    margin-bottom: 0.875rem;
}

.mc-archive-hero__breadcrumb .breadcrumbs {
    padding: 0 !important;
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.35;
    background: transparent !important;
    border: none !important;
}

.mc-archive-hero__breadcrumb .breadcrumbs .container {
    padding: 0 !important;
    max-width: none !important;
    width: auto !important;
    margin: 0 !important;
    justify-content: flex-start !important;
}

.mc-archive-hero__breadcrumb .breadcrumb-list {
    padding: 0.4rem 0.85rem 0.4rem 0.95rem;
    margin: 0;
    justify-content: flex-start !important;
    width: fit-content;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 70, 190, 0.12);
    border-radius: 999px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mc-archive-hero__breadcrumb .breadcrumb-item:not(:last-child)::after {
    color: var(--color-neutral-400, #94a3b8);
    margin: 0 0.5rem;
    opacity: 1;
}

.mc-archive-hero__breadcrumb .breadcrumb-item a {
    color: var(--color-neutral-600, #64748b);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.mc-archive-hero__breadcrumb .breadcrumb-item a:hover {
    color: var(--color-primary, #0046be);
}

.mc-archive-hero__breadcrumb .breadcrumb-item:last-child span[aria-current='page'] {
    color: var(--color-neutral-900, #0f172a);
    font-weight: 700;
}

.mc-archive-hero__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary, #0046be);
    margin: 0 0 0.5rem;
}

.mc-archive-hero__title {
    font-family: var(--font-heading, inherit);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-neutral-900, #0f172a);
    margin: 0 0 0.75rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.mc-archive-hero__desc {
    font-size: 1.0625rem;
    color: var(--color-neutral-600, #64748b);
    line-height: 1.65;
    margin: 0;
}

.mc-archive-hero__desc p {
    margin: 0;
}

.mc-archive-hero__stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 70, 190, 0.12);
}

.mc-archive-hero__stat {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
}

.mc-archive-hero__stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-neutral-900, #0f172a);
    letter-spacing: -0.02em;
}

.mc-archive-hero__stat-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-neutral-600, #64748b);
}

.mc-archive-hero__stat--muted {
    font-size: 0.8125rem;
    color: var(--color-neutral-600, #64748b);
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    border: 1px solid rgba(0, 70, 190, 0.12);
}

/* =============================================
   ARCHIVE PAGE - FILTER BAR
   ============================================= */
.mc-filter-bar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-neutral-300, #e2e8f0);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

body.is-scrolled .mc-filter-bar {
    top: 72px; /* Below fixed header */
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.admin-bar.is-scrolled .mc-filter-bar {
    top: 104px;
}

.mc-filter-bar__container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 768px) {
    .mc-filter-bar__container {
        flex-direction: row;
        align-items: center;
        gap: 1.25rem;
    }
}

.mc-filter-bar__label {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-neutral-800, #1e293b);
    white-space: nowrap;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .mc-filter-bar__label {
        display: inline-flex;
    }
}

.mc-filter-bar__label-icon {
    color: var(--color-primary, #0046be);
    opacity: 0.85;
}

.mc-filter-bar__scroll-wrap {
    position: relative;
    flex: 1;
    min-width: 0;
}

.mc-filter-bar__scroll-wrap::before,
.mc-filter-bar__scroll-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 28px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}

@media (max-width: 767px) {
    .mc-filter-bar__scroll-wrap::before {
        left: 0;
        opacity: 1;
        background: linear-gradient(to right, #fff, transparent);
    }

    .mc-filter-bar__scroll-wrap::after {
        right: 0;
        opacity: 1;
        background: linear-gradient(to left, #fff, transparent);
    }
}

.mc-filter-bar__scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 2px 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-neutral-300, #e2e8f0) transparent;
    -webkit-overflow-scrolling: touch;
}

.mc-filter-bar__scroll::-webkit-scrollbar {
    height: 4px;
}

.mc-filter-bar__scroll::-webkit-scrollbar-thumb {
    background: var(--color-neutral-300, #e2e8f0);
    border-radius: 4px;
}

.mc-filter-bar__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    padding: 10px 22px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 100px;
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.mc-filter-bar__pill:hover {
    background: #fff;
    border-color: var(--color-primary, #003399);
    color: var(--color-primary, #003399);
    box-shadow: 0 2px 12px rgba(0, 51, 153, 0.08);
    transform: translateY(-1px);
}

.mc-filter-bar__pill--active {
    background: var(--color-primary, #003399);
    border-color: var(--color-primary, #003399);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 51, 153, 0.25);
}

.mc-filter-bar__pill--active:hover {
    background: var(--color-secondary, #002277);
    border-color: var(--color-secondary, #002277);
    color: #fff;
}

.mc-filter-bar__pill svg {
    flex-shrink: 0;
}

.mc-filter-bar__count {
    font-size: 11px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.06);
    padding: 2px 7px;
    border-radius: 6px;
    line-height: 1.4;
}

.mc-filter-bar__pill--active .mc-filter-bar__count {
    background: rgba(255, 255, 255, 0.25);
}

.mc-filter-bar__pill:focus-visible {
    outline: 2px solid var(--color-primary, #0046be);
    outline-offset: 3px;
}

/* =============================================
   ARCHIVE - TOOLBAR (sonuç özeti)
   ============================================= */
.mc-products-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding: 1rem 1.25rem;
    background: var(--color-neutral-100, #fff);
    border: 1px solid var(--color-neutral-300, #e2e8f0);
    border-radius: 14px;
    box-shadow: var(--shadow-sm, 0 1px 2px rgba(0, 0, 0, 0.05));
}

.mc-products-toolbar__count {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-neutral-800, #1e293b);
}

.mc-products-toolbar__clear {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary, #0046be);
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
}

.mc-products-toolbar__clear:hover {
    background: var(--color-light-blue, #e3f2fd);
    color: var(--color-secondary, #003a9b);
}

.mc-products-toolbar__clear:focus-visible {
    outline: 2px solid var(--color-primary, #0046be);
    outline-offset: 2px;
}

/* =============================================
   ARCHIVE PAGE - PRODUCTS GRID
   ============================================= */
.mc-products-section {
    padding: clamp(2rem, 5vw, 3rem) 0 100px;
    background: linear-gradient(180deg, var(--color-neutral-200, #f8fafc) 0%, #eef2f7 100%);
    min-height: 50vh;
}

.mc-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: clamp(1.25rem, 3vw, 2rem);
}

@media (min-width: 1280px) {
    .mc-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =============================================
   PRODUCT CARD
   ============================================= */
.product-card {
    background: var(--color-neutral-100, #fff);
    border-radius: 22px;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 8px 32px rgba(15, 23, 42, 0.06);
    transition:
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.9);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 4px 12px rgba(0, 70, 190, 0.08),
        0 20px 48px rgba(15, 23, 42, 0.1);
    border-color: rgba(0, 70, 190, 0.18);
}

@media (prefers-reduced-motion: reduce) {
    .product-card,
    .product-card:hover {
        transition: none;
        transform: none;
    }
}

.product-card:focus-within {
    outline: 2px solid var(--color-primary, #0046be);
    outline-offset: 3px;
}

.product-card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(145deg, var(--color-neutral-200, #f8fafc) 0%, #e8eef5 100%);
}

.product-card-image__link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.product-card-image__link:focus-visible {
    outline: none;
}

.product-card:focus-within .product-card-image__overlay {
    opacity: 1;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-image__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.65) 0%, rgba(15, 23, 42, 0.2) 45%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.product-card:hover .product-card-image__overlay {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .product-card-image__overlay {
        opacity: 0;
    }

    .product-card:hover .product-card-image__overlay {
        opacity: 0;
    }
}

.product-card-image__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: var(--color-neutral-100, #fff);
    color: var(--color-primary, #0046be);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(8px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-image__cta {
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .product-card-image__cta {
        transform: none;
    }
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
    .product-card:hover .product-card-image img {
        transform: none;
    }
}

.product-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-primary, #003399);
    color: #fff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 2;
}

.product-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-category {
    font-size: 11px;
    color: var(--color-primary, #003399);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.product-card-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0f172a;
    line-height: 1.4;
    font-weight: 700;
}

.product-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.product-card-title a:hover {
    color: var(--color-primary, #003399);
}

.product-card-excerpt {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.65;
    flex-grow: 1;
}

.product-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.product-card-link {
    color: var(--color-primary, #003399);
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.product-card-link:hover {
    gap: 10px;
}

/* =============================================
   NO RESULTS
   ============================================= */
.mc-no-results {
    text-align: center;
    padding: clamp(4rem, 12vw, 7rem) 1.5rem;
    max-width: 28rem;
    margin: 0 auto;
    background: var(--color-neutral-100, #fff);
    border-radius: 22px;
    border: 1px dashed var(--color-neutral-300, #e2e8f0);
    box-shadow: var(--shadow-sm, 0 1px 2px rgba(0, 0, 0, 0.05));
}

.mc-no-results__icon {
    color: var(--color-neutral-400, #cbd5e1);
    margin-bottom: 1.25rem;
}

.mc-no-results h3 {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--color-neutral-800, #1e293b);
    margin: 0 0 0.5rem;
}

.mc-no-results p {
    color: var(--color-neutral-600, #64748b);
    margin: 0 0 1.75rem;
    line-height: 1.6;
}

/* =============================================
   PAGINATION
   ============================================= */
.mc-pagination {
    margin-top: 60px;
    text-align: center;
}

.mc-pagination .nav-links {
    display: inline-flex;
    gap: 8px;
}

.mc-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.mc-pagination .page-numbers:hover {
    border-color: var(--color-primary, #003399);
    color: var(--color-primary, #003399);
}

.mc-pagination .page-numbers.current {
    background: var(--color-primary, #003399);
    border-color: var(--color-primary, #003399);
    color: #fff;
}

/* =============================================
   SINGLE PRODUCT - GALLERY
   ============================================= */
.product-gallery {
    margin-bottom: 30px;
}

.main-image-viewport {
    border-radius: 24px;
    overflow: hidden;
    background: #f8fafc;
    margin-bottom: 16px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    cursor: zoom-in;
    border: 1px solid #f1f5f9;
}

.main-image-viewport img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.zoom-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    color: #475569;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid #e2e8f0;
    z-index: 10;
}

.zoom-btn:hover {
    transform: scale(1.08);
    background: var(--color-primary, #003399);
    color: #fff;
    border-color: var(--color-primary, #003399);
}

.gallery-thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: none;
}

.gallery-thumbnails::-webkit-scrollbar {
    display: none;
}

.gallery-thumb-item {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    opacity: 0.7;
}

.gallery-thumb-item:hover,
.gallery-thumb-item.active {
    border-color: var(--color-primary, #003399);
    opacity: 1;
}

.gallery-thumb-item.active {
    box-shadow: 0 0 0 3px rgba(0, 51, 153, 0.15);
}

.gallery-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =============================================
   LIGHTBOX
   ============================================= */
.mat-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    backdrop-filter: blur(8px);
}

.mat-lightbox.active {
    display: flex;
}

.mat-lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.4);
}

.mat-lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease;
    opacity: 0.8;
}

.mat-lightbox-close:hover {
    transform: scale(1.15);
    opacity: 1;
}

/* =============================================
   SINGLE PRODUCT - DETAILS
   ============================================= */
.product-single-container {
    padding: 40px 0 80px;
}

/* Ürün detay — breadcrumb (arşivdeki pill ile uyumlu, sola hizalı) */
.product-breadcrumbs {
    padding: clamp(1rem, 3vw, 1.5rem) 0 0;
    margin-bottom: 0.5rem;
    background: transparent;
}

.product-breadcrumbs .container {
    display: flex;
    justify-content: flex-start;
    text-align: left;
}

.product-breadcrumbs .breadcrumbs {
    padding: 0 !important;
    margin: 0;
    background: transparent !important;
    border: none !important;
    font-size: 0.8125rem;
    line-height: 1.35;
    width: 100%;
}

.product-breadcrumbs .breadcrumb-list {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding: 0.4rem 0.85rem 0.4rem 0.95rem;
    margin: 0;
    width: fit-content;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 70, 190, 0.12);
    border-radius: 999px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.product-breadcrumbs .breadcrumb-item:not(:last-child)::after {
    color: var(--color-neutral-400, #94a3b8);
    margin: 0 0.5rem;
    opacity: 1;
}

.product-breadcrumbs .breadcrumb-item a {
    color: var(--color-neutral-600, #64748b);
    font-weight: 500;
}

.product-breadcrumbs .breadcrumb-item a:hover {
    color: var(--color-primary, #0046be);
}

.product-breadcrumbs .breadcrumb-item span[aria-current='page'] {
    color: var(--color-neutral-900, #0f172a);
    font-weight: 700;
}

.product-details {
    padding-left: 24px;
}

.product-title {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.product-meta-header {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.product-category-tag {
    background: #eef2ff;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary, #003399);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-sku {
    color: #94a3b8;
    font-size: 13px;
}

/* Quality Badge */
.premium-badge {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 14px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.premium-badge svg {
    color: #22c55e;
    flex-shrink: 0;
}

.premium-badge span {
    font-weight: 600;
    font-size: 14px;
}

/* Product Description */
.product-description {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 32px;
}

/* Specs Card */
.product-specs-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.product-specs-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.specs-grid {
    display: grid;
    gap: 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #64748b;
    font-size: 14px;
}

.spec-value {
    color: #1e293b;
    font-weight: 600;
    font-size: 14px;
}

/* Actions */
.product-actions {
    display: flex;
    gap: 12px;
}

.product-actions .btn {
    padding: 14px 28px;
    font-weight: 700;
    flex: 1;
    text-align: center;
    border-radius: 12px;
    font-size: 15px;
}

/* =============================================
   FAQ ACCORDION — ürün detay (custom.css .faq-section ile çakışmaz)
   ============================================= */
.product-faq-section {
    margin-top: clamp(3rem, 8vw, 5rem);
    padding-top: clamp(2.5rem, 6vw, 3.5rem);
    border-top: 1px solid var(--color-neutral-300, #e2e8f0);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.product-faq-section__head {
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .product-faq-section__head {
        text-align: left;
    }
}

.product-faq-section__eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary, #0046be);
    margin: 0 0 0.35rem;
}

.product-faq-section .faq-title {
    font-family: var(--font-heading, inherit);
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 800;
    margin: 0;
    color: var(--color-neutral-900, #0f172a);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.product-faq-section .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.product-faq-section .faq-item {
    border: 1px solid var(--color-neutral-300, #e2e8f0);
    border-radius: 16px;
    background: var(--color-neutral-100, #fff);
    overflow: hidden;
    transition:
        border-color 0.2s ease,
        box-shadow 0.25s ease;
}

.product-faq-section .faq-item:hover {
    border-color: rgba(0, 70, 190, 0.25);
}

.product-faq-section .faq-item.active {
    border-color: var(--color-primary, #0046be);
    box-shadow:
        0 1px 2px rgba(0, 70, 190, 0.06),
        0 8px 28px rgba(15, 23, 42, 0.08);
}

.product-faq-section .faq-question {
    width: 100%;
    margin: 0;
    padding: 1.125rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 1.45;
    color: var(--color-neutral-800, #1e293b);
    text-align: left;
    background: transparent;
    border: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.product-faq-section .faq-question:hover {
    color: var(--color-primary, #0046be);
}

.product-faq-section .faq-question:focus {
    outline: none;
}

.product-faq-section .faq-question:focus-visible {
    outline: 2px solid var(--color-primary, #0046be);
    outline-offset: 2px;
    border-radius: 14px;
}

.product-faq-section .faq-question-text {
    flex: 1;
    min-width: 0;
}

.product-faq-section .faq-answer {
    display: none;
    margin: 0;
    padding: 0 1.25rem 1.125rem;
    color: var(--color-neutral-600, #64748b);
    line-height: 1.75;
    font-size: 0.9375rem;
    max-height: none;
    overflow: visible;
}

.product-faq-section .faq-item.active .faq-answer {
    display: block;
}

.product-faq-section .faq-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--color-neutral-200, #f1f5f9);
    color: var(--color-neutral-600, #64748b);
    transition:
        transform 0.3s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.product-faq-section .faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: rgba(0, 70, 190, 0.1);
    color: var(--color-primary, #0046be);
}

/* =============================================
   RELATED PRODUCTS
   ============================================= */
.related-products {
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid #f1f5f9;
}

.related-title {
    font-size: 24px;
    margin-bottom: 32px;
    font-weight: 800;
    color: #0f172a;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .mc-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .mc-archive-hero__stats {
        margin-top: 1.25rem;
        padding-top: 1rem;
    }

    .mc-products-toolbar {
        padding: 0.875rem 1rem;
        margin-bottom: 1.25rem;
    }

    .mc-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-details {
        padding-left: 0;
        margin-top: 32px;
    }
    
    .product-title {
        font-size: 28px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-specs-card {
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .mc-filter-bar__pill {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .product-card-content {
        padding: 20px;
    }
}