
/* ═══════════════════════════════════════════════════
   Beyazsu Voc Elements - Frontend Styles
   ═══════════════════════════════════════════════════ */

.bvoc-slider *, .bvoc-slider *::before, .bvoc-slider *::after,
.bvoc-about-section *, .bvoc-about-section *::before, .bvoc-about-section *::after,
.bvoc-testi-section *, .bvoc-testi-section *::before, .bvoc-testi-section *::after,
.bvoc-blog-section  *, .bvoc-blog-section  *::before, .bvoc-blog-section  *::after {
    box-sizing: border-box;
}

@keyframes bvoc-spin         { to { transform: rotate(360deg); } }
@keyframes bvoc-counter-spin { to { transform: translate(-50%,-50%) rotate(-360deg); } }
@keyframes bvoc-marquee      { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SLIDER ─── */
.bvoc-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
    background: #111;
    color: #fff;
    font-family: 'Forum', serif;
}
.bvoc-slider.is-auto-height {
    height: auto;
    min-height: 0;
}
.bvoc-slider.is-auto-height .bvoc-slide {
    position: relative;
    inset: auto;
}
.bvoc-slider.is-auto-height .bvoc-slide:not(.active) {
    display: none;
}
.bvoc-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 55% 45%;
    opacity: 0;
    transition: opacity .8s ease;
    pointer-events: none;
}
.bvoc-slide.active { opacity: 1; pointer-events: auto; }

.bvoc-slide-img { position: relative; overflow: hidden; }
.bvoc-slide-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transform: scale(1.06);
    transition: transform 6s ease;
}
.bvoc-slide.active .bvoc-slide-img img { transform: scale(1); }

.bvoc-slide-img-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.35;
    pointer-events: none;
    z-index: 1;
}
.bvoc-slide-badge {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 140px; height: 140px; z-index: 2;
}
.bvoc-badge-ring {
    width: 140px; height: 140px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.7);
    position: relative;
    animation: bvoc-spin 14s linear infinite;
}
.bvoc-badge-ring svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.bvoc-badge-core {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #FF6A00, #FF8C1A);
    border-radius: 50%;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: bvoc-counter-spin 14s linear infinite;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #fff;
    box-shadow: 0 0 20px rgba(255,106,0,.5);
}

.bvoc-slide-content {
    background: #111; position: relative;
    display: flex; flex-direction: column; justify-content: center;
    padding: 60px 56px; overflow: hidden;
}
.bvoc-slide-watermark {
    position: absolute; right: -20px; top: 50%;
    transform: translateY(-50%);
    font-size: clamp(60px, 9vw, 110px);
    font-weight: 400;
    color: rgba(255,255,255,.04);
    line-height: 1; pointer-events: none;
    white-space: nowrap; writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 4px; text-transform: uppercase;
}
.bvoc-slide-tag {
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: #FF6A00; margin-bottom: 18px;
    display: flex; align-items: center; gap: 10px;
}
.bvoc-slide-tag::before {
    content: ''; width: 32px; height: 2px;
    background: #FF6A00; display: inline-block;
}
.bvoc-slide-title {
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 400; line-height: 1;
    text-transform: uppercase; letter-spacing: -1px;
    margin: 0 0 22px; color: #fff;
}
.bvoc-slide-desc {
    font-size: 15px; color: #aaa;
    line-height: 1.7; max-width: 380px;
    margin: 0 0 36px;
}
.bvoc-btn-order {
    display: inline-flex; align-items: center; gap: 10px;
    background: #3DB834; color: #fff;
    border: none; padding: 14px 30px;
    font-size: 13px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    border-radius: 4px; cursor: pointer;
    width: fit-content; text-decoration: none;
    transition: background .2s, transform .2s;
}
.bvoc-btn-order:hover { background: #2ea028; transform: translateX(4px); color: #fff; }
.bvoc-btn-order i { font-size: 11px; }

.bvoc-slider-dots {
    position: absolute; bottom: 28px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 10;
}
.bvoc-dot {
    width: 10px; height: 10px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,.5);
    background: transparent; cursor: pointer; padding: 0;
    transition: background .3s, border-color .3s, transform .3s;
}
.bvoc-dot.active { background: #FF6A00; border-color: #FF6A00; transform: scale(1.3); }

.bvoc-slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; cursor: pointer;
    transition: background .2s, border-color .2s;
}
.bvoc-slider-arrow:hover { background: #FF6A00; border-color: #FF6A00; }
.bvoc-slider-arrow.prev { left: 20px; }
.bvoc-slider-arrow.next { right: 20px; }

.bvoc-slider-progress {
    position: absolute; bottom: 0; left: 0;
    height: 3px; background: #FF6A00;
    width: 0%; z-index: 10;
    transition: width linear;
}

/* ─── ABOUT ─── */
.bvoc-about-section {
    position: relative; background: #f2ede8;
    overflow: hidden; padding: 80px 40px;
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    font-family: 'Forum', serif;
    color: #111;
}
.bvoc-about-watermark {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: center;
    pointer-events: none; overflow: hidden;
}
.bvoc-about-watermark span {
    font-size: clamp(48px, 7vw, 90px);
    font-weight: 400; color: rgba(0,0,0,.05);
    text-transform: uppercase; letter-spacing: 6px;
    line-height: 1.15; white-space: nowrap; padding-left: 20px;
}
.bvoc-about-deco {
    position: absolute; opacity: .12; color: #333;
    font-size: 80px; pointer-events: none;
}
.bvoc-about-deco.top-left  { top: 20px; left: 260px; }
.bvoc-about-deco.bot-right { bottom: 20px; right: 60px; font-size: 90px; }

.bvoc-about-img-wrap {
    position: relative; z-index: 2;
    display: flex; align-items: flex-end; justify-content: center;
}
.bvoc-about-img-wrap img {
    width: 100%; max-width: 420px; object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.18));
    transition: transform .4s ease;
}
.bvoc-about-img-wrap img:hover { transform: translateY(-8px); }

