/* ============================================================
   Başakşehir Kumpir — Özel Tema CSS
   Renk Paleti:
   - Birincil koyu:   #1C1028 (derin mor-siyah)
   - Marka moru:      #4B2D8F
   - Vurgu kırmızı:   #C0392B
   - Sıcak turuncu:   #E8861A
   - Altın:           #F4C030
   - Açık zemin:      #FFF8F0
   - Yazı:            #2C1810
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', 'Open Sans', sans-serif;
    font-weight: 400;
    color: #2C1810;
    font-size: 14px;
    line-height: 1.6;
    background-color: #FFF8F0;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #1C1028;
    font-weight: 700;
}

.fa { font-size: 14px; }

h1 { font-size: 33px; }
h2 { font-size: 27px; }
h3 { font-size: 21px; }
h4 { font-size: 15px; }
h5 { font-size: 13px; }
h6 { font-size: 11px; }

a {
    color: #C0392B;
    transition: all 0.25s ease;
}

a:hover {
    color: #E8861A;
    text-decoration: none;
}

legend { font-size: 18px; padding: 7px 0; }
label { font-size: 13px; font-weight: 600; color: #444; }

/* ============================================================
   FORM CONTROLS
   ============================================================ */
select.form-control, textarea.form-control,
input[type="text"].form-control,
input[type="password"].form-control,
input[type="email"].form-control,
input[type="search"].form-control,
input[type="number"].form-control,
input[type="tel"].form-control {
    font-size: 13px;
    border: 1.5px solid #D4C5A9;
    border-radius: 8px;
    padding: 8px 14px;
    background: #FFFDF9;
    transition: border-color 0.2s, box-shadow 0.2s;
}

select.form-control:focus, textarea.form-control:focus,
input.form-control:focus {
    border-color: #C0392B;
    box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
    outline: none;
}

.input-group input, .input-group select { font-size: 13px; }
.input-group .input-group-addon {
    font-size: 13px;
    height: 36px;
    background-color: #4B2D8F;
    color: #fff;
    border: none;
    border-radius: 8px 0 0 8px;
}

span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg { display: inline; }
.form-group { margin-bottom: 16px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 22px;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-default {
    background: #FFF8F0;
    border: 2px solid #D4C5A9;
    color: #2C1810;
}
.btn-default:hover {
    background: #1C1028;
    color: #fff;
    border-color: #1C1028;
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, #C0392B 0%, #962d22 100%);
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(192,57,43,0.35);
}
.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(135deg, #962d22 0%, #C0392B 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192,57,43,0.45);
}

.btn-danger {
    background: linear-gradient(135deg, #C0392B 0%, #96281B 100%);
    border: none;
    color: #fff;
}
.btn-danger:hover {
    background: linear-gradient(135deg, #96281B 0%, #C0392B 100%);
    color: #fff;
    transform: translateY(-1px);
}

.btn-warning {
    background: linear-gradient(135deg, #E8861A 0%, #C46B10 100%);
    border: none;
    color: #fff;
}
.btn-warning:hover {
    background: linear-gradient(135deg, #C46B10 0%, #E8861A 100%);
    color: #fff;
}

.btn-success {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
    border: none;
    color: #fff;
}

.btn-info {
    background: linear-gradient(135deg, #4B2D8F 0%, #341e66 100%);
    border: none;
    color: #fff;
}

/* ============================================================
   NAV TOP BAR
   ============================================================ */
#top {
    background: linear-gradient(135deg, #1C1028 0%, #2D1B4E 100%);
    border-bottom: 2px solid #C0392B;
    padding: 8px 0;
    color: #D4C5A9;
    font-size: 12px;
}

#top .container { display: flex; align-items: center; justify-content: flex-end; }

#top-links .list-inline {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

#top-links .list-inline > li {
    padding: 0 6px;
    border-right: 1px solid rgba(212,197,169,0.3);
    line-height: 1.4;
}

#top-links .list-inline > li:last-child { border-right: none; }

#top-links a {
    color: #D4C5A9;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}
#top-links a:hover { color: #F4C030; }

#top-links .fa { margin-right: 4px; color: #C0392B; }

/* Sosyal medya barı (üst kısım için) */
.bsk-social-top {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D4C5A9;
    font-size: 12px;
    margin-right: auto;
}
.bsk-social-top a {
    color: #D4C5A9;
    font-size: 14px;
}
.bsk-social-top a:hover { color: #F4C030; }
.bsk-phone-top {
    color: #D4C5A9;
    font-size: 12px;
    font-weight: 600;
}
.bsk-phone-top .fa { color: #C0392B; margin-right: 4px; }

/* ============================================================
   HEADER
   ============================================================ */
header {
    background: linear-gradient(135deg, #1C1028 0%, #2D1B4E 100%);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

#logo {
    line-height: 1;
}

#logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

#logo img {
    max-height: 120px;
    width: auto;
}

#logo h1 {
    color: #fff;
    font-size: 22px;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

#logo h1 span {
    color: #C0392B;
}

/* Arama kutusu */
#search {
    margin: 0;
}

#search .input-group {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

#search input[type="text"] {
    border: none;
    background: rgba(255,255,255,0.95);
    height: 42px;
    font-size: 13px;
    border-radius: 25px 0 0 25px !important;
    padding: 0 16px;
}

#search .btn {
    background: linear-gradient(135deg, #C0392B, #962d22);
    border: none;
    color: #fff;
    height: 42px;
    padding: 0 18px;
    border-radius: 0 25px 25px 0;
    font-size: 14px;
}
#search .btn:hover {
    background: linear-gradient(135deg, #E8861A, #C46B10);
}

/* Sepet */
#cart {
    float: right;
}

#cart > .btn {
    background: linear-gradient(135deg, #C0392B, #962d22);
    border: none;
    color: #fff;
    border-radius: 25px;
    height: 42px;
    padding: 0 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(192,57,43,0.35);
}
#cart > .btn:hover {
    background: linear-gradient(135deg, #E8861A, #C46B10);
    transform: translateY(-1px);
}

#cart > .btn .fa { margin-right: 6px; }

/* ============================================================
   NAVIGATION MENU
   ============================================================ */
nav#menu {
    background: linear-gradient(135deg, #C0392B 0%, #962D22 100%);
    border: none;
    box-shadow: 0 3px 12px rgba(0,0,0,0.25);
}

nav#menu .navbar-collapse {
    padding: 0;
}

nav#menu .nav > li > a {
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s;
}

nav#menu .nav > li > a:hover,
nav#menu .nav > li.active > a,
nav#menu .nav > li > a:focus {
    background: rgba(0,0,0,0.2) !important;
    color: #F4C030 !important;
}

