/* ======================================================================
   Başak - Lüks Kadın Aksesuar & Butik Teması (Wix Adalene Esintili)
   Fibyte E-Ticaret Sistemi
   ====================================================================== */

:root {
    --bk-primary: #111111;
    --bk-accent: #a88556;
    --bk-accent-hover: #8f6e40;
    --bk-bg: #faf9f6;
    --bk-card-bg: #ffffff;
    --bk-border: #e8e5df;
    --bk-muted: #6e6e6e;
    --bk-light-muted: #999999;
    --bk-danger: #c93b2b;
    --bk-success: #2e7d32;

    --bk-font-serif: 'Playfair Display', Didot, 'Bodoni MT', Georgia, serif;
    --bk-font-sans: 'Plus Jakarta Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;

    --bk-container-width: 1240px;
    --bk-radius: 2px;
    --bk-transition: all 0.28s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ------------------------------------------------ Reset & Temel */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body.bk-body {
    font-family: var(--bk-font-sans);
    font-size: 14px;
    line-height: 1.6;
    color: var(--bk-primary);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--bk-transition);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    background: none;
    outline: none;
}

button {
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

.bk-container {
    width: 100%;
    max-width: var(--bk-container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ------------------------------------------------ Tipografi */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--bk-font-serif);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

/* ------------------------------------------------ Düğmeler */

.bk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: var(--bk-radius);
    transition: var(--bk-transition);
    cursor: pointer;
    text-align: center;
}

.bk-btn--dark {
    background-color: var(--bk-primary);
    color: #ffffff;
    border: 1px solid var(--bk-primary);
}

.bk-btn--dark:hover {
    background-color: var(--bk-accent);
    border-color: var(--bk-accent);
    color: #ffffff;
}

.bk-btn--outline {
    background-color: transparent;
    color: var(--bk-primary);
    border: 1px solid var(--bk-primary);
}

.bk-btn--outline:hover {
    background-color: var(--bk-primary);
    color: #ffffff;
}

.bk-btn--ghost {
    background-color: transparent;
    color: var(--bk-muted);
}

.bk-btn--ghost:hover {
    color: var(--bk-primary);
}

.bk-btn--lg {
    padding: 16px 36px;
    font-size: 13px;
}

.bk-btn--sm {
    padding: 8px 18px;
    font-size: 11px;
}

.bk-btn--block {
    width: 100%;
}

/* ------------------------------------------------ Üst Duyuru Çubuğu */

.bk-topbar {
    background-color: var(--bk-primary);
    color: #ffffff;
    padding: 9px 0;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ------------------------------------------------ Header */

.bk-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--bk-border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--bk-transition);
}

.bk-header__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 22px 0 16px;
    gap: 16px;
}

/* Sol Arama (Wix Popover & Mobil Burger) */
.bk-header__left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bk-burger-btn {
    display: none;
    font-size: 24px;
    color: var(--bk-primary);
    padding: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.bk-search-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.bk-search-trigger {
    background: transparent;
    border: none;
    font-size: 22px;
    color: var(--bk-primary);
    cursor: pointer;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.bk-search-trigger:hover {
    color: var(--bk-accent);
    transform: scale(1.08);
}

.bk-search-popover {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 280px;
    background: #ffffff;
    border: 1px solid var(--bk-border);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    padding: 12px 16px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.bk-search-popover.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bk-search-popover__form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bk-search-popover__input {
    flex: 1;
    font-size: 13px;
    color: var(--bk-primary);
    border-bottom: 1px solid #d0ccc4;
    padding: 6px 0;
    background: transparent;
}

.bk-search-popover__input:focus {
    border-color: var(--bk-primary);
}

.bk-search-popover__btn {
    font-size: 18px;
    color: var(--bk-muted);
    cursor: pointer;
    padding: 4px;
    background: transparent;
    border: none;
    transition: color 0.2s ease;
}

.bk-search-popover__btn:hover {
    color: var(--bk-accent);
}

/* Orta Logo (Wix Adalene: Terracotta Italic Serif başak.) */
.bk-header__center {
    text-align: center;
}

.bk-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.bk-logo img,
.bk-logo__img {
    max-height: 48px;
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

.bk-logo__text {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 42px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--bk-accent);
    line-height: 1;
    text-transform: lowercase;
}

.bk-logo__dot {
    color: var(--bk-primary);
}

/* Sağ Araçlar */
.bk-header__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.bk-header__socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bk-header__socials a {
    color: var(--bk-primary);
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.bk-header__socials a:hover {
    color: var(--bk-accent);
}

.bk-tool-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--bk-primary);
    padding: 8px 0;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s ease;
}

.bk-tool-btn:hover {
    color: var(--bk-accent);
}

.bk-tool-btn--cart {
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--bk-primary);
}

.bk-cart-label {
    letter-spacing: 1px;
}

.bk-tool-icon {
    font-size: 18px;
}

.bk-tool-label {
    letter-spacing: 0.04em;
}

.bk-flag {
    font-size: 14px;
}

.bk-dropdown-arrow {
    font-size: 10px;
    color: var(--bk-muted);
}

.bk-cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background-color: var(--bk-primary);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
}

/* Dropdown */
.bk-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 4px 0;
}

.bk-dropdown__menu {
    position: absolute;
    top: calc(100% - 2px);
    right: 0;
    margin-top: 0;
    background-color: #ffffff;
    border: 1px solid var(--bk-border);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
    pointer-events: none;
    z-index: 1000;
}

/* KESİNTİSİZ HOVER KÖPRÜSÜ: Buton ile menü arasında imleç asla odağı kaybetmez */
.bk-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 24px;
    background: transparent;
    z-index: 999;
}

.bk-dropdown__menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent;
    display: block;
}

.bk-dropdown:hover .bk-dropdown__menu,
.bk-dropdown:focus-within .bk-dropdown__menu,
.bk-dropdown.is-open .bk-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.bk-dropdown__user-box {
    padding: 12px 18px 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bk-dropdown__user-greeting {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bk-muted);
}

.bk-dropdown__user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--bk-primary);
}

.bk-dropdown__user-email {
    font-size: 12px;
    color: var(--bk-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bk-dropdown__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    font-size: 13px;
    color: var(--bk-primary);
    transition: var(--bk-transition);
}

.bk-dropdown__item i {
    font-size: 16px;
    color: var(--bk-muted);
    width: 18px;
    text-align: center;
    transition: var(--bk-transition);
}

.bk-dropdown__item:hover,
.bk-dropdown__item.is-active {
    background-color: var(--bk-bg);
    color: var(--bk-accent);
}

.bk-dropdown__item:hover i {
    color: var(--bk-accent);
}

.bk-dropdown__item--danger:hover {
    color: var(--bk-danger);
    background-color: #fff5f5;
}

.bk-dropdown__item--danger:hover i {
    color: var(--bk-danger);
}

.bk-dropdown__divider {
    border: none;
    border-top: 1px solid var(--bk-border);
    margin: 6px 0;
}

/* Nav Submenu */
.bk-nav__item {
    position: relative;
}

.bk-nav__caret {
    font-size: 10px;
    margin-left: 4px;
    opacity: 0.6;
    transition: transform 0.2s ease;
}

.bk-nav__item--has-sub:hover .bk-nav__caret {
    transform: rotate(180deg);
}

.bk-nav__sub {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    margin-top: 10px;
    background-color: #ffffff;
    border: 1px solid var(--bk-border);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    min-width: 200px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    pointer-events: none;
    z-index: 999;
}

.bk-nav__sub::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
    background: transparent;
}