.bvoc-about-text {
    position: relative; z-index: 2;
    text-align: center; padding: 0 30px;
}
.bvoc-about-tag {
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: #FF6A00; margin-bottom: 18px; display: block;
}
.bvoc-about-title {
    font-size: clamp(26px, 3.5vw, 46px);
    font-weight: 400; line-height: 1.1;
    text-transform: uppercase; letter-spacing: -0.5px;
    color: #111; margin: 0 0 22px;
}
.bvoc-about-desc {
    font-size: 14px; color: #666;
    line-height: 1.8; max-width: 380px;
    margin: 0 auto 32px;
}
.bvoc-btn-about {
    display: inline-flex; align-items: center; gap: 10px;
    background: #3DB834; color: #fff;
    border: none; padding: 14px 28px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    border-radius: 4px; cursor: pointer; text-decoration: none;
    transition: background .2s, transform .2s;
}
.bvoc-btn-about:hover { background: #2ea028; transform: translateY(-2px); color: #fff; }
.bvoc-btn-about i { font-size: 10px; }

.bvoc-about-badge-wrap {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
}
.bvoc-about-badge { width: 160px; height: 160px; }
.bvoc-about-badge-ring {
    width: 160px; height: 160px; border-radius: 50%;
    border: 2px solid #ccc; position: relative;
    animation: bvoc-spin 16s linear infinite;
}
.bvoc-about-badge-ring svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.bvoc-about-badge-core {
    width: 74px; height: 74px;
    background: linear-gradient(135deg, #FF6A00, #FF8C1A);
    border-radius: 50%;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: bvoc-counter-spin 16s linear infinite;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: #fff;
    box-shadow: 0 0 24px rgba(255,106,0,.35);
}

/* ─── TESTIMONIALS ─── */
.bvoc-testi-section {
    position: relative; background: #f2ede8;
    padding: 80px 40px 100px; overflow-x: clip;
    font-family: 'Forum', serif; color: #111;
}
.bvoc-testi-marquee {
    position: absolute; top: 0; left: 0;
    width: 100%; overflow: hidden;
    white-space: nowrap; pointer-events: none;
}
.bvoc-testi-marquee-inner {
    display: inline-flex;
    animation: bvoc-marquee 22s linear infinite;
}
.bvoc-testi-marquee-inner span {
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 400; color: rgba(0,0,0,.06);
    text-transform: uppercase; letter-spacing: 6px;
    padding-right: 60px;
}
.bvoc-testi-deco {
    position: absolute; opacity: .1; color: #333; pointer-events: none;
}
.bvoc-testi-deco.top-left  { top: 80px;    left: 280px; font-size: 80px; }
.bvoc-testi-deco.bot-right { bottom: 30px; right: 80px; font-size: 100px; }

.bvoc-testi-body {
    display: flex;
    gap: 56px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.bvoc-testi-left {
    flex: 0 0 260px;
    position: sticky;
    top: 24px;
    align-self: flex-start;
}

.bvoc-testi-right {
    flex: 1;
    min-width: 0;
}

.bvoc-testi-header {
    position: relative; z-index: 2;
    text-align: left; margin-bottom: 28px;
}
.bvoc-testi-header h2 {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 400; text-transform: uppercase;
    letter-spacing: -0.5px; color: #111;
    margin: 0 0 14px;
}
.bvoc-testi-header p {
    font-size: 14px; color: #888;
    max-width: 420px; margin: 0 auto;
    line-height: 1.7;
}
.bvoc-testi-counter {
    display: inline-flex; align-items: center; gap: 14px;
    background: #fff;
    border-radius: 50px; padding: 10px 24px 10px 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.bvoc-testi-counter-num {
    background: linear-gradient(135deg, #FF6A00, #FF8C1A);
    color: #fff; font-size: 22px; font-weight: 400;
    border-radius: 50px; padding: 8px 18px;
    line-height: 1; letter-spacing: -0.5px;
}
.bvoc-testi-counter-label {
    font-size: 13px; font-weight: 700; color: #111;
    text-transform: uppercase; letter-spacing: 1px;
    line-height: 1.3; text-align: left;
}
.bvoc-testi-counter-label small {
    display: block; font-size: 11px; font-weight: 500;
    color: #aaa; text-transform: none; letter-spacing: 0;
}
.bvoc-testi-stars-row { display: flex; gap: 2px; color: #FF6A00; font-size: 13px; }

.bvoc-testi-badge {
    position: absolute; top: 60px; right: 80px;
    z-index: 2; width: 130px; height: 130px;
}
.bvoc-testi-badge-ring {
    width: 130px; height: 130px; border-radius: 50%;
    border: 2px solid #3DB834; position: relative;
    animation: bvoc-spin 16s linear infinite;
}
.bvoc-testi-badge-ring svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.bvoc-testi-badge-core {
    width: 60px; height: 60px; background: #3DB834;
    border-radius: 50%;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: bvoc-counter-spin 16s linear infinite;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #fff;
}

.bvoc-testi-track-wrap {
    position: relative;
    z-index: 2;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    max-width: 100%;
}
.bvoc-testi-track {
    display: flex;
    gap: 24px;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
    will-change: transform;
    max-width: 100%;
} 
.bvoc-testi-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    flex: 0 0 calc((100% - (var(--bvoc-visible, 4) - 1) * 24px) / var(--bvoc-visible, 4));
    width:     calc((100% - (var(--bvoc-visible, 4) - 1) * 24px) / var(--bvoc-visible, 4));
    min-width: 260px;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .3s, box-shadow .3s;
} 
.bvoc-testi-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.bvoc-testi-stars { color: #FF6A00; font-size: 14px; letter-spacing: 2px; }
.bvoc-testi-text { font-size: 14px; color: #555; line-height: 1.8; flex: 1; margin: 0; }
.bvoc-testi-author { display: flex; align-items: center; gap: 12px; }
.bvoc-testi-author img {
    width: 46px; height: 46px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0;
}
.bvoc-testi-author-info strong {
    display: block; font-size: 13px; font-weight: 400;
    letter-spacing: .5px; text-transform: uppercase; color: #111;
}
.bvoc-testi-author-info span { font-size: 12px; color: #aaa; }

.bvoc-testi-dots {
    display: flex; justify-content: center; gap: 10px;
    margin-top: 40px; position: relative; z-index: 2;
}
.bvoc-testi-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #ccc; border: none; cursor: pointer; padding: 0;
    transition: background .3s, transform .3s;
}
.bvoc-testi-dot.active { background: #FF6A00; transform: scale(1.3); }

/* ─── BLOG ─── */
.bvoc-blog-section {
    background: #111; padding: 80px 40px 100px;
    position: relative; overflow: hidden;
    font-family: 'Forum', serif; color: #fff;
}
.bvoc-blog-header { text-align: center; margin-bottom: 52px; position: relative; z-index: 2; }
.bvoc-blog-tag {
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: #FF6A00; display: block; margin-bottom: 14px;
}
.bvoc-blog-header h2 {
    font-size: clamp(28px, 4.5vw, 58px);
    font-weight: 400; text-transform: uppercase;
    letter-spacing: -0.5px; color: #fff;
    line-height: 1.05; margin: 0;
}
.bvoc-blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; position: relative; z-index: 2;
    max-width: 1300px; margin: 0 auto;
}
.bvoc-blog-card { display: flex; flex-direction: column; cursor: pointer; }
.bvoc-blog-card-img {
    position: relative; border-radius: 14px;
    overflow: hidden; aspect-ratio: 4/3;
    margin-bottom: 22px; display: block;
}
.bvoc-blog-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: transform .5s ease;
}
.bvoc-blog-card:hover .bvoc-blog-card-img img { transform: scale(1.06); }
.bvoc-blog-meta {
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: #777;
    margin-bottom: 10px; display: flex; align-items: center;
    gap: 6px; flex-wrap: wrap;
}
.bvoc-blog-meta .cat { color: #FF6A00; }
.bvoc-blog-meta .sep { color: #444; }
.bvoc-blog-card-title {
    font-size: clamp(16px, 1.6vw, 22px);
    font-weight: 400; text-transform: uppercase;
    color: #fff; line-height: 1.2; letter-spacing: .2px;
    margin: 0 0 14px; transition: color .2s;
}
.bvoc-blog-card-title a { color: inherit; text-decoration: none; }
.bvoc-blog-card:hover .bvoc-blog-card-title { color: #FF6A00; }
.bvoc-blog-card-desc {
    font-size: 13px; color: #777; line-height: 1.75;
    margin: 0 0 20px;
    display: -webkit-box; -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; overflow: hidden;
}
.bvoc-blog-read-more {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: #fff; text-decoration: none;
    border: none; background: none; cursor: pointer; padding: 0;
    transition: color .2s, gap .2s;
}
.bvoc-blog-read-more:hover { color: #FF6A00; gap: 14px; }
.bvoc-blog-read-more i { font-size: 10px; }
.bvoc-blog-dots {
    display: flex; justify-content: center; gap: 10px;
    margin-top: 48px; position: relative; z-index: 2;
}
.bvoc-blog-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #333; border: none; cursor: pointer; padding: 0;
    transition: background .3s, transform .3s;
}
.bvoc-blog-dot.active { background: #3DB834; transform: scale(1.3); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    /* Slider: görsel arka plan + karartı, içerik üstte */
    .bvoc-slide {
        grid-template-columns: 1fr;
        position: absolute;
        inset: 0;
    }
    .bvoc-slide-img {
        position: absolute;
        inset: 0;
        z-index: 0;
        grid-column: auto;
    }
    .bvoc-slide-img::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.75) 100%);
        z-index: 1;
        pointer-events: none;
    }
    .bvoc-slide-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .bvoc-slide-badge { display: none; }

    .bvoc-slide-content {
        position: relative;
        z-index: 2;
        background: transparent !important;
        padding: 60px 32px;
        justify-content: center;
    }
    .bvoc-slide-watermark { display: none; }

    .bvoc-about-section { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .bvoc-about-badge-wrap { order: 3; }
    .bvoc-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .bvoc-testi-body { flex-direction: column; gap: 32px; }
    .bvoc-testi-left { position: static; flex: none; width: 100%; }
    .bvoc-testi-header { text-align: center; }
    .bvoc-testi-card {
        flex: 0 0 calc((100% - 24px) / 2);
        width:     calc((100% - 24px) / 2);
    }
}
@media (max-width: 640px) {
    .bvoc-slide-content { padding: 40px 22px; }
    .bvoc-slide-title { font-size: clamp(36px, 11vw, 56px); }
    .bvoc-slide-desc  { font-size: 14px; }

    .bvoc-slider-arrow {
        top: 95%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        background: rgba(0,0,0,.45);
    }
    .bvoc-slider-arrow.prev { left: 10px; right: auto; }
    .bvoc-slider-arrow.next { right: 10px; left: auto; }

    .bvoc-slider-dots { bottom: 28px; }

    .bvoc-blog-grid { grid-template-columns: 1fr; }
    .bvoc-testi-card {
        flex: 0 0 100%;
        width:     100%;
    }
    .bvoc-testi-badge { display: none; }
    .bvoc-about-deco { display: none; }
}

/* ════════════════════════════════════════════
   BVOC SLIDER 2 – Sinematik Full-BG
════════════════════════════════════════════ */
.bvoc-slider2 {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 540px;
    overflow: hidden;
    --bvoc-ov-strong: .82;
    --bvoc-ov-mid:    .40;
    --bvoc-ov-light:  .08;
}

.bvoc-slide2 {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .9s ease;
    pointer-events: none;
}
.bvoc-slide2.active { opacity: 1; pointer-events: auto; }

/* Full-bleed background */
.bvoc-slide2-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.07);
    transition: transform 7s ease;
}
.bvoc-slide2.active .bvoc-slide2-bg { transform: scale(1); }

/* Gradient overlay – direction & opacity via CSS vars */
.bvoc-slide2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,var(--bvoc-ov-strong,.82)) 0%,
        rgba(0,0,0,var(--bvoc-ov-mid,.40))    0%,
        rgba(0,0,0,var(--bvoc-ov-light,.08))  100%
    );
}

/* Content */
.bvoc-slide2-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8% 80px;
    max-width: 700px;
}

.bvoc-slide2-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #3DB834;
    margin-bottom: 22px;
}
.bvoc-slide2-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: #3DB834;
    flex-shrink: 0;
}