nav#menu .dropdown-menu {
    background: #1C1028;
    border: none;
    border-top: 3px solid #C0392B;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    padding: 8px 0;
}

nav#menu .dropdown-menu li a {
    color: #D4C5A9;
    font-size: 13px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.2s;
}
nav#menu .dropdown-menu li a:hover {
    background: rgba(192,57,43,0.2);
    color: #F4C030;
    padding-left: 28px;
}

.navbar-toggle {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
}
.navbar-toggle .icon-bar { background: #fff; }
.navbar-toggle:hover { background: rgba(255,255,255,0.25); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
#common-home #column-left + #content,
#common-home #content {
    padding-top: 0;
}

ul.breadcrumb {
    background: #fff;
    border: none;
    border-bottom: 2px solid #F0E8D5;
    border-radius: 0;
    padding: 10px 0;
    margin: 0;
    font-size: 12px;
}

ul.breadcrumb li a {
    color: #4B2D8F;
    font-weight: 600;
}

ul.breadcrumb li + li::before {
    color: #C0392B;
    content: "›";
    font-size: 16px;
    font-weight: bold;
    padding: 0 8px;
}

/* ============================================================
   CONTENT AREA
   ============================================================ */
#content {
    min-height: 450px;
    padding: 20px 0;
}

/* ============================================================
   LEFT SIDEBAR / CATEGORY MODULE
   ============================================================ */
#column-left, #column-right {
    padding: 20px 0;
}

#column-left .list-group, #column-right .list-group {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.list-group-item {
    border: none;
    border-bottom: 1px solid #F0E8D5;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #2C1810;
    padding: 12px 18px;
    transition: all 0.2s;
}

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

.list-group-item:hover {
    background: #FFF0E8;
    color: #C0392B;
    padding-left: 24px;
}