.bk-nav__item--has-sub:hover .bk-nav__sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.bk-nav__sub li a {
    display: block;
    padding: 9px 20px;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--bk-primary);
    text-transform: none;
    white-space: nowrap;
    transition: var(--bk-transition);
}

.bk-nav__sub li a:hover {
    background-color: var(--bk-bg);
    color: var(--bk-accent);
    padding-left: 24px;
}

/* Alt Navigasyon Menüsü (Wix Adalene Tarzı Zarif Menü) */
.bk-nav {
    border-top: 1px solid #eeeae2;
    padding: 14px 0 12px;
}

.bk-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: nowrap;
}

.bk-nav__link {
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bk-primary);
    position: relative;
    padding: 4px 0;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.bk-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--bk-accent);
    transition: width 0.25s ease;
}

.bk-nav__link:hover::after,
.bk-nav__link.is-active::after {
    width: 100%;
}

.bk-nav__link:hover {
    color: var(--bk-accent);
}

/* ------------------------------------------------ Mobil Çekmece */

.bk-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 2px 0 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: left 0.35s ease;
    display: flex;
    flex-direction: column;
}

.bk-drawer.is-open {
    left: 0;
}

.bk-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--bk-border);
}

.bk-drawer__logo {
    font-family: var(--bk-font-serif);
    font-size: 26px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.bk-drawer__logo img {
    max-height: 34px;
    height: 30px;
    width: auto;
    object-fit: contain;
    display: block;
}

.bk-drawer__close {
    font-size: 30px;
    line-height: 1;
    color: var(--bk-muted);
}

.bk-drawer__search {
    padding: 16px 24px;
    border-bottom: 1px solid var(--bk-border);
}

.bk-drawer__search form {
    display: flex;
    align-items: center;
    background-color: var(--bk-bg);
    border-radius: var(--bk-radius);
    padding: 6px 12px;
}

.bk-drawer__search input {
    width: 100%;
    font-size: 13px;
}

.bk-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.bk-drawer__nav li {
    margin-bottom: 16px;
}

.bk-drawer__nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--bk-primary);
    display: block;
}

.bk-drawer__account {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--bk-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bk-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--bk-transition);
}

.bk-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

/* ------------------------------------------------ Hero Bölümü */

.bk-hero {
    position: relative;
    min-height: 620px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.bk-hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.65) 100%);
}

.bk-hero__content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 20px;
}

.bk-hero__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
    opacity: 0.95;
}

.bk-hero__title {
    font-family: var(--bk-font-serif);
    font-size: 54px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.bk-hero__text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
    margin: 0 auto 36px;
    max-width: 640px;
}

.bk-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 42px;
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: var(--bk-radius);
    transition: var(--bk-transition);
}

.bk-hero__btn:hover {
    background-color: #ffffff;
    color: var(--bk-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ------------------------------------------------ Bölüm Başlığı & Izgara */

.bk-section {
    padding: 80px 0;
}

.bk-section--no-top {
    padding-top: 0;
}

.bk-section--bg {
    background-color: var(--bk-bg);
}

.bk-section-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.bk-section-head__title {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--bk-primary);
    margin-bottom: 10px;
}

.bk-section-head__subtitle {
    font-size: 14px;
    color: var(--bk-muted);
}

.bk-section-head__link {
    display: inline-block;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bk-primary);
    border-bottom: 1px solid var(--bk-primary);
    padding-bottom: 2px;
}

.bk-section-head__link:hover {
    color: var(--bk-accent);
    border-color: var(--bk-accent);
}

.bk-grid {
    display: grid;
    gap: 30px;
}

.bk-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.bk-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.bk-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.bk-center-cta {
    text-align: center;
    margin-top: 48px;
}

/* ------------------------------------------------ Ürün Kartı (Wix Adalene) */

.bk-card {
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: transparent;
    transition: var(--bk-transition);
}

.bk-card__media-wrap {
    position: relative;
    overflow: hidden;
    background-color: #ece8e1;
    border-radius: 16px;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bk-card__media {
    display: block;
    width: 100%;
    height: 100%;
}

.bk-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bk-card:hover .bk-card__img {
    transform: scale(1.05);
}

.bk-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #c9c5bd;
}

.bk-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.bk-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 20px;
    background-color: #ffffff;
    color: var(--bk-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.bk-badge--bestseller {
    background-color: #ffffff;
    color: #111111;
}

.bk-badge--new {
    background-color: #ffffff;
    color: #b44f2b;
}

.bk-badge--sale {
    background-color: #b44f2b;
    color: #ffffff;
}

.bk-badge--out {
    background-color: #888888;
    color: #ffffff;
}

.bk-card__quick-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--bk-transition);
    z-index: 2;
}

.bk-card:hover .bk-card__quick-actions {
    opacity: 1;
    transform: translateY(0);
}

.bk-card__quick-btn {
    display: block;
    width: 100%;
    padding: 11px 16px;
    background-color: rgba(255,255,255,0.95);
    color: #111111;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    border-radius: 8px;
    backdrop-filter: blur(6px);
    transition: var(--bk-transition);
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.bk-card__quick-btn:hover {
    background-color: #111111;
    color: #ffffff;
}

.bk-card__info {
    padding: 14px 4px 6px;
    text-align: center;
}

.bk-card__title {
    font-family: var(--bk-font-sans);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #1a1a1a;
    letter-spacing: 0.01em;
    margin-bottom: 6px;
}

.bk-card__title a:hover {
    color: #b44f2b;
}

.bk-card__price {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bk-price-current {
    color: #b44f2b;
    font-family: var(--bk-font-serif);
    font-style: italic;
    font-size: 16px;
    font-weight: 500;
}

.bk-price-old {
    color: #999999;
    font-weight: 400;
    font-size: 14px;
    text-decoration: line-through;
}

/* ------------------------------------------------ Promosyon Kutuları (Split Banners) */

.bk-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.bk-promo-card {
    position: relative;
    min-height: 440px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 48px;
    color: #ffffff;
    overflow: hidden;
}

.bk-promo-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%);
    transition: var(--bk-transition);
}

.bk-promo-card:hover .bk-promo-card__overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 70%);
}

.bk-promo-card__content {
    position: relative;
    z-index: 2;
}

.bk-promo-card__tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bk-accent);
    display: block;
    margin-bottom: 8px;
}

.bk-promo-card__title {
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
    line-height: 1.25;
}

.bk-promo-card__btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: var(--bk-transition);
}

.bk-promo-card__btn:hover {
    background-color: #ffffff;
    color: var(--bk-primary);
}

/* ------------------------------------------------ Ayın Parçası (Spotlight) */

.bk-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background-color: var(--bk-bg);
    padding: 60px;
    border-radius: var(--bk-radius);
}

.bk-spotlight__media img {
    border-radius: var(--bk-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    width: 100%;
}

.bk-spotlight__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bk-accent);
    margin-bottom: 12px;
}

.bk-spotlight__title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 16px;
}