.bvoc-slide2-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 24px;
}
.bvoc-slide2-title em { font-style: normal; color: #3DB834; }

.bvoc-slide2-desc {
    font-size: 15px;
    color: rgba(255,255,255,.7);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 40px;
}

.bvoc-slide2-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

.bvoc-btn2-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3DB834;
    color: #fff;
    text-decoration: none;
    border: none;
    padding: 15px 32px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.bvoc-btn2-primary:hover { background: #2ea028; transform: translateX(4px); }
.bvoc-btn2-primary i { font-size: 11px; }

.bvoc-btn2-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.4);
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.bvoc-btn2-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* Slide counter */
.bvoc-slide2-counter {
    position: absolute;
    right: 48px;
    bottom: 50%;
    transform: translateY(50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 5;
}
.bvoc-slide2-counter-cur  { font-size: 42px; font-weight: 400; color: #3DB834; line-height: 1; }
.bvoc-slide2-counter-sep  { width: 1px; height: 40px; background: rgba(255,255,255,.3); }
.bvoc-slide2-counter-total{ font-size: 16px; font-weight: 700; color: rgba(255,255,255,.4); }

/* Arrows */
.bvoc-slide2-arrows {
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: flex;
    gap: 10px;
    z-index: 10;
}
.bvoc-slide2-arrow {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, border-color .2s;
}
.bvoc-slide2-arrow:hover { background: #3DB834; border-color: #3DB834; }

/* Vertical dots */
.bvoc-slide2-dots {
    position: absolute;
    left: 36px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}
.bvoc-slide2-dot {
    width: 6px; height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,.35);
    border: none;
    cursor: pointer;
    transition: background .3s, height .3s;
}
.bvoc-slide2-dot.active { background: #3DB834; height: 30px; }

/* Progress bar – top */
.bvoc-slider2-progress {
    position: absolute;
    top: 0; left: 0;
    height: 3px;
    background: #3DB834;
    width: 0%;
    z-index: 10;
    transition: width linear;
}

/* Thumbnail strip */
.bvoc-slide2-thumbs {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.bvoc-slide2-thumb {
    width: 72px; height: 50px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: .55;
    transition: border-color .25s, opacity .25s;
}
.bvoc-slide2-thumb.active { border-color: #3DB834; opacity: 1; }
.bvoc-slide2-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── Slider 2 Mobile ─── */
@media (max-width: 768px) {
    .bvoc-slide2-content {
        max-width: 100%;
        padding: 0 24px 10px;
        align-items: center;
        text-align: center;
        justify-content: flex-end;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
    }
    .bvoc-slide2-label::before { display: none; }
    .bvoc-slide2-title { font-size: clamp(36px, 11vw, 58px); letter-spacing: -1px; }
    .bvoc-slide2-actions { justify-content: center; flex-wrap: nowrap; }
    .bvoc-btn2-primary,
    .bvoc-btn2-ghost { padding: 12px 18px; font-size: 11px; letter-spacing: 1px; white-space: nowrap; }

    .bvoc-slide2-counter { display: none; }
    .bvoc-slide2-dots    { display: none; }
    .bvoc-slide2-thumbs  { display: none; }

    .bvoc-slide2-arrows {
        bottom: auto; right: auto;
        left: 0; top: 0;
        width: 100%; height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 12px;
        gap: 0;
        pointer-events: none;
    }
    .bvoc-slide2-arrow { pointer-events: auto; }
}

/* ─── MENU ─── */
.bvoc-menu {
    position: relative;
    background: #111;
    color: #fff;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #252525;
    font-family: 'Forum', serif;
}
body, .bvoc-menu, .bvoc-slide2, .bvoc-slide2-content, .bvoc-slide2-label, .bvoc-slide2-title, .bvoc-slide2-desc, .bvoc-menu-title, .bvoc-menu-card, .bvoc-menu-card-title, .bvoc-menu-card-price, .bvoc-menu-card-badge, .bvoc-btn2-primary, .bvoc-btn2-ghost, .bvoc-slide2-dot, .bvoc-slide2-counter, .bvoc-slide2-arrows, .bvoc-slide2-thumb, .bvoc-slide2-dots, .bvoc-slide2-overlay, .bvoc-slide2-bg {
    font-family: 'Forum', serif !important;
}

.bvoc-menu-hero {
    margin-bottom: 24px;
}

.bvoc-menu-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #FF6A00;
    margin-bottom: 8px;
}

.bvoc-menu-title {
    margin: 0;
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}

.bvoc-menu-title span { color: #FF6A00; }

.bvoc-menu-hero-desc {
    margin: 12px 0 0;
    max-width: 520px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
}

.bvoc-menu-controls {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
}

.bvoc-menu-search-wrap {
    position: relative;
    flex: 1;
    min-width: 220px;
    max-width: 320px;
}

.bvoc-menu-search-wrap i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    font-size: 15px;
    color: #666;
    pointer-events: none;
}

.bvoc-menu-search {
    width: 100%;
    background: #181818;
    border: 1px solid #2d2d2d;
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    padding: 10px 12px 10px 36px;
    outline: none;
}

.bvoc-menu-search:focus { border-color: #FF6A00; }

.bvoc-menu-filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    min-width: 0;
}

.bvoc-menu-filters::-webkit-scrollbar { display: none; }

.bvoc-menu-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #2e2e2e;
    background: #171717;
    color: #bbb;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.bvoc-menu-filter-btn i { font-size: 14px; line-height: 1; }

.bvoc-menu-filter-btn:hover { border-color: #FF6A00; color: #fff; }
.bvoc-menu-filter-btn.active { background: #FF6A00; border-color: #FF6A00; color: #fff; }

/* ─── Filtre Tema 2: Dikdörtgen, ikon üstte ─── */
.bvoc-menu-filters.is-filter-tema2 { gap: 10px; }

.bvoc-menu-filters.is-filter-tema2 .bvoc-menu-filter-btn {
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
    padding: 14px 12px 10px;
    gap: 6px;
    min-width: 76px;
    letter-spacing: .4px;
}

.bvoc-menu-filters.is-filter-tema2 .bvoc-menu-filter-btn i { font-size: 22px; }

.bvoc-menu-section { margin-bottom: 34px; }
.bvoc-menu-section:last-child { margin-bottom: 0; }

.bvoc-menu-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #222;
    padding-bottom: 12px;
    margin-bottom: 14px;
}

.bvoc-menu-section-head h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
}

.bvoc-menu-section-head span {
    font-size: 11px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.bvoc-menu-grid {
    display: grid;
    grid-template-columns: repeat(var(--bvoc-menu-grid-cols, 3), minmax(0, 1fr));
    gap: 14px;
}

.bvoc-menu-card {
    background: #1a1a1a;
    border: 1px solid #272727;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease;
}

.bvoc-menu-card:hover {
    transform: translateY(-3px);
    border-color: #FF6A00;
}

.bvoc-menu-card-img-wrap {
    position: relative;
    overflow: hidden;
}

.bvoc-menu-card-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .8px;
    padding: 4px 8px;
    border-radius: 4px;
}

.bvoc-menu-card-badge.is-hot { background: #FF6A00; color: #fff; }
.bvoc-menu-card-badge.is-new { background: #2BAA6E; color: #fff; }
.bvoc-menu-card-badge.is-vege { background: #3DB834; color: #fff; }

.bvoc-menu-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.bvoc-menu-card:hover .bvoc-menu-card-img { transform: scale(1.04); }

.bvoc-menu-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 52px 16px 16px;
    background: linear-gradient(to top, rgba(0,0,0,.90) 5%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
}

.bvoc-menu-card-category {
    display: inline-block;
    color: #FF8C1A;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 6px;
}

.bvoc-menu-card-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    text-transform: uppercase;
}

.bvoc-menu-card-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.bvoc-menu-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #8b8b8b;
}

.bvoc-menu-card-desc {
    margin: 0 0 14px;
    color: #9d9d9d;
    font-size: 13px;
    line-height: 1.6;
    min-height: 40px;
}

.bvoc-menu-card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-shrink: 0;
    text-align: right;
}

.bvoc-menu-price-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 700;
}

.bvoc-menu-price-val {
    color: #fff;
    font-size: 23px;
    line-height: 1;
    font-weight: 400;
}

.bvoc-menu-price-val span {
    font-size: 13px;
    font-weight: 600;
    margin-left: 2px;
    color: #fff;
}

.bvoc-menu-empty {
    margin-top: 20px;
    border: 1px dashed #303030;
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    color: #888;
}

.bvoc-menu-empty i {
    display: block;
    font-size: 34px;
    margin-bottom: 10px;
}

/* modal */
.bvoc-menu-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .82);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    opacity: 0;
    pointer-events: none;
    z-index: 10000;
    transition: opacity .25s ease;
}

.bvoc-menu-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.bvoc-menu-modal {
    width: 100%;
    max-width: 860px;
    max-height: 90vh;
    overflow: hidden;
    background: #1a1a1a;
    border: 1px solid #313131;
    border-radius: 12px;
    position: relative;
    transform: translateY(16px) scale(.98);
    transition: transform .25s ease;
}

.bvoc-menu-modal-overlay.open .bvoc-menu-modal {
    transform: translateY(0) scale(1);
}

.bvoc-menu-modal-close {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
}

.bvoc-menu-modal-close:hover { background: #FF6A00; }

.bvoc-menu-modal-gallery {
    position: relative;
    height: 320px;
    background: #111;
    overflow: hidden;
}

.bvoc-menu-modal-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .25s ease, transform .25s ease;
    cursor: zoom-in;
}

.bvoc-menu-modal-main.is-zoomed {
    cursor: zoom-out;
    transform-origin: var(--ox, 50%) var(--oy, 50%);
    transform: scale(2.1);
}

.bvoc-menu-modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bvoc-menu-modal-arrow.is-prev { left: 10px; }
.bvoc-menu-modal-arrow.is-next { right: 10px; }
.bvoc-menu-modal-arrow:hover { background: #FF6A00; border-color: #FF6A00; }

.bvoc-menu-modal-counter {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(0,0,0,.55);
}

.bvoc-menu-modal-thumbs {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.bvoc-menu-modal-thumb {
    width: 46px;
    height: 32px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid transparent;
    opacity: .65;
    cursor: pointer;
}

.bvoc-menu-modal-thumb.active {
    border-color: #FF6A00;
    opacity: 1;
}

.bvoc-menu-modal-body {
    padding: 20px 22px 22px;
    overflow-y: auto;
    max-height: calc(90vh - 320px);
}

.bvoc-menu-modal-category {
    display: inline-block;
    margin-bottom: 6px;
    color: #FF6A00;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
}

.bvoc-menu-modal-title {
    margin: 0 0 12px;
    font-size: clamp(24px, 4vw, 32px);
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: 400;
}

.bvoc-menu-modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 12px;
}

.bvoc-menu-modal-meta span {
    color: #9d9d9d;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.bvoc-menu-modal-desc {
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 16px;
}

.bvoc-menu-modal-price {
    border-top: 1px solid #2a2a2a;
    padding-top: 14px;
}

/* ─── GALLERY ─── */
.bvoc-gallery {
    background: #111;
    border: 1px solid #252525;
    border-radius: 16px;
    padding: 26px;
    color: #fff;
    font-family: 'Forum', serif;
}

.bvoc-gallery-layout {
    display: grid;
    grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.bvoc-gallery-left {
    background: #171717;
    border: 1px solid #2b2b2b;
    border-radius: 12px;
    padding: 20px;
    position: sticky;
    top: 18px;
}

.bvoc-gallery-tag {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #FF6A00;
    margin-bottom: 8px;
}

.bvoc-gallery-title {
    margin: 0 0 10px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 400;
}

.bvoc-gallery-desc {
    margin: 0;
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
}

.bvoc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.bvoc-gallery-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease;
}

.bvoc-gallery-card:hover {
    border-color: #FF6A00;
    transform: translateY(-3px);
}

.bvoc-gallery-media-wrap {
    position: relative;
}

.bvoc-gallery-media {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.bvoc-gallery-type {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0,0,0,.55);
    border: 1px solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.bvoc-gallery-type.is-video {
    background: #FF6A00;
    border-color: #FF6A00;
}

.bvoc-gallery-card-body {
    padding: 10px 12px 12px;
}

.bvoc-gallery-card-body h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.bvoc-gallery-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.84);
    z-index: 10010;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.bvoc-gallery-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.bvoc-gallery-modal {
    width: 100%;
    max-width: 900px;
    max-height: 92vh;
    overflow: hidden;
    border: 1px solid #303030;
    border-radius: 12px;
    background: #161616;
    position: relative;
}

.bvoc-gallery-modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(0,0,0,.5);
    cursor: pointer;
    z-index: 12;
}

.bvoc-gallery-modal-close:hover { background: #FF6A00; }

.bvoc-gallery-modal-media {
    background: #0f0f0f;
    height: 420px;
}

.bvoc-gallery-modal-image,
.bvoc-gallery-modal-video,
.bvoc-gallery-modal-video-file {
    width: 100%;
    height: 100%;
    display: block;
}

.bvoc-gallery-modal-image {
    object-fit: cover;
}

.bvoc-gallery-modal-video {
    background: #000;
}

.bvoc-gallery-modal-video-file {
    background: #000;
    object-fit: contain;
}

.bvoc-gallery-modal-body {
    padding: 18px 20px 22px;
    max-height: calc(92vh - 420px);
    overflow-y: auto;
}

.bvoc-gallery-modal-title {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1;
}

.bvoc-gallery-modal-desc {
    margin: 0;
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .bvoc-menu { padding: 18px; border-radius: 12px; }
    .bvoc-menu-search-wrap { max-width: 100%; }
    .bvoc-menu-controls {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
    .bvoc-menu-grid { grid-template-columns: repeat(1, minmax(0, 1fr)); }

    .bvoc-menu-modal-gallery { height: 240px; }
    .bvoc-menu-modal-body { max-height: calc(90vh - 240px); }

    .bvoc-gallery {
        padding: 16px;
        border-radius: 12px;
    }
    .bvoc-gallery-layout {
        grid-template-columns: 1fr;
    }
    .bvoc-gallery-left {
        position: static;
    }
    .bvoc-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .bvoc-gallery-modal-media {
        height: 240px;
    }
    .bvoc-gallery-modal-body {
        max-height: calc(92vh - 240px);
    }
}


/* Sosyal Liste */
.voc-hf-footer-social-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

/* Satır */
.voc-hf-footer-social-list .voc-hf-social-row{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:#fff;
}

/* Yuvarlak ikon */
.voc-hf-footer-social-list .voc-hf-social-row i{
    width:26px;
    height:26px;
    min-width:26px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:18px;
    color:#fff;
    transition:.3s;
}

/* Yazı */
.voc-hf-footer-social-list .voc-hf-social-row span{
    display:block;
    font-size:15px;
    font-weight:500;
    color:#fff;
}

/* Facebook */
.voc-hf-footer-social-row[href*="facebook"] i,
.voc-hf-footer-social-list .voc-hf-social-row[href*="facebook"] i{
    background:#1877F2;
}

/* Instagram */
.voc-hf-footer-social-list .voc-hf-social-row[href*="instagram"] i{
    background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
}

/* TikTok */
.voc-hf-footer-social-list .voc-hf-social-row[href*="tiktok"] i{
    background:#000;
}

/* Hover */
.voc-hf-footer-social-list .voc-hf-social-row:hover i{
    transform:scale(1.08);
    box-shadow:0 6px 15px rgba(0,0,0,.25);
}