.list-group-item.active {
    background: linear-gradient(135deg, #C0392B, #962D22);
    border-color: #C0392B;
    color: #fff;
}

#column-left h4, #column-right h4 {
    background: linear-gradient(135deg, #1C1028, #2D1B4E);
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px 12px 0 0;
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ============================================================
   PRODUCT GRID CARDS
   ============================================================ */
.product-layout {
    margin-bottom: 28px;
}

.product-thumb {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #F0E8D5;
}

.product-thumb:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: #E8861A;
}

.product-thumb .image {
    position: relative;
    overflow: hidden;
    background: #F5EFE6;
    aspect-ratio: 4/3;
}

.product-thumb .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-thumb:hover .image img {
    transform: scale(1.06);
}

.product-thumb .image .btn-group {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    transition: bottom 0.3s ease;
    white-space: nowrap;
}

.product-thumb:hover .image .btn-group {
    bottom: 12px;
}

.product-thumb .image .btn-group .btn {
    border-radius: 50%;
    width: 38px;
    height: 38px;
    padding: 0;
    margin: 0 3px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.product-thumb .caption {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-thumb .caption h4 {
    font-size: 15px;
    margin: 0 0 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.product-thumb .caption h4 a {
    color: #1C1028;
    transition: color 0.2s;
}
.product-thumb .caption h4 a:hover { color: #C0392B; }

.product-thumb .caption .description {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 10px;
    flex: 1;
}

.product-thumb .caption .price {
    font-size: 18px;
    font-weight: 900;
    color: #C0392B;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 12px;
}

.product-thumb .caption .price-old {
    font-size: 13px;
    text-decoration: line-through;
    color: #aaa;
    font-weight: 400;
    margin-left: 6px;
}

.product-thumb .caption .price-new { color: #C0392B; }

/* Sticker / Badge */
.product-thumb .sticker {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #C0392B, #962D22);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(192,57,43,0.4);
    z-index: 2;
}

/* Rating stars */
.rating .fa-star { color: #F4C030; }
.rating .fa-star-o { color: #ddd; }

/* ============================================================
   PRODUCT PAGE (Detay)
   ============================================================ */
#product-product .product-info h1 {
    font-size: 28px;
    color: #1C1028;
    margin-bottom: 8px;
}

.product-info .price {
    font-size: 32px;
    font-weight: 900;
    color: #C0392B;
    font-family: 'Nunito', sans-serif;
    margin: 16px 0;
}

.product-info .price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
    font-weight: 400;
}

.product-info ul.list-unstyled li {
    padding: 6px 0;
    font-size: 13px;
    border-bottom: 1px dashed #F0E8D5;
    color: #555;
}

.product-info ul.list-unstyled li strong {
    color: #1C1028;
    font-weight: 700;
    min-width: 120px;
    display: inline-block;
}

/* Ana ürün görseli */
#product-product .thumbnails li a {
    border: 2px solid #F0E8D5;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    transition: border-color 0.2s;
}
#product-product .thumbnails li a:hover {
    border-color: #C0392B;
}

/* Sepete ekle butonu büyütülmüş */
#product-product #button-cart {
    background: linear-gradient(135deg, #C0392B, #962D22);
    border: none;
    color: #fff;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 800;
    padding: 14px 36px;
    box-shadow: 0 6px 20px rgba(192,57,43,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}
#product-product #button-cart:hover {
    background: linear-gradient(135deg, #E8861A, #C46B10);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232,134,26,0.4);
}

/* Tab paneli (ürün açıklama) */
.nav-tabs {
    border-bottom: 2px solid #F0E8D5;
}

.nav-tabs > li > a {
    color: #666;
    border-radius: 10px 10px 0 0;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 20px;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    background: #C0392B;
    color: #fff;
    border-color: #C0392B;
}

.nav-tabs > li > a:hover {
    color: #C0392B;
    background: #FFF0E8;
}

.tab-content {
    background: #fff;
    border: 1px solid #F0E8D5;
    border-top: none;
    padding: 24px;
    border-radius: 0 0 12px 12px;
    line-height: 1.8;
    color: #444;
    font-size: 14px;
}

/* ============================================================
   CATEGORY PAGE
   ============================================================ */
#product-category h2,
#product-manufacturer-info h2 {
    font-size: 26px;
    color: #1C1028;
    border-bottom: 3px solid #C0392B;
    padding-bottom: 12px;
    margin-bottom: 24px;
}

/* Sıralama araçları */
.products-header {
    background: #fff;
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: 1px solid #F0E8D5;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination > li > a,
.pagination > li > span {
    border-radius: 8px;
    margin: 0 2px;
    color: #4B2D8F;
    font-weight: 700;
    border-color: #F0E8D5;
    background: #fff;
    transition: all 0.2s;
}

.pagination > li > a:hover {
    background: #C0392B;
    color: #fff;
    border-color: #C0392B;
}

.pagination > .active > a,
.pagination > .active > span {
    background: linear-gradient(135deg, #C0392B, #962D22);
    border-color: #C0392B;
    color: #fff;
}

/* ============================================================
   ALERTS
   ============================================================ */
.alert {
    border-radius: 12px;
    border: none;
    font-size: 13px;
    font-weight: 600;
}

.alert-success {
    background: linear-gradient(135deg, #d5f5e3, #a9dfbf);
    color: #1e8449;
}

.alert-danger, .alert-error {
    background: linear-gradient(135deg, #fadbd8, #f1948a);
    color: #922b21;
}

.alert-warning {
    background: linear-gradient(135deg, #fdebd0, #f8c471);
    color: #784212;
}

.alert-info {
    background: linear-gradient(135deg, #d6eaf8, #85c1e9);
    color: #1a5276;
}

/* ============================================================
   CART / CHECKOUT
   ============================================================ */
.cart-total strong {
    color: #C0392B;
    font-size: 18px;
    font-weight: 900;
}

.table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.table > thead > tr > th {
    background: linear-gradient(135deg, #1C1028, #2D1B4E);
    color: #D4C5A9;
    border: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 16px;
}

.table > tbody > tr > td {
    border-color: #F0E8D5;
    padding: 12px 16px;
    vertical-align: middle;
    font-size: 13px;
}

.table > tbody > tr:hover > td {
    background: #FFF8F0;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: linear-gradient(135deg, #1C1028 0%, #0F0A1A 100%);
    color: #D4C5A9;
    padding: 50px 0 0;
    margin-top: 50px;
    border-top: 4px solid #C0392B;
}

footer h5 {
    color: #F4C030;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212,197,169,0.2);
}

footer ul.list-unstyled li {
    margin-bottom: 8px;
}

footer ul.list-unstyled li a {
    color: #B0A090;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

footer ul.list-unstyled li a:hover {
    color: #F4C030;
    padding-left: 6px;
}

footer hr {
    border-color: rgba(212,197,169,0.15);
    margin: 30px 0 20px;
}

footer p {
    color: #7A6A5A;
    font-size: 12px;
    margin-bottom: 20px;
    text-align: center;
}

/* Footer brand area */
.footer-brand {
    margin-bottom: 24px;
}

.footer-brand h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 8px;
}

.footer-brand h3 span {
    color: #C0392B;
}

.footer-brand p {
    color: #B0A090;
    font-size: 13px;
    text-align: left;
    margin: 0;
    line-height: 1.7;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    color: #D4C5A9;
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.25s;
    font-size: 16px;
    text-decoration: none;
}

.footer-social a:hover {
    background: #C0392B;
    color: #fff;
    transform: translateY(-2px);
}

.footer-copyright {
    background: rgba(0,0,0,0.3);
    padding: 16px 0;
    margin-top: 30px;
}

.footer-copyright p {
    margin: 0;
    font-size: 12px;
    color: #7A6A5A;
}

/* ============================================================
   SABİT İLETİŞİM BUTONLARI
   ============================================================ */

/* ---- MOBİL: Alt sabit bar ---- */
.bsk-contact-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    background: #fff;
    box-shadow: 0 -3px 20px rgba(0,0,0,0.18);
    border-top: 2px solid #F0E8D5;
}

.bsk-cta-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 6px 8px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    gap: 4px;
    transition: all 0.2s;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border-right: 1px solid #F0E8D5;
}
.bsk-cta-btn:last-child { border-right: none; }

.bsk-cta-btn i {
    font-size: 22px;
    display: block;
}

/* Ara butonu */
.bsk-cta-call {
    color: #C0392B;
    background: #fff;
}
.bsk-cta-call:hover, .bsk-cta-call:active {
    background: #C0392B;
    color: #fff;
    text-decoration: none;
}

/* WhatsApp butonu */
.bsk-cta-wp {
    color: #25D366;
    background: #fff;
}
.bsk-cta-wp:hover, .bsk-cta-wp:active {
    background: #25D366;
    color: #fff;
    text-decoration: none;
}

/* Yol Tarifi butonu */
.bsk-cta-map {
    color: #4285F4;
    background: #fff;
}
.bsk-cta-map:hover, .bsk-cta-map:active {
    background: #4285F4;
    color: #fff;
    text-decoration: none;
}

/* Mobilde footer'ın üstüne boşluk bırak (çubuğun altına gizlenmemesi için) */
@media (max-width: 767px) {
    body { padding-bottom: 66px; }
    .footer-copyright { margin-bottom: 0; }
}

/* ---- DESKTOP & TABLET: Sağ floating butonlar ---- */
.bsk-contact-floating {
    position: fixed;
    right: 20px;
    bottom: 40px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bsk-fab {
    display: flex;
    align-items: center;
    gap: 0;
    border-radius: 50px;
    padding: 13px 15px;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(0,0,0,0.22);
    transition: all 0.3s ease;
    overflow: hidden;
    max-width: 52px; /* Sadece ikon görünür */
    white-space: nowrap;
}

.bsk-fab:hover {
    max-width: 220px; /* Hover'da label açılır */
    padding: 13px 20px;
    text-decoration: none;
}

.bsk-fab-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-left: 10px;
    opacity: 0;
    transition: opacity 0.2s 0.1s;
    white-space: nowrap;
}
.bsk-fab:hover .bsk-fab-label { opacity: 1; }

/* Ara FAB */
.bsk-fab-call {
    background: linear-gradient(135deg, #C0392B, #962D22);
    color: #fff;
}
.bsk-fab-call:hover { color: #fff; box-shadow: 0 6px 25px rgba(192,57,43,0.5); }

/* WhatsApp FAB */
.bsk-fab-wp {
    background: linear-gradient(135deg, #25D366, #1DA851);
    color: #fff;
}
.bsk-fab-wp:hover { color: #fff; box-shadow: 0 6px 25px rgba(37,211,102,0.45); }

/* Yol Tarifi FAB */
.bsk-fab-map {
    background: linear-gradient(135deg, #4285F4, #1A6EE0);
    color: #fff;
}
.bsk-fab-map:hover { color: #fff; box-shadow: 0 6px 25px rgba(66,133,244,0.45); }

/* ============================================================
   VIDEO BANNER HERO
   ============================================================ */

/* Ana kapsayıcı */
.bsk-video-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 520px;
    max-height: 800px;
    overflow: hidden;
    background: #0D0810; /* video yüklenene kadar koyu arka plan */
}

/* YouTube iframe tam ekran arka plan */
.bsk-video-bg {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 110%;
    height: 120%;
    pointer-events: none;
    z-index: 0;
}

.bsk-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Video 16:9 oranını korurken ekranı tamamen kaplar */
    width: 177.78vh;
    height: 100vh;
    min-width: 115%;
    min-height: 115%;
}

/* Karartma katmanı */
.bsk-video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        135deg,
        rgba(12, 6, 20, 0.78) 0%,
        rgba(28, 16, 40, 0.65) 50%,
        rgba(12, 6, 20, 0.72) 100%
    );
    z-index: 1;
}

/* İçerik (metin + butonlar) */
.bsk-video-content {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 60px 0 80px;
}

/* Hero başlık */
.video-hero-title {
    color: #fff;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 3px 30px rgba(0,0,0,0.5);
    font-family: 'Playfair Display', serif;
    font-weight: 800;
}
.video-hero-title span {
    color: #C0392B;
}

/* Slogan */
.video-hero-slogan {
    color: #F4C030;
    font-size: 19px;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    margin-bottom: 18px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* Açıklama paragrafı */
.video-hero-desc {
    color: #D4C5A9;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

/* Buton grubu */
.video-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

/* Menü butonu */
.btn-hero {
    background: linear-gradient(135deg, #C0392B, #962D22);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 25px rgba(192,57,43,0.55);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
}
.btn-hero:hover {
    background: linear-gradient(135deg, #E8861A, #C46B10);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(232,134,26,0.5);
    color: #fff;
    text-decoration: none;
}

/* YouTube izle butonu */
.btn-hero-yt {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
    backdrop-filter: blur(4px);
}
.btn-hero-yt:hover {
    border-color: #F4C030;
    color: #F4C030;
    background: rgba(244,192,48,0.1);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Scroll aşağı oku */
.bsk-scroll-down {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.6);
    font-size: 22px;
    text-decoration: none;
    animation: bsk-bounce 2s infinite;
    display: block;
}
.bsk-scroll-down:hover {
    color: #F4C030;
    text-decoration: none;
}
@keyframes bsk-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* Hero badge (varolan stil override) */
.bsk-video-content .bsk-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #C0392B, #E8861A);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}

/* Mobilde (xs) video yerine gradient arka plan */
@media (max-width: 767px) {
    .bsk-video-banner {
        height: auto;
        min-height: 520px;
        background: linear-gradient(135deg, #0D0810 0%, #1C1028 40%, #2D1B4E 70%, #0D0810 100%);
    }
    /* .bsk-video-bg hidden-xs zaten gizli */
    .bsk-video-overlay {
        background: rgba(10, 5, 18, 0.45);
    }
    .bsk-video-content {
        position: relative;
        padding: 50px 0 60px;
    }
    .video-hero-title {
        font-size: 32px;
        text-align: center;
    }
    .video-hero-slogan {
        font-size: 15px;
        text-align: center;
    }
    .video-hero-desc {
        font-size: 13px;
        text-align: center;
        max-width: 100%;
    }
    .video-hero-btns {
        justify-content: center;
    }
    .btn-hero, .btn-hero-yt {
        padding: 12px 22px;
        font-size: 14px;
    }
    .bsk-video-content .bsk-hero-badge {
        display: block;
        text-align: center;
        width: fit-content;
        margin: 0 auto 16px;
    }
}

/* Tablet (768-991) */
@media (min-width: 768px) and (max-width: 991px) {
    .bsk-video-banner {
        height: 70vh;
        min-height: 420px;
    }
    .video-hero-title { font-size: 38px; }
    .video-hero-slogan { font-size: 16px; }
    .bsk-video-content { padding: 50px 0 70px; }
}

/* Çok geniş ekran */
@media (min-width: 1400px) {
    .bsk-video-banner { max-height: 900px; }
    .video-hero-title { font-size: 64px; }
}



/* Özellik ikonları */
.bsk-features {
    background: linear-gradient(135deg, #1C1028, #2D1B4E);
    padding: 20px 0;
    border-bottom: 3px solid #C0392B;
}

.bsk-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #D4C5A9;
    justify-content: center;
    padding: 6px 0;
}

.bsk-feature-item .fa {
    color: #C0392B;
    font-size: 22px;
    width: 30px;
    text-align: center;
}

.bsk-feature-item span {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}

/* ============================================================
   KATEGORİ KARTLARI (Ana sayfa)
   ============================================================ */
.bsk-section {
    padding: 50px 0;
}

.bsk-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.bsk-section-title h2 {
    font-size: 36px;
    color: #1C1028;
    margin-bottom: 12px;
}

.bsk-section-title h2 span {
    color: #C0392B;
}

.bsk-section-title p {
    color: #888;
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.bsk-section-title .divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #C0392B, #E8861A);
    margin: 16px auto 20px;
    border-radius: 3px;
}

.bsk-category-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    transition: all 0.35s ease;
    height: 100%;
    border: 2px solid transparent;
    display: block;
    text-decoration: none;
    margin-bottom: 24px;
}

.bsk-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.18);
    border-color: #C0392B;
    text-decoration: none;
}

.bsk-category-card .cat-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #F5EFE6, #EDE0C8);
}

.bsk-category-card .cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bsk-category-card:hover .cat-img img {
    transform: scale(1.08);
}

.bsk-category-card .cat-img .cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(28,16,40,0.7) 0%, transparent 60%);
}

.bsk-category-card .cat-img .cat-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #C0392B, #962D22);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(192,57,43,0.4);
}

.bsk-category-card .cat-body {
    padding: 18px;
}

.bsk-category-card .cat-body h3 {
    font-size: 17px;
    color: #1C1028;
    margin: 0 0 6px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    transition: color 0.2s;
}

.bsk-category-card:hover .cat-body h3 {
    color: #C0392B;
}

.bsk-category-card .cat-body p {
    font-size: 12px;
    color: #999;
    margin: 0;
    line-height: 1.5;
}

/* Cat icon (no-image fallback) */
.bsk-category-card .cat-img.no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1C1028, #2D1B4E);
}

.bsk-category-card .cat-img.no-img .cat-fa {
    font-size: 56px;
    color: rgba(255,255,255,0.2);
}

/* ============================================================
   HAKKIMIZDA SECTION (Ana sayfa)
   ============================================================ */
.bsk-about {
    background: linear-gradient(135deg, #1C1028 0%, #2D1B4E 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.bsk-about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(192,57,43,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.bsk-about .about-text {
    color: #D4C5A9;
}

.bsk-about .about-text h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 16px;
}

.bsk-about .about-text h2 span {
    color: #C0392B;
}

.bsk-about .about-text .slogan {
    color: #F4C030;
    font-style: italic;
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.bsk-about .about-text p {
    color: #B0A090;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.bsk-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.bsk-feature-box .icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: linear-gradient(135deg, #C0392B, #962D22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(192,57,43,0.35);
}

.bsk-feature-box .text h4 {
    color: #fff;
    font-size: 15px;
    margin: 0 0 4px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.bsk-feature-box .text p {
    color: #999;
    font-size: 12px;
    margin: 0;
}

.bsk-about .about-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    width: 100%;
    object-fit: cover;
}

/* ============================================================
   SLIDESHOW / BANNER
   ============================================================ */
#content .carousel-inner img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

#slideshow0 .carousel-caption h3 {
    font-size: 28px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ============================================================
   WELLS & PANELS
   ============================================================ */
.well {
    background: #fff;
    border: 1px solid #F0E8D5;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.panel {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.panel-heading {
    background: linear-gradient(135deg, #1C1028, #2D1B4E);
    color: #fff;
    border: none;
    padding: 14px 20px;
}

.panel-heading h1, .panel-heading h2, .panel-heading h3,
.panel-heading h4, .panel-heading h5, .panel-heading h6 {
    color: #fff;
    margin: 0;
    font-size: 16px;
}

.panel-body {
    padding: 20px;
}

/* ============================================================
   BADGES & LABELS
   ============================================================ */
.badge {
    background: #C0392B;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
}

.label-default { background: #1C1028; }
.label-primary { background: #4B2D8F; }
.label-success { background: #27ae60; }
.label-danger { background: #C0392B; }
.label-warning { background: #E8861A; }
.label-info { background: #4B2D8F; }

/* ============================================================
   QUANTITY SELECTOR
   ============================================================ */
.input-group-quantity { max-width: 130px; }

.input-group .form-control.quantity {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-header {
    background: linear-gradient(135deg, #1C1028, #2D1B4E);
    color: #fff;
    border-radius: 12px 12px 0 0;
}

.modal-header .modal-title { color: #fff; font-size: 18px; }
.modal-header .close { color: #fff; opacity: 0.7; }
.modal-header .close:hover { opacity: 1; }

.modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-footer {
    background: #FFF8F0;
    border-top: 1px solid #F0E8D5;
    border-radius: 0 0 12px 12px;
}

/* ============================================================
   MOBİL HEADER — KOMPAKT TEK SATIR
   ============================================================ */

/* Header genel - mobilde çok ince */
@media (max-width: 767px) {
    header {
        padding: 6px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
}

/* Mobil ana satır: Logo | sağ aksiyonlar */
.bsk-mobile-header { display: block; }

.bsk-mobile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 4px 0;
}

/* Logo */
.bsk-mob-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.bsk-mob-logo img {
    max-height: 56px;
    width: auto;
    display: block;
}

/* Sağ aksiyon butonları (arama, hesap, sepet) */
.bsk-mob-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

/* İkon buton (arama, hesap) */
.bsk-mob-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    flex-shrink: 0;
    padding: 0;
}
.bsk-mob-icon-btn:hover,
.bsk-mob-icon-btn:focus {
    background: rgba(192,57,43,0.6);
    color: #fff;
    text-decoration: none;
    outline: none;
}

/* Sepet widget - kompakt */
.bsk-mob-cart-wrap #cart > .btn {
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    height: 36px;
    line-height: 1;
}

/* Açılır arama çubuğu */
.bsk-mobile-search-bar {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
    padding: 0;
}
.bsk-mobile-search-bar.open {
    max-height: 70px;
    opacity: 1;
    padding: 8px 0 4px;
}
.bsk-mobile-search-bar #search input[type="text"] {
    height: 38px;
    font-size: 13px;
}
.bsk-mobile-search-bar #search .btn {
    height: 38px;
}

/* ============================================================
   HAMBURGER MENÜ STİLLER
   ============================================================ */
nav#menu {
    background: linear-gradient(135deg, #C0392B 0%, #922B21 100%);
    border: none;
    border-radius: 0;
    margin-bottom: 0;
}

/* Hamburger toggle butonu */
nav#menu .navbar-toggle {
    background: rgba(255,255,255,0.15) !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    margin: 8px 0 !important;
}
nav#menu .navbar-toggle:hover,
nav#menu .navbar-toggle:focus {
    background: rgba(255,255,255,0.25) !important;
}
nav#menu .navbar-toggle .fa-bars {
    color: #fff !important;
    font-size: 18px !important;
}

/* Mobilde açılan menü listesi */
nav#menu .navbar-collapse {
    background: linear-gradient(180deg, #C0392B 0%, #922B21 100%);
    border-top: 1px solid rgba(255,255,255,0.15);
    max-height: 70vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

nav#menu .navbar-collapse .nav > li > a {
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
nav#menu .navbar-collapse .nav > li > a:hover,
nav#menu .navbar-collapse .nav > li > a:focus {
    background: rgba(255,255,255,0.15) !important;
    color: #F4C030 !important;
}

nav#menu .navbar-brand {
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 0;
    line-height: 22px;
}

/* Dropdown mobil */
@media (max-width: 767px) {
    nav#menu .dropdown-menu {
        background: rgba(0,0,0,0.25);
        border: none;
        box-shadow: none;
        position: static !important;
        float: none !important;
        width: 100% !important;
    }
    nav#menu .dropdown-menu a {
        color: rgba(255,255,255,0.85) !important;
        font-size: 13px;
        padding: 10px 28px;
    }
    nav#menu .dropdown-menu a:hover {
        background: rgba(255,255,255,0.1) !important;
        color: #F4C030 !important;
    }
    nav#menu .dropdown-inner { display: block; }
    nav#menu .dropdown-inner ul { display: block; float: none; width: 100%; }
}

/* ============================================================
   RESPONSIVE — TABLET (768px - 991px)
   ============================================================ */
@media (max-width: 991px) {
    .bsk-hero h1 { font-size: 32px; }
    .bsk-hero { min-height: auto; padding: 50px 0; }
    .bsk-hero-image { margin-top: 24px; }
}

/* ============================================================
   RESPONSIVE — MOBİL (max 767px)
   ============================================================ */
@media (max-width: 767px) {

    body { font-size: 14px; padding-bottom: 62px; }

    /* Contact bar alt boşluk */
    .footer-copyright { margin-bottom: 0; }

    /* Hero section */
    .bsk-video-banner { min-height: 460px; }
    .video-hero-title { font-size: 28px; text-align: center; }
    .video-hero-slogan { font-size: 14px; text-align: center; }
    .video-hero-desc { font-size: 13px; text-align: center; max-width: 100%; }
    .video-hero-btns { justify-content: center; }
    .btn-hero, .btn-hero-yt {
        padding: 11px 18px;
        font-size: 13px;
    }
    .bsk-video-content .bsk-hero-badge { display: block; text-align: center; width: fit-content; margin: 0 auto 14px; }

    /* Features bar */
    .bsk-features { padding: 14px 0; }
    .bsk-feature-item { padding: 10px 6px; font-size: 11px; }
    .bsk-feature-item i { font-size: 16px; margin-bottom: 3px; }

    /* Section titles */
    .bsk-section { padding: 28px 0; }
    .bsk-section-title h2 { font-size: 22px; }
    .bsk-section-title p { font-size: 13px; }

    /* Kategori kartları */
    .bsk-category-card { margin-bottom: 14px; }
    .cat-img { height: 120px; }
    .cat-body { padding: 10px; }
    .cat-body h3 { font-size: 13px; }
    .cat-body p { font-size: 11px; }

    /* Ürün kartları */
    .product-layout { margin-bottom: 14px; }
    .product-thumb { border-radius: 10px; }
    .product-thumb .caption { padding: 8px 10px; }
    .product-thumb .caption h4 { font-size: 12px; }
    .product-thumb .caption .price { font-size: 15px; }
    .product-thumb .caption .btn { font-size: 11px; padding: 7px 10px; }
    .product-thumb .image img { height: 130px; object-fit: cover; }

    /* About */
    .bsk-about { padding: 28px 0; }
    .bsk-about .about-text h2 { font-size: 22px; text-align: center; }
    .bsk-about .about-text .bsk-hero-badge { display: block; text-align: center; }
    .bsk-feature-box { margin-bottom: 12px; }

    /* Footer */
    footer { padding: 28px 0 16px; }
    footer h5 { font-size: 13px; margin-top: 18px; }
    footer p { font-size: 12px; }
    .footer-social a { font-size: 20px; }
    .footer-copyright p { text-align: center !important; font-size: 11px; }

    /* Breadcrumb */
    .breadcrumb { font-size: 12px; padding: 8px 10px; }

    /* Butonlar */
    .btn-primary, .btn-danger { font-size: 13px; }

    /* Arama */
    #search .btn { border-radius: 0 20px 20px 0 !important; }
    #search input { border-radius: 20px 0 0 20px !important; font-size: 13px; }

    /* Kategori sayfası */
    #product-category .product-layout { margin-bottom: 12px; }
    #product-category h2 { font-size: 20px; }

    /* Ürün sayfası */
    #product-product h1 { font-size: 20px; }

    /* Sayfalama */
    .pagination { font-size: 13px; }

    /* ---- İLETİŞİM ÇUBUĞU: YAN YANA TEK SATIR ---- */
    .bsk-contact-mobile {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: #fff;
        box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
        border-top: 2px solid #F0E8D5;
        height: 58px;
    }

    .bsk-cta-btn {
        flex: 1 1 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 6px 4px;
        text-decoration: none;
        font-size: 10px;
        font-weight: 800;
        gap: 3px;
        letter-spacing: 0.3px;
        text-transform: uppercase;
        border-right: 1px solid #F0E8D5;
    }
    .bsk-cta-btn:last-child { border-right: none; }
    .bsk-cta-btn i { font-size: 20px; display: block; }
    .bsk-cta-btn span { display: block; line-height: 1; }
}

/* ============================================================
   RESPONSIVE — KÜÇÜK MOBİL (max 480px)
   ============================================================ */
@media (max-width: 480px) {
    .video-hero-title { font-size: 24px; }
    .product-thumb .caption .price { font-size: 14px; }
    .product-thumb .image img { height: 110px; }
    .bsk-section-title h2 { font-size: 20px; }
    .bsk-mob-logo img { max-height: 48px; }

    .product-layout.col-xs-6 { padding: 0 4px; }
    .product-thumb .caption { padding: 7px; }
    .product-thumb .caption h4 { font-size: 11px; }
    .product-thumb .caption p.description { display: none; }
    .product-thumb .caption .price { font-size: 13px; }
    .product-thumb .caption .btn { font-size: 10px; padding: 6px 5px; }
}