.bk-spotlight__desc {
    font-size: 15px;
    color: var(--bk-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.bk-spotlight__price {
    font-size: 24px;
    font-weight: 600;
    color: var(--bk-primary);
    margin-bottom: 30px;
}

/* ------------------------------------------------ Marka Değerleri (Pillars) */

.bk-pillars-section {
    border-top: 1px solid var(--bk-border);
    border-bottom: 1px solid var(--bk-border);
}

.bk-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.bk-pillar-card__media {
    margin-bottom: 24px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background-color: var(--bk-bg);
}

.bk-pillar-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bk-pillar-card:hover .bk-pillar-card__media img {
    transform: scale(1.05);
}

.bk-pillar-card__title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 6px;
}

.bk-pillar-card__sub {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bk-muted);
    margin-bottom: 14px;
}

.bk-pillar-card__link {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--bk-primary);
    border-bottom: 1px solid var(--bk-border);
    padding-bottom: 2px;
}

.bk-pillar-card__link:hover {
    color: var(--bk-accent);
    border-color: var(--bk-accent);
}

/* ------------------------------------------------ Instagram Akışı */

.bk-instagram-head {
    text-align: center;
    margin-bottom: 36px;
}

.bk-instagram-head__title {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.bk-instagram-head__tag {
    font-size: 14px;
    color: var(--bk-muted);
    font-weight: 500;
}

.bk-instagram-head__tag:hover {
    color: var(--bk-accent);
}

.bk-instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.bk-insta-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
    background-color: var(--bk-bg);
}

.bk-insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bk-insta-item__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    opacity: 0;
    transition: var(--bk-transition);
}

.bk-insta-item:hover img {
    transform: scale(1.08);
}

.bk-insta-item:hover .bk-insta-item__overlay {
    opacity: 1;
}

/* ------------------------------------------------ Güven Bandı */

.bk-trust-strip {
    background-color: var(--bk-bg);
    border-top: 1px solid var(--bk-border);
    border-bottom: 1px solid var(--bk-border);
    padding: 44px 0;
}

.bk-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.bk-trust-item {
    text-align: center;
    padding: 0 12px;
}

.bk-trust-item__icon {
    font-size: 28px;
    color: var(--bk-accent);
    margin-bottom: 12px;
    display: inline-block;
}

.bk-trust-item__title {
    font-family: var(--bk-font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--bk-primary);
    margin-bottom: 6px;
}

.bk-trust-item__desc {
    font-size: 12px;
    color: var(--bk-muted);
    line-height: 1.5;
}

/* ------------------------------------------------ Blog Kartı */

.bk-post-card {
    background-color: #ffffff;
    border: 1px solid var(--bk-border);
    overflow: hidden;
    transition: var(--bk-transition);
}

.bk-post-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.bk-post-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.bk-post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bk-post-card:hover .bk-post-card__media img {
    transform: scale(1.04);
}

.bk-post-card__body {
    padding: 24px;
}

.bk-post-card__date {
    display: block;
    font-size: 11px;
    color: var(--bk-light-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.bk-post-card__title {
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 10px;
}

.bk-post-card__excerpt {
    font-size: 13px;
    color: var(--bk-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.bk-post-card__more {
    font-size: 12px;
    font-weight: 600;
    color: var(--bk-primary);
}

.bk-post-card__more:hover {
    color: var(--bk-accent);
}

/* ------------------------------------------------ Footer */

.bk-footer {
    background-color: #ffffff;
    border-top: 1px solid var(--bk-border);
    padding-top: 0;
}

.bk-newsletter {
    background-color: #f7f6f2;
    padding: 50px 0;
    border-bottom: 1px solid var(--bk-border);
}

.bk-newsletter__inner {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.bk-newsletter__title {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.bk-newsletter__desc {
    font-size: 13px;
    color: var(--bk-muted);
    margin-bottom: 24px;
}

.bk-newsletter__form {
    display: flex;
    max-width: 440px;
    margin: 0 auto;
}

.bk-newsletter__input {
    flex: 1;
    background-color: #ffffff;
    border: 1px solid var(--bk-border);
    border-right: none;
    padding: 12px 16px;
    font-size: 13px;
}

.bk-newsletter__btn {
    padding: 12px 24px;
    background-color: var(--bk-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: var(--bk-transition);
}

.bk-newsletter__btn:hover {
    background-color: var(--bk-accent);
}

.bk-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
    gap: 50px;
    padding: 60px 0;
}

.bk-footer__logo {
    font-family: var(--bk-font-serif);
    font-size: 32px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 16px;
}

.bk-footer__logo-img {
    max-height: 40px;
    height: 34px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 16px;
}

.bk-footer__text {
    font-size: 13px;
    color: var(--bk-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.bk-footer__social {
    display: flex;
    gap: 16px;
}

.bk-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--bk-border);
    color: var(--bk-primary);
    font-size: 16px;
    transition: var(--bk-transition);
}

.bk-footer__social a:hover {
    background-color: var(--bk-primary);
    border-color: var(--bk-primary);
    color: #ffffff;
}

.bk-footer__title {
    font-family: var(--bk-font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bk-primary);
    margin-bottom: 20px;
}

.bk-footer__links li {
    margin-bottom: 10px;
}

.bk-footer__links a {
    font-size: 13px;
    color: var(--bk-muted);
}

.bk-footer__links a:hover {
    color: var(--bk-primary);
}

.bk-footer__contact-info p {
    font-size: 13px;
    color: var(--bk-muted);
    margin-bottom: 8px;
}

.bk-footer__contact-info a:hover {
    color: var(--bk-accent);
}

.bk-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--bk-border);
    font-size: 12px;
    color: var(--bk-muted);
}

.bk-footer__payment-badges {
    display: flex;
    gap: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.bk-footer__payment-badges span {
    padding: 4px 8px;
    border: 1px solid var(--bk-border);
    border-radius: var(--bk-radius);
    background-color: #ffffff;
}

/* ------------------------------------------------ Quick Cart Popover */

.bk-cartpop {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--bk-transition);
}

.bk-cartpop.is-open {
    opacity: 1;
    visibility: visible;
}

.bk-cartpop__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
}

.bk-cartpop__box {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    max-width: 440px;
    width: 90%;
    padding: 30px;
    border-radius: var(--bk-radius);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: scale(0.95);
    transition: var(--bk-transition);
}

.bk-cartpop.is-open .bk-cartpop__box {
    transform: scale(1);
}

.bk-cartpop__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bk-border);
    margin-bottom: 20px;
}

.bk-cartpop__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--bk-success);
    display: flex;
    align-items: center;
    gap: 8px;
}

.bk-cartpop__close {
    font-size: 26px;
    line-height: 1;
    color: var(--bk-muted);
}

.bk-cartpop__content {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.bk-cartpop__img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    background-color: var(--bk-bg);
}

.bk-cartpop__details {
    flex: 1;
}

.bk-cartpop__name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.bk-cartpop__props {
    font-size: 12px;
    color: var(--bk-muted);
    margin-bottom: 8px;
}

.bk-cartpop__pricing {
    font-size: 14px;
    display: flex;
    gap: 8px;
}

.bk-cartpop__summary {
    background-color: var(--bk-bg);
    padding: 16px;
    border-radius: var(--bk-radius);
    margin-bottom: 20px;
}

.bk-cartpop__subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 4px;
}

.bk-cartpop__note {
    font-size: 11px;
    color: var(--bk-muted);
}

.bk-cartpop__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* ------------------------------------------------ Toast Bildirim */

#bk-toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bk-toast {
    background-color: var(--bk-primary);
    color: #ffffff;
    padding: 14px 24px;
    border-radius: var(--bk-radius);
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--bk-transition);
}

.bk-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.bk-toast.is-error {
    background-color: var(--bk-danger);
}

/* ------------------------------------------------ Sayfa Başlığı & Breadcrumb */

.bk-pagehead {
    background-color: var(--bk-bg);
    border-bottom: 1px solid var(--bk-border);
    padding: 40px 0;
    text-align: center;
}

.bk-pagehead__title {
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.bk-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--bk-muted);
}

.bk-breadcrumb a:hover {
    color: var(--bk-primary);
}

.bk-breadcrumb li+li::before {
    content: '/';
    margin-right: 8px;
    color: var(--bk-light-muted);
}

/* ------------------------------------------------ Ürün Detay Sayfası */

.bk-pd {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
    padding: 40px 0 80px;
}

.bk-pd__gallery {
    position: sticky;
    top: 110px;
}

.bk-pd__main-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background-color: var(--bk-bg);
    border-radius: var(--bk-radius);
}

.bk-pd__thumbs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    overflow-x: auto;
}

.bk-pd__thumb {
    width: 80px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--bk-transition);
}

.bk-pd__thumb.is-active,
.bk-pd__thumb:hover {
    border-color: var(--bk-primary);
}

.bk-pd__category {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bk-muted);
    display: block;
    margin-bottom: 8px;
}

.bk-pd__title {
    font-family: var(--bk-font-serif);
    font-size: 34px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--bk-primary);
    margin-bottom: 12px;
}

.bk-pd__price-wrap {
    font-size: 24px;
    font-weight: 600;
    color: var(--bk-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.bk-pd__tax-notice {
    font-size: 12px;
    color: var(--bk-muted);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.bk-pd__stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #2e7d32;
    background-color: #e8f5e9;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.bk-pd__stock-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #2e7d32;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
}

.bk-pd__desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--bk-muted);
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--bk-border);
}

.bk-pd__form {
    margin-bottom: 30px;
}

.bk-pd__qty-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.bk-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--bk-border);
    border-radius: var(--bk-radius);
    overflow: hidden;
}

.bk-qty button {
    width: 36px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--bk-primary);
    background-color: var(--bk-bg);
}

.bk-qty button:hover {
    background-color: #ebe7e0;
}

.bk-qty input {
    width: 48px;
    height: 42px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.bk-pd__features {
    border-top: 1px solid var(--bk-border);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bk-pd__feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--bk-muted);
}

.bk-pd__feature-item i {
    font-size: 18px;
    color: var(--bk-accent);
}

/* ------------------------------------------------ Sepet Tablosu */

.bk-basket-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
    padding: 40px 0 80px;
}

.bk-table {
    width: 100%;
    border-collapse: collapse;
}

.bk-table th {
    text-align: left;
    padding: 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bk-muted);
    border-bottom: 1px solid var(--bk-border);
}

.bk-table td {
    padding: 20px 16px;
    border-bottom: 1px solid var(--bk-border);
    vertical-align: middle;
}

.bk-basket-summary {
    background-color: var(--bk-bg);
    border: 1px solid var(--bk-border);
    padding: 30px;
    border-radius: var(--bk-radius);
}

.bk-basket-summary__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--bk-border);
}

.bk-basket-summary__row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 12px;
}

.bk-basket-summary__row--total {
    font-size: 18px;
    font-weight: 700;
    color: var(--bk-primary);
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid var(--bk-border);
}

/* ------------------------------------------------ Form Elemanları & Alanlar */

.bk-form-group {
    margin-bottom: 22px;
    position: relative;
}

.bk-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bk-primary);
    margin-bottom: 8px;
}

.bk-input, .bk-select, .bk-textarea,
.form-control,
input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="number"],
select, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--bk-border);
    border-radius: var(--bk-radius);
    background-color: #ffffff;
    font-size: 14px;
    color: var(--bk-primary);
    transition: var(--bk-transition);
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
}

.bk-input:focus, .bk-select:focus, .bk-textarea:focus,
.form-control:focus,
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="tel"]:focus,
select:focus, textarea:focus {
    border-color: var(--bk-primary);
    box-shadow: 0 0 0 2px rgba(17,17,17,0.06);
}

.bk-select--sm {
    padding: 7px 14px;
    font-size: 13px;
    height: auto;
    cursor: pointer;
}

.bk-card-box {
    background-color: #ffffff;
    border: 1px solid var(--bk-border);
    padding: 36px;
    border-radius: var(--bk-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

/* ------------------------------------------------ Kategori Hapları & Katalog Araçları */

.bk-cat-pills {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.bk-cat-pills::-webkit-scrollbar {
    height: 4px;
}

.bk-cat-pills::-webkit-scrollbar-thumb {
    background-color: var(--bk-border);
    border-radius: 4px;
}

.bk-cat-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border: 1px solid var(--bk-border);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bk-primary);
    background-color: #ffffff;
    white-space: nowrap;
    transition: var(--bk-transition);
}

.bk-cat-pill:hover,
.bk-cat-pill.is-active {
    background-color: var(--bk-primary);
    border-color: var(--bk-primary);
    color: #ffffff;
}

.bk-catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 24px;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--bk-border);
}

.bk-catalog-toolbar__count {
    font-size: 13px;
    color: var(--bk-muted);
    letter-spacing: 0.02em;
}

.bk-catalog-toolbar__sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bk-catalog-toolbar__sort label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bk-primary);
}

.bk-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.bk-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--bk-border);
    background-color: #ffffff;
    color: var(--bk-primary);
    font-size: 13px;
    font-weight: 600;
    transition: var(--bk-transition);
}

.bk-pagination__link:hover,
.bk-pagination__link.is-active {
    background-color: var(--bk-primary);
    border-color: var(--bk-primary);
    color: #ffffff;
}

/* ------------------------------------------------ Ürün Akordeon / Sekmeler */

.bk-accordion {
    margin-top: 24px;
    border-top: 1px solid var(--bk-border);
}

.bk-accordion__item {
    border-bottom: 1px solid var(--bk-border);
}

.bk-accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--bk-primary);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.bk-accordion__header::-webkit-details-marker {
    display: none;
}

.bk-accordion__icon {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.bk-accordion__item[open] .bk-accordion__icon {
    transform: rotate(180deg);
}

.bk-accordion__content {
    padding: 0 0 18px 0;
    font-size: 13px;
    line-height: 1.7;
    color: var(--bk-muted);
}

/* ------------------------------------------------ Grid Sistemi (Flexbox Bootstrap Desteği) */

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

[class*="col-"] {
    position: relative;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }

@media (min-width: 768px) {
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 992px) {
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

.d-flex { display: flex !important; }
.flex-fill { flex: 1 1 auto !important; }
.align-items-center { align-items: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-center { justify-content: center !important; }
.h-100 { height: 100% !important; }
.w-100 { width: 100% !important; }
.p-2 { padding: 12px !important; }
.p-3 { padding: 18px !important; }
.p-4 { padding: 24px !important; }
.m-0 { margin: 0 !important; }
.mb-2 { margin-bottom: 8px !important; }
.mb-3 { margin-bottom: 16px !important; }
.mb-4 { margin-bottom: 24px !important; }
.mb-5 { margin-bottom: 36px !important; }
.mt-3 { margin-top: 16px !important; }
.mt-4 { margin-top: 24px !important; }
.mt-30 { margin-top: 30px !important; }
.ml-3 { margin-left: 16px !important; }
.float-right { float: right !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

/* ------------------------------------------------ Üye & Giriş Sayfaları (Wix Look) */

.cv-section {
    padding: 60px 0;
    background-color: var(--bk-bg);
    min-height: calc(100vh - 350px);
}

.cv-title {
    font-family: var(--bk-font-serif);
    font-weight: 600;
    color: var(--bk-primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.cv-eyebrow {
    font-family: var(--bk-font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bk-accent);
    margin-bottom: 6px;
    display: block;
}

.cv-link {
    font-size: 13px;
    color: var(--bk-accent);
    text-decoration: underline;
    transition: var(--bk-transition);
}

.cv-link:hover {
    color: var(--bk-primary);
}

.cv-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.cv-check input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    accent-color: var(--bk-primary);
}

.cv-check label {
    font-size: 13px;
    color: var(--bk-muted);
    line-height: 1.5;
    cursor: pointer;
}

.toggle-password {
    position: absolute;
    right: 14px;
    top: 38px;
    border: 0;
    background: none;
    color: var(--bk-muted);
    cursor: pointer;
    font-size: 18px;
}

.table-responsive {
    overflow-x: auto;
    border: 1px solid var(--bk-border);
    border-radius: var(--bk-radius);
    background: #ffffff;
}

.cv-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.cv-table th {
    padding: 14px 18px;
    background-color: var(--bk-bg);
    border-bottom: 1px solid var(--bk-border);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bk-primary);
    text-align: left;
}

.cv-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--bk-border);
    color: var(--bk-primary);
}

.cv-table tr:last-child td {
    border-bottom: none;
}

/* ------------------------------------------------ Sipariş / Ödeme (Checkout Flow) */

.tm-checkout-area {
    padding: 50px 0;
    background-color: var(--bk-bg);
}

.checkout-form {
    display: block;
}

.checkout-content {
    margin-bottom: 24px;
    padding: 16px 20px;
    background-color: #ffffff;
    border: 1px solid var(--bk-border);
    border-left: 3px solid var(--bk-primary);
}

.content-btn {
    font-size: 13px;
    font-weight: 600;
    color: var(--bk-primary);
    text-decoration: underline;
}

.address_box {
    position: relative;
    background-color: #ffffff;
    border: 1px solid var(--bk-border);
    border-radius: 4px;
    padding: 20px;
    cursor: pointer;
    transition: var(--bk-transition);
    margin-bottom: 20px;
}

.address_box:hover {
    border-color: var(--bk-accent);
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.address_box.address_selected {
    border: 2px solid var(--bk-primary) !important;
    background-color: #faf9f6;
}

.address_box h3 {
    font-size: 15px;
    font-weight: 600;
    font-family: var(--bk-font-sans);
    margin-bottom: 8px;
    color: var(--bk-primary);
}

.address_box address {
    font-style: normal;
    font-size: 13px;
    line-height: 1.6;
    color: var(--bk-muted);
}

.address_box .edit-button {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--bk-accent);
}

.tm-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background-color: var(--bk-primary);
    color: #ffffff;
    border-radius: var(--bk-radius);
    transition: var(--bk-transition);
}

.tm-button:hover {
    background-color: #333333;
    color: #ffffff;
}

.tm-button-small {
    padding: 7px 16px;
    font-size: 11px;
}

/* ------------------------------------------------ Adres Defteri Scoped Stilleri (Wix Palette) */

.adr-wrap { max-width: 1050px; margin: 0 auto; }
.adr-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.adr-head h2 { margin: 0; font-size: 24px; color: var(--bk-primary); font-family: var(--bk-font-serif); }
.adr-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 20px; }
.adr-card { background: #ffffff; border: 1px solid var(--bk-border); border-radius: 4px; padding: 22px; position: relative; transition: var(--bk-transition); }
.adr-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.06); border-color: var(--bk-accent); }
.adr-card.is-default { border-color: var(--bk-primary); }
.adr-card h4 { margin: 0 0 6px; font-size: 16px; font-weight: 600; color: var(--bk-primary); font-family: var(--bk-font-sans); }
.adr-card .who { color: var(--bk-muted); font-size: 13px; margin-bottom: 8px; font-weight: 500; }
.adr-card .body { color: var(--bk-muted); font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
.adr-actions { display: flex; gap: 8px; flex-wrap: wrap; border-top: 1px dashed var(--bk-border); padding-top: 14px; }

.tag { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.tag.type { background: var(--bk-bg); color: var(--bk-primary); }
.tag.def { background: #e8f5e9; color: var(--bk-success); display: block; margin-top: 4px; }
.tag.inv { background: #e3f2fd; color: #1565c0; display: block; margin-top: 4px; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 9px 18px; border-radius: var(--bk-radius); border: 0; cursor: pointer; font-size: 13px; font-weight: 600; text-decoration: none; transition: var(--bk-transition); }
.btn-primary { background: var(--bk-primary); color: #ffffff; }
.btn-primary:hover { background: #333333; color: #ffffff; }
.btn-ghost { background: var(--bk-bg); color: var(--bk-primary); border: 1px solid var(--bk-border); }
.btn-danger { background: #fbe6e6; color: var(--bk-danger); }
.btn-sm { padding: 6px 13px; font-size: 12px; }

/* ------------------------------------------------ Siparişlerim (Orders List & Tracking) */

.ord-wrap { max-width: 1050px; margin: 0 auto; }
.ord-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.ord-head h2 { margin: 0; font-size: 24px; color: var(--bk-primary); font-family: var(--bk-font-serif); }
.ord-kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; margin-bottom: 24px; }
.ord-kpi { background: #ffffff; border: 1px solid var(--bk-border); border-radius: 4px; padding: 18px; }
.ord-kpi .v { font-size: 22px; font-weight: 700; color: var(--bk-primary); }
.ord-kpi .l { color: var(--bk-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.ord-card { background: #ffffff; border: 1px solid var(--bk-border); border-radius: 4px; margin-bottom: 16px; overflow: hidden; transition: var(--bk-transition); }
.ord-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.06); }
.ord-card .top { display: flex; justify-content: space-between; gap: 14px; padding: 14px 20px; background: var(--bk-bg); border-bottom: 1px solid var(--bk-border); flex-wrap: wrap; }
.ord-card .body { padding: 18px 20px; display: flex; gap: 18px; justify-content: space-between; flex-wrap: wrap; }

.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.badge.ok { background: #e8f5e9; color: var(--bk-success); }
.badge.warn { background: #fff8e1; color: #f57f17; }
.badge.info { background: #e3f2fd; color: #1565c0; }
.badge.danger { background: #ffebee; color: var(--bk-danger); }

/* ------------------------------------------------ Güvenlik Merkezi (Security) */

.sec-wrap { max-width: 1050px; margin: 0 auto; }
.sec-grid { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; }
.sec-nav { background: #ffffff; border: 1px solid var(--bk-border); border-radius: 4px; overflow: hidden; position: sticky; top: 120px; }
.sec-nav a { display: block; padding: 13px 18px; color: var(--bk-primary); text-decoration: none; border-bottom: 1px solid var(--bk-border); font-size: 13px; font-weight: 500; transition: var(--bk-transition); }
.sec-nav a:last-child { border-bottom: 0; }
.sec-nav a:hover { background: var(--bk-bg); color: var(--bk-accent); }
.sec-nav a.active { background: var(--bk-primary); color: #ffffff; font-weight: 600; }
.sec-card { background: #ffffff; border: 1px solid var(--bk-border); border-radius: 4px; padding: 28px; margin-bottom: 24px; box-shadow: 0 4px 18px rgba(0,0,0,0.03); }
.sec-card h3 { margin: 0 0 6px; font-size: 20px; font-family: var(--bk-font-serif); color: var(--bk-primary); }

/* ------------------------------------------------ Boş Durum */

.bk-empty {
    text-align: center;
    padding: 80px 20px;
}

.bk-empty__icon {
    font-size: 48px;
    color: var(--bk-light-muted);
    margin-bottom: 16px;
}

.bk-empty__title {
    font-size: 24px;
    margin-bottom: 8px;
}

.bk-empty__desc {
    font-size: 14px;
    color: var(--bk-muted);
    margin-bottom: 24px;
}

/* ------------------------------------------------ Medya Sorguları (Responsive) */

@media (max-width: 1024px) {
    .bk-grid--4 {
        grid-template-columns: repeat(3, 1fr);
    }
    .bk-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .bk-instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .bk-header__grid {
        grid-template-columns: auto 1fr auto;
        padding: 16px 0;
    }
    .bk-logo img,
    .bk-logo__img {
        max-height: 36px;
        height: 32px;
    }
    .bk-burger-btn {
        display: block;
    }
    .bk-search-bar {
        display: none;
    }
    .bk-nav {
        display: none;
    }
    .bk-logo__text {
        font-size: 28px;
    }
    .bk-tool-label {
        display: none;
    }
    .bk-hero {
        min-height: 440px;
    }
    .bk-hero__title {
        font-size: 32px;
    }
    .bk-hero__text {
        font-size: 14px;
    }
}

/* ======================================================================
   WIX ADALENE TASARIM SİSTEMİ: ÜRÜN LİSTESİ, DETAY & ÇEKMECE SEPET
   ====================================================================== */

/* -------------------- Katalog & Sol Kenar Çubuğu (Wix Adalene) -------------------- */
.bk-pagehead--catalog {
    padding: 30px 0 20px;
    background-color: transparent;
    border-bottom: none;
    text-align: left;
}

.bk-pagehead--catalog .bk-breadcrumb {
    justify-content: flex-start;
}

.bk-catalog-wrap {
    padding: 0 0 90px;
}

.bk-catalog-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: start;
}

.bk-catalog-sidebar {
    position: sticky;
    top: 110px;
}

.bk-sidebar-widget {
    margin-bottom: 24px;
}

.bk-sidebar-widget__title {
    font-family: var(--bk-font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 18px;
}

.bk-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bk-sidebar-link {
    font-size: 14px;
    color: #555555;
    transition: var(--bk-transition);
    display: inline-block;
}

.bk-sidebar-link:hover,
.bk-sidebar-link.is-active {
    color: #b44f2b;
    font-weight: 600;
    transform: translateX(3px);
}

.bk-sidebar-divider {
    height: 1px;
    background-color: #e8e5df;
    margin: 24px 0;
}

.bk-filter-group {
    border-bottom: 1px solid #e8e5df;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.bk-filter-group__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: #111111;
    cursor: pointer;
    user-select: none;
    padding: 6px 0;
}

.bk-filter-toggle-icon {
    font-size: 14px;
    color: #b44f2b;
    transition: transform 0.2s ease;
}

.bk-filter-group.is-open .bk-filter-toggle-icon {
    transform: rotate(45deg);
}

.bk-filter-group__body {
    display: none;
    padding-top: 14px;
}

.bk-filter-group.is-open .bk-filter-group__body {
    display: block;
}

.bk-price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bk-price-input-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #dcd7ce;
    border-radius: 6px;
    background: #ffffff;
    padding: 6px 8px;
    width: 100%;
}

.bk-price-input-wrap span {
    font-size: 12px;
    color: #888888;
    margin-right: 4px;
}

.bk-price-input-wrap input {
    width: 100%;
    font-size: 13px;
    color: #111111;
}

.bk-price-sep {
    color: #888888;
}

.bk-clear-filter {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #888888;
    margin-top: 8px;
    text-decoration: underline;
}

.bk-clear-filter:hover {
    color: #b44f2b;
}

.bk-sidebar-trust {
    margin-top: 36px;
    padding: 18px;
    background: #faf8f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.bk-sidebar-trust i {
    font-size: 26px;
    color: #b44f2b;
}

.bk-sidebar-trust strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #111111;
}

.bk-sidebar-trust p {
    font-size: 11px;
    color: #777777;
    margin-top: 2px;
}

.bk-catalog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 24px;
    margin-bottom: 36px;
    border-bottom: 1px solid #e8e5df;
}

.bk-catalog-title {
    font-family: var(--bk-font-serif);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: #111111;
}

.bk-catalog-count {
    font-size: 13px;
    color: #888888;
    margin-top: 6px;
    display: block;
}

.bk-catalog-sort-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bk-catalog-sort-form label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111111;
}

.bk-sort-select {
    padding: 8px 14px;
    font-size: 13px;
    color: #111111;
    background-color: #ffffff;
    border: 1px solid #dcd7ce;
    border-radius: 6px;
    cursor: pointer;
    outline: none;
    transition: var(--bk-transition);
}

.bk-sort-select:hover,
.bk-sort-select:focus {
    border-color: #111111;
}

.bk-catalog-grid {
    gap: 32px 20px;
}

/* -------------------- Ürün Detay Sayfası (Wix Adalene) -------------------- */
.bk-pagehead--pd {
    padding: 24px 0 16px;
    background-color: transparent;
    border-bottom: none;
    text-align: left;
}

.bk-pagehead--pd .bk-breadcrumb {
    justify-content: flex-start;
}

.bk-pd-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 64px;
    align-items: start;
    padding: 10px 0 90px;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.bk-pd-gallery {
    position: sticky;
    top: 110px;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.bk-pd-details {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.bk-pd-gallery__canvas {
    position: relative;
    background-color: #ece8e1;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    user-select: none;
    -webkit-user-select: none;
}

.bk-pd-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.25s ease;
    display: block;
}

.bk-pd-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.bk-pd-gallery__canvas:hover .bk-pd-gallery__nav {
    opacity: 1;
}

.bk-pd-gallery__nav:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.bk-pd-gallery__nav--prev {
    left: 12px;
}

.bk-pd-gallery__nav--next {
    right: 12px;
}

.bk-pd-gallery__counter {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(18, 18, 18, 0.68);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 20px;
    pointer-events: none;
    z-index: 4;
}

.bk-pd-gallery__thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 8px;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.18) transparent;
}

.bk-pd-gallery__thumbs::-webkit-scrollbar {
    height: 4px;
}

.bk-pd-gallery__thumbs::-webkit-scrollbar-track {
    background: transparent;
}

.bk-pd-gallery__thumbs::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.18);
    border-radius: 4px;
}

.bk-pd-gallery__thumb-item {
    width: 76px;
    height: 95px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ece8e1;
    border: 2px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.bk-pd-gallery__thumb-item.is-active,
.bk-pd-gallery__thumb-item:hover {
    border-color: #b44f2b;
}

.bk-pd-gallery__thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bk-pd-category-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #888888;
    display: inline-block;
    margin-bottom: 10px;
}

.bk-pd-category-link:hover {
    color: #b44f2b;
}

.bk-pd-title {
    font-family: var(--bk-font-serif);
    font-size: 34px;
    font-weight: 500;
    line-height: 1.25;
    color: #111111;
    margin-bottom: 12px;
}

.bk-pd-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    font-size: 13px;
    color: #777777;
}

.bk-pd-stock-status.is-in-stock {
    color: #2e7d32;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bk-stock-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #2e7d32;
    display: inline-block;
}

.bk-pd-stock-status.is-out-of-stock {
    color: #c93b2b;
    font-weight: 600;
}

.bk-pd-price-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
}

.bk-pd-current-price {
    font-family: var(--bk-font-serif);
    font-style: italic;
    font-size: 28px;
    font-weight: 600;
    color: #b44f2b;
}

.bk-pd-old-price {
    font-size: 18px;
    color: #999999;
    text-decoration: line-through;
}

.bk-pd-summary {
    font-size: 14px;
    line-height: 1.75;
    color: #555555;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e8e5df;
}

.bk-pd-qty-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.bk-pd-qty-label {
    font-size: 13px;
    font-weight: 600;
    color: #111111;
}

.bk-qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dcd7ce;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.bk-qty-stepper__btn {
    width: 42px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #111111;
    background: #faf8f5;
    cursor: pointer;
    transition: background 0.2s ease;
}

.bk-qty-stepper__btn:hover {
    background: #ebe7e0;
}

.bk-qty-stepper__input {
    width: 50px;
    height: 44px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    border: none;
    outline: none;
    background: transparent;
}

.bk-pd-btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.bk-btn--terracotta {
    background-color: #b44f2b;
    border: 1px solid #b44f2b;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 16px 28px;
    cursor: pointer;
    transition: var(--bk-transition);
}

.bk-btn--terracotta:hover {
    background-color: #943d1d;
    border-color: #943d1d;
    color: #ffffff;
}

.bk-pd-out-box {
    padding: 16px;
    background: #fff8e1;
    color: #8d6e63;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Wix Adalene Akordeonlar */
.bk-pd-accordions {
    border-top: 1px solid #e8e5df;
    margin-bottom: 32px;
}

.bk-accordion-item {
    border-bottom: 1px solid #e8e5df;
}

.bk-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
}

.bk-accordion-title {
    font-family: var(--bk-font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #111111;
    transition: color 0.2s ease;
}

.bk-accordion-item.is-open .bk-accordion-title {
    color: #b44f2b;
}

.bk-accordion-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
}

.bk-accordion-icon::before,
.bk-accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #b44f2b;
    transition: transform 0.25s ease;
}

.bk-accordion-icon::before {
    top: 7px;
    left: 1px;
    right: 1px;
    height: 2px;
}

.bk-accordion-icon::after {
    left: 7px;
    top: 1px;
    bottom: 1px;
    width: 2px;
}

.bk-accordion-item.is-open .bk-accordion-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.bk-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.bk-accordion-item.is-open .bk-accordion-content {
    max-height: 400px;
}

.bk-accordion-inner {
    padding: 0 0 20px;
    font-size: 13px;
    line-height: 1.8;
    color: #555555;
}

.bk-accordion-inner ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 8px;
}

.bk-pd-trust-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #e8e5df;
}

.bk-pd-trust-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #666666;
}

.bk-pd-trust-row i {
    font-size: 20px;
    color: #b44f2b;
}

/* -------------------- Wix Adalene Slideout Cart Drawer -------------------- */
.bk-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 440px;
    max-width: 90vw;
    background-color: #ffffff;
    z-index: 2600;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.bk-cart-drawer.is-open {
    transform: translateX(0);
}

.bk-cart-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bk-cart-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.bk-cart-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid #e8e5df;
}

.bk-cart-drawer__title {
    font-family: var(--bk-font-serif);
    font-size: 22px;
    font-weight: 500;
    color: #111111;
}

.bk-cart-drawer__close {
    font-size: 28px;
    line-height: 1;
    color: #888888;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.bk-cart-drawer__close:hover {
    color: #111111;
}

.bk-cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 24px 28px;
}

.bk-cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bk-cart-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0ede8;
}

.bk-cart-item__thumb {
    width: 72px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    background: #ece8e1;
    flex-shrink: 0;
}

.bk-cart-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bk-cart-item__details {
    flex: 1;
}

.bk-cart-item__name {
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 4px;
    line-height: 1.35;
}

.bk-cart-item__price {
    font-family: var(--bk-font-serif);
    font-style: italic;
    font-size: 15px;
    color: #b44f2b;
    margin-bottom: 8px;
}

.bk-cart-item__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bk-cart-item__remove {
    font-size: 12px;
    color: #999999;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
}

.bk-cart-item__remove:hover {
    color: #b44f2b;
}

.bk-cart-drawer__footer {
    padding: 24px 28px;
    border-top: 1px solid #e8e5df;
    background: #faf8f5;
}

.bk-cart-drawer__subtotal {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
}

.bk-cart-drawer__subtotal span {
    font-size: 14px;
    color: #666666;
}

.bk-cart-drawer__subtotal strong {
    font-family: var(--bk-font-serif);
    font-size: 20px;
    font-weight: 600;
    color: #111111;
}

.bk-cart-drawer__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* -------------------- Responsive / Medya Sorguları -------------------- */
@media (max-width: 991px) {
    .bk-catalog-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .bk-catalog-sidebar {
        position: static;
        border-bottom: 1px solid #e8e5df;
        padding-bottom: 24px;
    }
    .bk-pd-layout {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 28px;
        padding: 0 0 60px;
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }
    .bk-pd-gallery {
        position: static;
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }
    .bk-pd-gallery__nav {
        opacity: 0.9 !important;
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .bk-pd-gallery__thumbs {
        gap: 8px;
        margin-top: 10px;
        padding: 4px 1px 6px;
    }
    .bk-pd-gallery__thumb-item {
        width: 60px;
        height: 75px;
        border-radius: 8px;
    }
    .bk-grid--4, .bk-grid--3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .bk-promo-grid {
        grid-template-columns: 1fr;
    }
    .bk-promo-card {
        min-height: 320px;
        padding: 30px;
    }
    .bk-spotlight {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }
    .bk-pillars-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .bk-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .bk-basket-grid {
        grid-template-columns: 1fr;
    }
    .bk-contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .bk-catalog-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .bk-footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .bk-footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .bk-grid--4, .bk-grid--3 {
        grid-template-columns: 1fr;
    }
    .bk-instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bk-trust-grid {
        grid-template-columns: 1fr;
    }
    .bk-catalog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ======================================================================
   WIX ADALENE (TEMPLATE 2514) BÖLÜM VE PARALLAX STİLLERİ
   ====================================================================== */

/* 1. HERO PARALLAX BÖLÜMÜ */
.bk-wix-hero {
    position: relative;
    width: 100%;
    min-height: 82vh;
    height: 82vh;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bk-wix-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.bk-wix-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 960px;
    margin: 0 auto;
}

.bk-wix-hero__title {
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    font-size: 46px;
    font-weight: 600;
    letter-spacing: 7px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 34px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.bk-wix-hero__action {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bk-wix-hero__btn {
    display: inline-block;
    padding: 16px 44px;
    border: 1.5px solid #ffffff;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.bk-wix-hero__btn:hover {
    background: #ffffff;
    color: #111111;
    border-color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* 2. BEST SELLERS / EN ÇOK SATANLAR (WIX 4-KOLON KARTLARI) */
.bk-wix-section {
    padding: 96px 0;
    background-color: #ffffff;
}

.bk-wix-bestsellers {
    background-color: #ffffff;
}

.bk-wix-head {
    text-align: center;
    margin-bottom: 48px;
}

.bk-wix-head__title {
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 5px;
    word-spacing: 10px;
    text-transform: uppercase;
    color: #111111;
}

.bk-wix-head__dash {
    color: var(--bk-accent);
    font-size: 26px;
    line-height: 1;
    margin-top: 8px;
}

.bk-wix-grid {
    display: grid;
    gap: 28px;
}

.bk-wix-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.bk-wix-product {
    display: flex;
    flex-direction: column;
}

.bk-wix-product__canvas {
    background-color: #ece8e1;
    aspect-ratio: 1 / 1.15;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 24px;
}

.bk-wix-product__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: #111111;
    color: #ffffff;
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 3;
}

.bk-wix-product__img-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.bk-wix-product__img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.bk-wix-product:hover .bk-wix-product__img-wrap img {
    transform: scale(1.05);
}

.bk-wix-product__placeholder {
    font-size: 40px;
    color: #b5b0a6;
}

.bk-wix-product__info {
    padding-top: 18px;
    text-align: center;
}

.bk-wix-product__title {
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #222222;
    display: block;
    margin-bottom: 6px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.bk-wix-product__title:hover {
    color: var(--bk-accent);
}

.bk-wix-product__price {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 20px;
    font-weight: 600;
    color: var(--bk-accent);
}

.bk-wix-center-cta {
    margin-top: 52px;
    text-align: center;
}

.bk-wix-outline-btn {
    display: inline-block;
    padding: 14px 44px;
    border: 1.5px solid #111111;
    color: #111111;
    background: transparent;
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.bk-wix-outline-btn:hover {
    background: #111111;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* 3 & 4. 2-COLUMN SPLIT PARALLAX SECTIONS */
.bk-wix-split {
    display: flex;
    width: 100%;
    min-height: 580px;
    height: 72vh;
}

.bk-wix-split--reverse {
    flex-direction: row;
}

.bk-wix-split__col {
    flex: 1;
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bk-wix-split__col--product {
    background-color: #ece8e1;
    padding: 48px;
}

.bk-wix-split-card {
    max-width: 420px;
    width: 100%;
    text-align: center;
}

.bk-wix-split-card__img-wrap {
    display: block;
    margin-bottom: 24px;
    overflow: hidden;
    text-decoration: none;
}

.bk-wix-split-card__img-wrap img {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.bk-wix-split-card:hover .bk-wix-split-card__img-wrap img {
    transform: scale(1.04);
}

.bk-wix-split-card__title {
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #111111;
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.bk-wix-split-card__title:hover {
    color: var(--bk-accent);
}

.bk-wix-split-card__price {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 22px;
    font-weight: 600;
    color: var(--bk-accent);
}

/* Split Parallax Sütunu (Gerçek Arka Plan Parallax) */
.bk-wix-split__col--parallax {
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.bk-wix-split__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    z-index: 1;
}

.bk-wix-split__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 32px;
}

.bk-wix-split__title {
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 5px;
    word-spacing: 12px;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 14px;
    text-decoration-thickness: 1.5px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
    display: inline-block;
    transition: opacity 0.25s ease, letter-spacing 0.25s ease;
}

.bk-wix-split__title:hover {
    opacity: 0.88;
    letter-spacing: 8px;
}

/* 5. 3 BRAND STORY & CRAFT CARDS */
.bk-wix-crafts {
    padding: 96px 0;
    background-color: #ffffff;
}

.bk-wix-crafts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.bk-wix-craft-card {
    position: relative;
    height: 440px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bk-wix-craft-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.44);
    transition: background 0.4s ease;
    z-index: 1;
}

.bk-wix-craft-card:hover .bk-wix-craft-card__overlay {
    background: rgba(0, 0, 0, 0.32);
}

.bk-wix-craft-card__content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 30px;
}

.bk-wix-craft-card__eyebrow {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 20px;
    color: #f7ede2;
    display: block;
    margin-bottom: 8px;
}

.bk-wix-craft-card__title {
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.bk-wix-craft-card__dash {
    color: var(--bk-accent);
    font-size: 22px;
    margin-bottom: 18px;
}

.bk-wix-craft-card__link {
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 6px;
    transition: opacity 0.2s ease;
}

.bk-wix-craft-card__link:hover {
    opacity: 0.8;
}

/* 6. INSTAGRAM SHOWCASE & 3 TRUST PILLARS */
.bk-wix-insta-section {
    background-color: #ffffff;
    overflow: hidden;
}

.bk-wix-insta-head {
    text-align: center;
    padding: 80px 0 44px;
}

.bk-wix-insta-head__title {
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 5px;
    line-height: 1.6;
    text-transform: uppercase;
    color: #111111;
}

.bk-wix-insta-head__handle {
    display: inline-block;
    margin-top: 10px;
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 20px;
    color: var(--bk-accent);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.bk-wix-insta-head__handle:hover {
    opacity: 0.8;
}

.bk-wix-insta-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
}

.bk-wix-insta-strip__item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
}

.bk-wix-insta-strip__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.bk-wix-insta-strip__hover {
    position: absolute;
    inset: 0;
    background: rgba(180, 79, 43, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bk-wix-insta-strip__item:hover .bk-wix-insta-strip__hover {
    opacity: 1;
}

.bk-wix-insta-strip__item:hover img {
    transform: scale(1.08);
}

.bk-wix-trust-pillars {
    padding: 80px 0 96px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.bk-wix-trust-pillar__dash {
    color: var(--bk-accent);
    font-size: 30px;
    line-height: 1;
    margin-bottom: 12px;
}

.bk-wix-trust-pillar__text {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 24px;
    font-weight: 600;
    color: #111111;
    letter-spacing: 0.5px;
}

/* WIX MOBİL VE TABLET UYUMLULUK */
@media (max-width: 991px) {
    .bk-wix-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .bk-wix-split {
        flex-direction: column !important;
        height: auto;
        min-height: auto;
    }
    .bk-wix-split__col {
        width: 100%;
        min-height: 420px;
    }
    .bk-wix-split__col--product {
        padding: 40px 20px;
    }
    .bk-wix-crafts-grid {
        grid-template-columns: 1fr;
    }
    .bk-wix-craft-card {
        height: 360px;
    }
    .bk-wix-insta-strip {
        grid-template-columns: repeat(3, 1fr);
    }
    .bk-wix-trust-pillars {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .bk-wix-hero__title {
        font-size: 28px;
        letter-spacing: 4px;
    }
    .bk-wix-hero {
        min-height: 60vh;
        height: 60vh;
    }
    .bk-wix-grid--4 {
        grid-template-columns: 1fr;
    }
    .bk-wix-insta-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .bk-header__socials {
        display: none;
    }
    .bk-nav {
        display: none;
    }
    .bk-burger-btn {
        display: inline-flex;
    }
}


