/* ============================================
   ZIRVE ŞAPKA - Ana Stil Dosyası
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --zirve-primary: #2964AA;
    --zirve-accent: #FFA201;
    --zirve-dark: #0f172a;
    --zirve-text: #4B4F58;
    --zirve-muted: #F5F5F5;
    --zirve-whatsapp: #25d366;
    --zirve-ink: #0f172a;
    --zirve-muted-text: #5b667a;
    --zirve-bg: #f6f6f4;
    --zirve-surface: #ffffff;
    --zirve-border: rgba(15, 23, 42, 0.12);
    --zirve-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
    --zirve-shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.08);
    --zirve-radius-lg: 22px;
    --zirve-radius-md: 16px;
    --zirve-radius-sm: 12px;
}

/* ---- Base Reset ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body.zirve-theme {
    font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
    background: var(--zirve-bg);
    color: var(--zirve-ink);
    margin: 0;
    padding: 0;
}

body.zirve-theme h1,
body.zirve-theme h2,
body.zirve-theme h3,
body.zirve-theme h4,
body.zirve-theme h5,
body.zirve-theme h6,
body.zirve-theme .zirve-heading {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    letter-spacing: -0.01em;
}

body.zirve-theme a {
    color: inherit;
}

/* ============================================
   HEADER
   ============================================ */

/* -- Header wrapper -- */
.zirve-header {
    position: relative;
    z-index: 1000;
    width: 100%;
}

/* -- Top bar -- */
.zirve-header__top {
    background: var(--zirve-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1;
}

.zirve-header__top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    gap: 16px;
}

.zirve-header__contact-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.zirve-header__contact-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
    font-size: 13px;
}

.zirve-header__contact-links a:hover {
    color: #fff;
}

.zirve-header__wa {
    color: var(--zirve-whatsapp) !important;
    font-weight: 600;
}

.zirve-header__wa:hover {
    color: #2be573 !important;
}

/* -- Main bar -- */
.zirve-header__main {
    background: #fff;
    border-bottom: 1px solid var(--zirve-border);
    padding: 12px 0;
}

.zirve-header__main-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Logo */
.zirve-header__logo {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}

.zirve-header__logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

/* Search */
.zirve-header__search {
    flex: 1;
    max-width: 480px;
    display: flex;
    align-items: center;
    background: #f4f6f8;
    border: 1px solid var(--zirve-border);
    border-radius: 50px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.zirve-header__search:focus-within {
    border-color: var(--zirve-primary);
    box-shadow: 0 0 0 3px rgba(41, 100, 170, 0.12);
}

.zirve-header__search input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 10px 18px;
    font-size: 14px;
    font-family: inherit;
    color: var(--zirve-ink);
    outline: none;
}

.zirve-header__search input::placeholder {
    color: #94a3b8;
}

.zirve-header__search button {
    border: 0;
    background: var(--zirve-primary);
    color: #fff;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.zirve-header__search button:hover {
    background: #2964AA;
}

/* Actions */
.zirve-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    flex-shrink: 0;
}

.zirve-header__action-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--zirve-ink);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}

.zirve-header__action-item:hover {
    color: var(--zirve-primary);
}

.zirve-header__action-item i {
    font-size: 16px;
    color: var(--zirve-primary);
}

.zirve-header__action-item--wa i {
    color: var(--zirve-whatsapp);
}

/* Hamburger */
.zirve-header__burger {
    display: none;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 6px;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}

.zirve-header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--zirve-ink);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.zirve-header__burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.zirve-header__burger.is-active span:nth-child(2) {
    opacity: 0;
}

.zirve-header__burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* -- Navigation bar -- */
.zirve-header__nav {
    background: var(--zirve-primary);
}

.zirve-header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
}

.zirve-header__menu>li {
    position: relative;
}

.zirve-header__menu>li>a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 13px 18px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.zirve-header__menu>li>a:hover,
.zirve-header__menu>li:hover>a {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.zirve-header__menu>li>a i.fa-home {
    font-size: 16px;
}

/* -- Mega menu -- */
.zirve-header__menu>li.has-children {
    position: static;
}

.zirve-header__mega {
    position: absolute;
    top: 100%;
    left: 100px;
    right: 100px;
    background: #fff;
    border-radius: 0 0 var(--zirve-radius-md) var(--zirve-radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    z-index: 1100;
}

.zirve-header__menu>li:hover>.zirve-header__mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.zirve-header__mega-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.zirve-header__mega-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 8px;
    border-radius: var(--zirve-radius-sm);
    text-decoration: none;
    color: var(--zirve-ink);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
}

.zirve-header__mega-item:hover {
    background: #f4f6f8;
    transform: translateY(-2px);
}

.zirve-header__mega-item img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 8px;
}

/* -- Sticky header -- */
.zirve-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: zirveSlideDown 0.35s ease-out;
}

.zirve-header.is-sticky .zirve-header__top {
    display: none;
}

.zirve-header.is-sticky .zirve-header__main {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

@keyframes zirveSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Header placeholder to prevent content jump when sticky */
.zirve-header-placeholder {
    display: none;
}

.zirve-header-placeholder.is-active {
    display: block;
}

/* ============================================
   HEADER RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .zirve-header__top {
        display: none;
    }

    .zirve-header__search {
        display: none;
    }

    .zirve-header__actions {
        display: none;
    }

    .zirve-header__burger {
        display: flex;
    }

    .zirve-header__nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 2000;
        overflow-y: auto;
        transition: right 0.35s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    }

    .zirve-header__nav.is-open {
        right: 0;
    }

    .zirve-header__menu {
        flex-direction: column;
        padding: 20px 0;
    }

    .zirve-header__menu>li>a {
        color: var(--zirve-ink);
        padding: 14px 24px;
        font-size: 15px;
        border-bottom: 1px solid var(--zirve-border);
    }

    .zirve-header__menu>li>a:hover {
        background: #f4f6f8;
        color: var(--zirve-primary);
    }

    .zirve-header__mega {
        position: static;
        transform: none;
        min-width: auto;
        max-width: none;
        box-shadow: none;
        border-radius: 0;
        padding: 12px 24px;
        opacity: 1;
        visibility: visible;
        display: none;
        background: #f8fafc;
    }

    .zirve-header__menu>li.has-children>a::after {
        content: "\f078";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        font-size: 10px;
        margin-left: auto;
        transition: transform 0.25s;
    }

    .zirve-header__menu>li.has-children>a .fa-chevron-down {
        display: none;
    }

    .zirve-header__menu>li.has-children.is-sub-open>a::after {
        transform: rotate(180deg);
    }

    .zirve-header__menu>li.has-children.is-sub-open>.zirve-header__mega {
        display: block;
        transform: none;
    }

    .zirve-header__mega-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .zirve-header__mega-item {
        padding: 10px 6px;
        font-size: 12px;
    }

    .zirve-header__mega-item img {
        width: 48px;
        height: 48px;
    }
}

/* Mobile overlay */
.zirve-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.zirve-mobile-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ---- Container ---- */
body.zirve-theme .zirve-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: block;
}

body.zirve-theme .elementor-container.zirve-container {
    max-width: 1200px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
}

body.zirve-theme .elementor-container.zirve-container:not(.zirve-grid):not(.zirve-cta__inner) {
    display: block !important;
}

body.zirve-theme .elementor-container.zirve-container.zirve-grid,
body.zirve-theme .elementor-container.zirve-container.zirve-cta__inner {
    display: grid !important;
}

/* ---- Sections ---- */
body.zirve-theme .zirve-section {
    padding: clamp(32px, 4vw, 56px) 0;
    position: relative;
}

body.zirve-theme .zirve-section--tight {
    padding: 40px 0;
}

body.zirve-theme .zirve-section--muted {
    background: #f8fafc;
}

body.zirve-theme .zirve-section--paper {
    background: var(--zirve-surface);
}

body.zirve-theme .zirve-section--contrast {
    background: linear-gradient(135deg, rgba(27, 79, 143, 0.05), rgba(243, 155, 47, 0.05));
}

/* ---- Kicker / Badge ---- */
body.zirve-theme .zirve-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    background: rgba(27, 79, 143, 0.08);
    color: var(--zirve-primary);
    border: 1px solid rgba(27, 79, 143, 0.2);
}

body.zirve-theme .zirve-kicker--dark {
    background: rgba(27, 79, 143, 0.08);
    color: var(--zirve-primary);
    border-color: rgba(27, 79, 143, 0.2);
}

/* ---- Titles ---- */
body.zirve-theme .zirve-title {
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 700;
    margin: 16px 0 12px;
    color: var(--zirve-primary);
}

body.zirve-theme .zirve-title--hero {
    font-size: clamp(30px, 3.4vw, 46px);
}

body.zirve-theme .zirve-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: var(--zirve-muted-text);
    max-width: 720px;
}

/* ---- Section Head ---- */
body.zirve-theme .zirve-section__head {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
    max-width: 820px;
}

body.zirve-theme .zirve-section__head--center {
    text-align: center;
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Hero ---- */
body.zirve-theme .zirve-hero {
    background: radial-gradient(1200px 600px at 10% 10%, rgba(243, 155, 47, 0.25), transparent 60%),
        radial-gradient(700px 500px at 80% 20%, rgba(27, 79, 143, 0.28), transparent 60%),
        linear-gradient(135deg, #0b1020 0%, #151a3a 50%, #0f2538 100%);
    color: #f6f3ec;
    overflow: hidden;
}

body.zirve-theme .zirve-hero--banner {
    padding: 0;
    background: transparent;
}

body.zirve-theme .zirve-hero--banner::before,
body.zirve-theme .zirve-hero--banner::after {
    display: none;
}

body.zirve-theme .zirve-hero--banner .elementor-container {
    max-width: 100% !important;
    padding: 0 !important;
}

body.zirve-theme .zirve-hero--banner .zirve-hero__frame {
    padding: 0;
    border-radius: 0 !important;
    background: transparent;
    border: none;
    box-shadow: none;
}

body.zirve-theme .zirve-hero--banner .zirve-hero__frame::after {
    display: none;
}

body.zirve-theme .zirve-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
    top: -240px;
    right: -180px;
    opacity: 0.7;
    animation: zirve-float 14s ease-in-out infinite;
}

body.zirve-theme .zirve-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(27, 79, 143, 0.35), transparent 70%);
    bottom: -220px;
    left: -160px;
    opacity: 0.6;
    animation: zirve-float 18s ease-in-out infinite reverse;
}

body.zirve-theme .zirve-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
    align-items: center;
}

body.zirve-theme .zirve-hero__content {
    position: relative;
    z-index: 2;
}

body.zirve-theme .zirve-hero__title {
    font-size: clamp(40px, 4.8vw, 68px);
    line-height: 1.05;
    margin: 18px 0 12px;
    color: #fff;
}

body.zirve-theme .zirve-hero__subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--zirve-muted-text);
}

body.zirve-theme .zirve-hero__list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 8px;
}

body.zirve-theme .zirve-section__head--center .zirve-hero__list {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

body.zirve-theme .zirve-hero__list li {
    position: relative;
    padding-left: 22px;
    color: rgba(15, 23, 42, 0.65);
}

body.zirve-theme .zirve-hero__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--zirve-accent);
    box-shadow: 0 0 0 4px rgba(243, 155, 47, 0.2);
}

body.zirve-theme .zirve-hero__list--dark li {
    color: rgba(15, 23, 42, 0.7);
}

body.zirve-theme .zirve-hero__list--dark li::before {
    background: var(--zirve-primary);
    box-shadow: 0 0 0 4px rgba(27, 79, 143, 0.15);
}

/* ---- Buttons ---- */
body.zirve-theme .zirve-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
}

body.zirve-theme .zirve-actions-center {
    justify-content: center;
}

body.zirve-theme .zirve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

body.zirve-theme .zirve-btn,
body.zirve-theme .zirve-pill,
body.zirve-theme .zirve-card,
body.zirve-theme .zirve-remote__more,
body.zirve-theme .zirve-vertical__more {
    text-decoration: none;
}

body.zirve-theme .zirve-btn--primary {
    background: var(--zirve-accent);
    color: #fff;
    box-shadow: 0 12px 24px rgba(243, 155, 47, 0.28);
}

body.zirve-theme .zirve-btn--primary:hover {
    transform: translateY(-2px);
}

body.zirve-theme .zirve-btn--ghost {
    border-color: rgba(27, 79, 143, 0.35);
    color: var(--zirve-primary);
    background: transparent;
}

body.zirve-theme .zirve-btn--ghost:hover {
    background: rgba(27, 79, 143, 0.08);
}

body.zirve-theme .zirve-btn--light {
    background: #fff;
    color: var(--zirve-primary);
}

body.zirve-theme .zirve-btn--accent {
    background: var(--zirve-whatsapp);
    color: #fff;
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.28);
}

/* ---- Stats ---- */
body.zirve-theme .zirve-hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
    margin-top: 28px;
}

body.zirve-theme .zirve-stat {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
}

body.zirve-theme .zirve-stat__value {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

body.zirve-theme .zirve-stat__label {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* ---- Hero Frame / Slider ---- */
body.zirve-theme .zirve-hero__frame {
    padding: 14px;
    border-radius: var(--zirve-radius-lg);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--zirve-shadow);
    position: relative;
}

body.zirve-theme .zirve-hero__frame::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: calc(var(--zirve-radius-lg) - 8px);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

body.zirve-theme .zirve-hero__slider .bdt-panel-slide-item {
    border-radius: 0 !important;
    overflow: hidden;
    background: transparent !important;
}

body.zirve-theme .zirve-hero__slider img {
    border-radius: 0 !important;
    width: 100%;
    height: auto;
    display: block;
}

body.zirve-theme .zirve-hero__slider .bdt-panel-slide-thumb-wrapper {
    width: 100%;
    min-height: 240px;
}

body.zirve-theme .zirve-hero--banner .zirve-hero__slider .bdt-panel-slide-thumb-wrapper {
    min-height: 0;
    height: auto;
}

body.zirve-theme .zirve-hero--banner .zirve-hero__slider img {
    height: auto;
    object-fit: initial;
}

/* ---- Feature Grid ---- */
body.zirve-theme .zirve-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

body.zirve-theme .zirve-feature-card {
    background: var(--zirve-surface);
    border-radius: var(--zirve-radius-md);
    padding: 24px;
    border: 1px solid var(--zirve-border);
    box-shadow: var(--zirve-shadow-soft);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

body.zirve-theme .zirve-feature-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

body.zirve-theme .zirve-feature-card p {
    margin: 0;
    color: var(--zirve-muted-text);
    line-height: 1.6;
}

body.zirve-theme .zirve-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--zirve-shadow);
    border-color: rgba(243, 155, 47, 0.4);
}

body.zirve-theme .zirve-feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(27, 79, 143, 0.12);
    color: var(--zirve-primary);
    font-size: 20px;
    margin-bottom: 16px;
}

/* ---- Product Showcase (referans tema layout) ---- */
body.zirve-theme .zirve-showcase {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Başlık - sol üst */
body.zirve-theme .zirve-showcase__title {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 700;
    color: var(--zirve-accent);
    margin: 0 0 8px;
    line-height: 1.1;
    transition: opacity 0.35s ease;
}

/* Başlık altı çizgi */
body.zirve-theme .zirve-showcase__line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--zirve-accent) 0%, rgba(255, 162, 1, 0.08) 100%);
    margin-bottom: 20px;
}

/* Body: info (sağ üst, absolute) + strip (tam genişlik, alt hizada) */
body.zirve-theme .zirve-showcase__body {
    position: relative;
    min-height: 380px;
}

/* Açıklama + CTA: sağ taraf, dikeyde ortalı */
body.zirve-theme .zirve-showcase__info {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 140px;
    width: 48%;
    z-index: 5;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.zirve-theme .zirve-showcase__desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--zirve-muted-text);
    margin: 0 0 18px;
    transition: opacity 0.35s ease;
}

body.zirve-theme .zirve-showcase__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--zirve-ink);
    text-decoration: none;
    transition: color 0.3s;
}

body.zirve-theme .zirve-showcase__cta:hover {
    color: var(--zirve-accent);
}

body.zirve-theme .zirve-showcase__cta-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--zirve-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: transform 0.3s;
}

body.zirve-theme .zirve-showcase__cta:hover .zirve-showcase__cta-arrow {
    transform: translateX(4px);
}

/* ---- Ürün şeridi (ok + görseller + ok) ---- */
body.zirve-theme .zirve-showcase__strip-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

body.zirve-theme .zirve-showcase__strip {
    flex: 1;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 18px;
    /* timeline çizgisi + dot alanı */
}

body.zirve-theme .zirve-showcase__strip::-webkit-scrollbar {
    display: none;
}

/* Timeline çizgisi - şeridin en altında */
body.zirve-theme .zirve-showcase__rail {
    position: absolute;
    bottom: 6px;
    left: 0;
    height: 3px;
    background: #d1d5db;
    z-index: 0;
    pointer-events: none;
}

body.zirve-theme .zirve-showcase__rail::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--rail-progress, 0%);
    background: var(--zirve-primary);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Her ürün öğesi */
body.zirve-theme .zirve-showcase__item {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0 0 18px;
    /* dot alanı */
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 90px;
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Dot - her öğenin altında, timeline çizgisi üzerinde */
body.zirve-theme .zirve-showcase__item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #c4c9d1;
    z-index: 2;
    transition: 0.4s;
}

body.zirve-theme .zirve-showcase__item.is-visited::after {
    background: var(--zirve-primary);
}

body.zirve-theme .zirve-showcase__item.is-active::after {
    background: var(--zirve-accent);
    width: 14px;
    height: 14px;
    box-shadow: 0 0 0 3px rgba(255, 162, 1, 0.2);
}

/* Ürün görseli - küçük (varsayılan) */
body.zirve-theme .zirve-showcase__item img {
    height: 110px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.4s ease,
        filter 0.4s ease;
    opacity: 0.5;
    filter: grayscale(20%);
}

body.zirve-theme .zirve-showcase__item:hover img {
    opacity: 0.75;
    filter: grayscale(0%);
    height: 130px;
}

/* Aktif ürün - BÜYÜK */
body.zirve-theme .zirve-showcase__item.is-active {
    width: 320px;
}

body.zirve-theme .zirve-showcase__item.is-active img {
    height: 340px;
    opacity: 1;
    filter: grayscale(0%);
}

/* Arrows */
body.zirve-theme .zirve-showcase__arrow {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--zirve-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    flex-shrink: 0;
    margin-bottom: 0;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(41, 100, 170, 0.3);
}

body.zirve-theme .zirve-showcase__arrow:hover {
    background: #2964AA;
    transform: scale(1.12);
    box-shadow: 0 6px 20px rgba(41, 100, 170, 0.4);
}

body.zirve-theme .zirve-showcase__arrow:active {
    transform: scale(0.95);
}

/* Showcase responsive */
@media (max-width: 991px) {
    body.zirve-theme .zirve-showcase__body {
        min-height: 320px;
    }

    body.zirve-theme .zirve-showcase__info {
        position: static;
        width: 100%;
        text-align: center;
        margin-bottom: 16px;
    }

    body.zirve-theme .zirve-showcase__cta {
        justify-content: center;
    }

    body.zirve-theme .zirve-showcase__strip-wrapper {
        position: static;
    }

    body.zirve-theme .zirve-showcase__item.is-active {
        width: 200px;
    }

    body.zirve-theme .zirve-showcase__item.is-active img {
        height: 240px;
    }
}

@media (max-width: 576px) {
    body.zirve-theme .zirve-showcase__item {
        width: 60px;
    }

    body.zirve-theme .zirve-showcase__item img {
        height: 80px;
    }

    body.zirve-theme .zirve-showcase__item.is-active {
        width: 150px;
    }

    body.zirve-theme .zirve-showcase__item.is-active img {
        height: 180px;
    }

    body.zirve-theme .zirve-showcase__arrow {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    body.zirve-theme .zirve-showcase__body {
        min-height: 260px;
    }
}

/* ---- Scroll / Pills ---- */
body.zirve-theme .zirve-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    overflow: visible;
}

body.zirve-theme .zirve-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--zirve-surface);
    border: 1px solid var(--zirve-border);
    box-shadow: var(--zirve-shadow-soft);
    min-width: 0;
    min-height: 64px;
    flex: 0 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.zirve-theme .zirve-pill:hover {
    transform: translateY(-4px);
    box-shadow: var(--zirve-shadow);
}

body.zirve-theme .zirve-pill__icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: #f6f5f2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

body.zirve-theme .zirve-pill__icon img {
    max-height: 28px;
    width: auto;
}

body.zirve-theme .zirve-pill__label {
    font-weight: 700;
    color: var(--zirve-primary);
    font-size: 14px;
}

/* ---- Vertical Showcase ---- */
body.zirve-theme .zirve-vertical {
    display: grid;
    grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
    gap: 44px;
    align-items: start;
}

body.zirve-theme .zirve-vertical__nav {
    position: relative;
    display: grid;
    gap: 14px;
    padding-top: 6px;
}

body.zirve-theme .zirve-vertical__nav::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 14px;
    bottom: 14px;
    width: 1px;
    background: rgba(15, 23, 42, 0.24);
}

body.zirve-theme .zirve-vertical__item {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 44px;
    padding-left: 0;
    font-weight: 700;
    font-size: clamp(16px, 1.05vw, 20px);
    line-height: 1.25;
    color: rgba(15, 23, 42, 0.88);
    transition: transform 0.25s ease, color 0.25s ease;
}

body.zirve-theme .zirve-vertical__label {
    white-space: normal;
}

body.zirve-theme .zirve-vertical__item:hover {
    transform: translateX(4px);
    color: var(--zirve-primary);
}

body.zirve-theme .zirve-vertical__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--zirve-primary);
    box-shadow: 0 0 0 4px rgba(27, 79, 143, 0.14);
    flex: 0 0 12px;
}

body.zirve-theme .zirve-vertical__item.is-active {
    color: var(--zirve-accent);
}

body.zirve-theme .zirve-vertical__item.is-active .zirve-vertical__dot {
    background: var(--zirve-accent);
    box-shadow: 0 0 0 4px rgba(243, 155, 47, 0.22);
}

body.zirve-theme .zirve-vertical__panel {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
    background: transparent;
    border: none;
    border-radius: var(--zirve-radius-lg);
    padding: 28px;
    box-shadow: none;
}

body.zirve-theme .zirve-vertical__media {
    display: flex;
    align-items: center;
    justify-content: center;
}

body.zirve-theme .zirve-vertical__media img {
    max-height: 340px;
    width: auto;
}

body.zirve-theme .zirve-vertical__content p {
    margin: 0;
    color: var(--zirve-muted-text);
    font-size: clamp(17px, 1.08vw, 20px);
    line-height: 1.6;
}

body.zirve-theme .zirve-vertical__more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--zirve-ink);
}

body.zirve-theme .zirve-vertical__more-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--zirve-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ---- Remote Showcase ---- */
body.zirve-theme .zirve-remote {
    display: grid;
    gap: 20px;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

body.zirve-theme .zirve-remote__tabs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

body.zirve-theme .zirve-remote__arrow {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: #fff;
    color: var(--zirve-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

body.zirve-theme .zirve-remote__arrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    background: var(--zirve-primary);
    color: #fff;
}

body.zirve-theme .zirve-remote__tabs {
    display: flex;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    scroll-snap-type: x mandatory;
    padding: 5px 0 15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body.zirve-theme .zirve-remote__tabs::-webkit-scrollbar {
    display: none;
}

body.zirve-theme .zirve-remote__tab {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    padding: 12px 24px;
    text-align: center;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--zirve-muted-text);
    cursor: pointer;
    position: relative;
    border-radius: 50px;
    scroll-snap-align: center;
    transition: all 0.25s ease;
    flex: 0 0 auto;
    min-width: auto;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

body.zirve-theme .zirve-remote__tab.is-active {
    color: #fff;
    background: var(--zirve-primary);
    box-shadow: 0 4px 12px rgba(27, 79, 143, 0.3);
    border-color: var(--zirve-primary);
    font-weight: 700;
}

body.zirve-theme .zirve-remote__panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 40px;
    min-height: auto;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    body.zirve-theme .zirve-remote__panel {
        grid-template-columns: 40% 1fr;
        padding: 50px;
        gap: 60px;
    }
}

body.zirve-theme .zirve-remote__media {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

body.zirve-theme .zirve-remote__media::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(243, 155, 47, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

body.zirve-theme .zirve-remote__media img {
    max-height: 350px;
    max-width: 100%;
    width: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
    transform: scale(1);
    transition: transform 0.5s ease;
    z-index: 1;
    position: relative;
    object-fit: contain;
}

body.zirve-theme .zirve-remote__panel:hover .zirve-remote__media img {
    transform: scale(1.05);
}

body.zirve-theme .zirve-remote__content {
    text-align: left;
}

body.zirve-theme .zirve-remote__content p {
    margin: 0 0 30px 0;
    color: var(--zirve-muted-text);
    font-size: clamp(16px, 1.2vw, 20px);
    line-height: 1.8;
    max-width: 100%;
    font-weight: 500;
}

body.zirve-theme .zirve-remote__more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: var(--zirve-primary);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff !important;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(27, 79, 143, 0.2);
}

body.zirve-theme .zirve-remote__more:hover {
    background: var(--zirve-accent);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(243, 155, 47, 0.25);
}

body.zirve-theme .zirve-remote__more-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: transform 0.3s ease;
}

body.zirve-theme .zirve-remote__more:hover .zirve-remote__more-arrow {
    transform: translateX(4px);
    background: #fff;
    color: var(--zirve-accent);
}

/* ---- Grid ---- */
body.zirve-theme .zirve-grid {
    display: grid;
    gap: 26px;
    align-items: stretch;
}

body.zirve-theme .zirve-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.zirve-theme .zirve-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.zirve-theme .zirve-grid--cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

body.zirve-theme .zirve-grid--products {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

body.zirve-theme .zirve-grid--cards .zirve-card,
body.zirve-theme .zirve-grid--products .zirve-card {
    min-height: 0;
}

/* ---- About ---- */
body.zirve-theme .zirve-about__media img {
    width: 100%;
    border-radius: var(--zirve-radius-lg);
    box-shadow: var(--zirve-shadow);
}

body.zirve-theme .zirve-mv {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

body.zirve-theme .zirve-mv__card {
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--zirve-border);
}

body.zirve-theme .zirve-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

body.zirve-theme .zirve-stat-card {
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--zirve-border);
    box-shadow: var(--zirve-shadow-soft);
}

body.zirve-theme .zirve-stat-card__value {
    font-size: 24px;
    font-weight: 800;
    color: var(--zirve-primary);
}

body.zirve-theme .zirve-stat-card__label {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--zirve-muted-text);
}

/* ---- About Grid (Biz Kimiz) ---- */
body.zirve-theme .zirve-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

body.zirve-theme .zirve-about-grid__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body.zirve-theme .zirve-about-grid__image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    body.zirve-theme .zirve-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ---- Cards ---- */
body.zirve-theme .zirve-card {
    display: block;
    color: inherit;
    background: var(--zirve-surface);
    border-radius: var(--zirve-radius-md);
    border: 1px solid var(--zirve-border);
    padding: 22px;
    box-shadow: var(--zirve-shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

body.zirve-theme .zirve-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--zirve-shadow);
    border-color: rgba(243, 155, 47, 0.4);
}

body.zirve-theme .zirve-card--center {
    text-align: center;
}

body.zirve-theme .zirve-card--product {
    padding: 0;
    overflow: hidden;
}

body.zirve-theme .zirve-card__media {
    background: #f3f4f6;
    padding: 20px;
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.zirve-theme .zirve-card__media--icon {
    min-height: 90px;
}

body.zirve-theme .zirve-card__body {
    padding: 18px 20px 22px;
}

body.zirve-theme .zirve-card__title {
    font-weight: 700;
    font-size: 16px;
    margin: 0;
    color: var(--zirve-primary);
}

body.zirve-theme .zirve-card__meta {
    margin-top: 6px;
    font-size: 13px;
    color: var(--zirve-muted-text);
}

body.zirve-theme .zirve-card__price {
    margin-top: 12px;
    font-weight: 700;
    color: var(--zirve-accent);
}

body.zirve-theme .zirve-card__cta {
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--zirve-accent);
    font-weight: 700;
}

body.zirve-theme .zirve-card__action {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--zirve-accent);
}

body.zirve-theme .zirve-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--zirve-accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

/* ---- Pagination ---- */
body.zirve-theme .zirve-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
    flex-wrap: wrap;
}

body.zirve-theme .zirve-page-btn {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--zirve-border);
    background: #fff;
    font-weight: 600;
    text-decoration: none;
    color: inherit;
}

body.zirve-theme .zirve-page-btn.is-disabled {
    color: #aaa;
    border-color: #eee;
    background: #fafafa;
}

body.zirve-theme .zirve-page-btn.is-active {
    background: var(--zirve-primary);
    color: #fff;
    border-color: var(--zirve-primary);
}

/* ---- CTA ---- */
body.zirve-theme .zirve-cta {
    background: linear-gradient(135deg, #2964AA 0%, #2964AA 55%, #2964AA 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

body.zirve-theme .zirve-cta::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(243, 155, 47, 0.5), transparent 70%);
    top: -160px;
    right: -140px;
    opacity: 0.7;
}

body.zirve-theme .zirve-cta__inner {
    display: grid;
    gap: 24px;
    align-items: center;
    justify-items: center;
    text-align: center;
}

body.zirve-theme .zirve-cta__title {
    font-size: clamp(30px, 3.8vw, 52px);
    margin: 0;
    color: #fff;
}

/* ---- Callout ---- */
body.zirve-theme .zirve-callout {
    background: linear-gradient(135deg, rgba(27, 79, 143, 0.04), rgba(243, 155, 47, 0.04));
    border: 1px solid rgba(27, 79, 143, 0.15);
    border-radius: var(--zirve-radius-lg);
    padding: 40px;
    text-align: center;
}

body.zirve-theme .zirve-callout h3 {
    margin: 0 0 12px;
    color: var(--zirve-primary);
}

body.zirve-theme .zirve-callout p {
    color: var(--zirve-muted-text);
    margin: 0 0 20px;
}

body.zirve-theme .zirve-callout__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Breadcrumbs ---- */
body.zirve-theme .zirve-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--zirve-muted-text);
}

body.zirve-theme .zirve-breadcrumbs a {
    color: var(--zirve-primary);
    text-decoration: none;
}

body.zirve-theme .zirve-breadcrumbs a:hover {
    text-decoration: underline;
}

/* ---- Prose ---- */
body.zirve-theme .zirve-prose {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--zirve-text);
}

body.zirve-theme .zirve-prose h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}

body.zirve-theme .zirve-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

body.zirve-theme .zirve-prose p {
    margin-bottom: 16px;
}

/* ---- Page Hero ---- */
body.zirve-theme .zirve-page-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%);
}

/* ---- References Grid ---- */
.zirve-references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.zirve-reference-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zirve-reference-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.zirve-reference-item img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.zirve-reference-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ---- Blog Cards ---- */
.zirve-card--blog {
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e1e7ec;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zirve-card--blog:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

body.zirve-theme .zirve-card--blog .zirve-card__media {
    height: 240px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.zirve-card--blog .zirve-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.zirve-card--blog .zirve-card__placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: #cbd5e1;
    font-size: 48px;
}

.zirve-card--blog .zirve-card__body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.zirve-card--blog .zirve-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.zirve-card--blog .zirve-card__text {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.zirve-card--blog .zirve-card__footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.zirve-card--blog .zirve-card__date {
    font-size: 13px;
    color: #94a3b8;
}

.zirve-card--blog .zirve-card__link {
    font-size: 14px;
    font-weight: 600;
    color: #FFA201;
    text-decoration: none;
}

/* ---- FAQ ---- */
.zirve-faq {
    max-width: 800px;
    margin: 0 auto;
}

.zirve-faq__item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.zirve-faq__trigger {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.zirve-faq__trigger:hover {
    background: #f8fafc;
}

.zirve-faq__question {
    font-size: 17px;
    font-weight: 600;
    color: #0f172a;
}

.zirve-faq__icon {
    color: #FFA201;
    transition: transform 0.3s ease;
}

.zirve-faq__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.zirve-faq__answer {
    padding: 0 24px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
}

.zirve-faq__item.is-active .zirve-faq__panel {
    max-height: 500px;
}

.zirve-faq__item.is-active .zirve-faq__icon {
    transform: rotate(45deg);
}

/* ---- Social Icons ---- */
.zirve-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #fff;
    color: #111;
    border-radius: 8px;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.zirve-social-icon:hover {
    background: #FFA201;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 162, 1, 0.2);
}

/* ---- Footer ---- */
.zirve-footer {
    background-color: #0f172a;
    padding: 80px 0 30px;
    color: #94a3b8;
    font-size: 15px;
    margin-top: auto;
    position: relative;
    z-index: 10;
}

.zirve-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.zirve-footer__logo img {
    height: 48px;
    width: auto;
    margin-bottom: 25px;
}

.zirve-footer__desc {
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 320px;
}

.zirve-footer__socials {
    display: flex;
    gap: 15px;
}

.zirve-footer__socials a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.zirve-footer__socials a:hover {
    background: #FFA201;
    border-color: #FFA201;
    transform: translateY(-3px);
}

.zirve-footer__title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: -0.02em;
}

.zirve-footer__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #FFA201;
    border-radius: 2px;
}

.zirve-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zirve-footer__links li {
    margin-bottom: 14px;
}

.zirve-footer__links a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
}

.zirve-footer__links a::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 8px;
    margin-right: 10px;
    opacity: 0.5;
    transition: 0.3s;
}

.zirve-footer__links a:hover {
    color: #FFA201;
    transform: translateX(5px);
}

.zirve-footer__links a:hover::before {
    opacity: 1;
    color: #FFA201;
}

.zirve-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zirve-footer__contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.zirve-footer__contact i {
    color: #FFA201;
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

.zirve-footer__contact span,
.zirve-footer__contact a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
    line-height: 1.6;
}

.zirve-footer__contact a:hover {
    color: #fff;
}

.zirve-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

/* ---- Wholesale Features Grid ---- */
.zirve-features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin: 40px 0;
}

@media (min-width: 768px) {
    .zirve-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.zirve-feature-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.zirve-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(243, 155, 47, 0.3);
}

.zirve-feature-card i {
    font-size: 32px;
    color: #FFA201;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.zirve-feature-card:hover i {
    transform: scale(1.1);
}

.zirve-feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #333;
}

.zirve-feature-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---- Swiper Pagination ---- */
body.zirve-theme .zirve-hero--banner .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: rgba(255, 255, 255, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    opacity: 1 !important;
    border-radius: 50% !important;
    margin: 0 4px !important;
    transition: all 0.3s ease !important;
}

/* Ensure horizontal pagination for banner */
body.zirve-theme .zirve-hero--banner .swiper-pagination {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
}

body.zirve-theme .zirve-hero--banner .swiper-pagination-bullet-active {
    background: #fff !important;
    width: 24px !important;
    border-radius: 5px !important;
    border-color: #fff !important;
}

/* ---- Contact Form ---- */
.zirve-contact-form .form-group {
    margin-bottom: 20px;
}

.zirve-contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--zirve-dark);
    font-size: 14px;
}

.zirve-contact-form input,
.zirve-contact-form textarea,
.zirve-contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #fff;
}

.zirve-contact-form input:focus,
.zirve-contact-form textarea:focus,
.zirve-contact-form select:focus {
    outline: none;
    border-color: var(--zirve-primary);
    box-shadow: 0 0 0 3px rgba(41, 100, 170, 0.1);
}

.zirve-contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   CONTACT PAGE - QUICK CONTACT STRIP
   ============================================ */
body.zirve-theme .zirve-cq {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

body.zirve-theme .zirve-cq__card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 20px;
    background: var(--zirve-surface);
    border: 1px solid var(--zirve-border);
    border-radius: var(--zirve-radius-md);
    text-decoration: none;
    color: var(--zirve-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

body.zirve-theme a.zirve-cq__card:hover {
    border-color: var(--zirve-primary);
    box-shadow: 0 8px 30px rgba(41, 100, 170, 0.10);
    transform: translateY(-2px);
}

body.zirve-theme .zirve-cq__card--whatsapp:hover {
    border-color: #25d366 !important;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.12) !important;
}

body.zirve-theme .zirve-cq__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(41, 100, 170, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--zirve-primary);
    font-size: 17px;
    transition: all 0.3s ease;
}

body.zirve-theme .zirve-cq__card--whatsapp .zirve-cq__icon {
    background: rgba(37, 211, 102, 0.08);
    color: #25d366;
}

body.zirve-theme a.zirve-cq__card:hover .zirve-cq__icon {
    background: var(--zirve-primary);
    color: #fff;
}

body.zirve-theme .zirve-cq__card--whatsapp:hover .zirve-cq__icon {
    background: #25d366 !important;
    color: #fff !important;
}

body.zirve-theme .zirve-cq__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

body.zirve-theme .zirve-cq__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
}

body.zirve-theme .zirve-cq__value {
    font-size: 14px;
    font-weight: 600;
    color: var(--zirve-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.zirve-theme .zirve-cq__arrow {
    font-size: 12px;
    color: #cbd5e1;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

body.zirve-theme a.zirve-cq__card:hover .zirve-cq__arrow {
    color: var(--zirve-primary);
    transform: translateX(3px);
}

body.zirve-theme .zirve-cq__card--whatsapp:hover .zirve-cq__arrow {
    color: #25d366 !important;
}

@media (max-width: 991px) {
    body.zirve-theme .zirve-cq {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    body.zirve-theme .zirve-cq {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTACT PAGE - GRID (FORM + MAP)
   ============================================ */
body.zirve-theme .zirve-contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: start;
}

body.zirve-theme .zirve-contact-form-wrap {
    background: var(--zirve-surface);
    border: 1px solid var(--zirve-border);
    border-radius: var(--zirve-radius-lg);
    padding: 44px;
}

body.zirve-theme .zirve-contact-form-header {
    margin-bottom: 32px;
}

body.zirve-theme .zirve-contact-form-header .zirve-title {
    font-size: 24px;
    margin: 0 0 8px;
}

body.zirve-theme .zirve-contact-form-header p {
    color: var(--zirve-muted-text);
    font-size: 15px;
    margin: 0;
}

/* Map container */
body.zirve-theme .zirve-contact-side {
    position: sticky;
    top: 120px;
}

body.zirve-theme .zirve-contact-map {
    border-radius: var(--zirve-radius-lg);
    overflow: hidden;
    border: 1px solid var(--zirve-border);
    height: 380px;
    box-shadow: var(--zirve-shadow-soft);
}

body.zirve-theme .zirve-contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Address card below map */
body.zirve-theme .zirve-contact-address {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 16px;
    padding: 24px;
    background: var(--zirve-surface);
    border: 1px solid var(--zirve-border);
    border-radius: var(--zirve-radius-md);
}

body.zirve-theme .zirve-contact-address__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(41, 100, 170, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--zirve-primary);
    font-size: 16px;
}

body.zirve-theme .zirve-contact-address h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 4px;
    color: var(--zirve-dark);
}

body.zirve-theme .zirve-contact-address p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    body.zirve-theme .zirve-contact-grid {
        grid-template-columns: 1fr;
    }
    body.zirve-theme .zirve-contact-side {
        position: static;
    }
    body.zirve-theme .zirve-contact-map {
        height: 300px;
    }
}

@media (max-width: 576px) {
    body.zirve-theme .zirve-contact-form-wrap {
        padding: 28px 20px;
    }
}

/* ---- WhatsApp Floating Button ---- */
.zirve-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.zirve-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* ---- Scroll to Top ---- */
.zirve-scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9998;
    width: 45px;
    height: 45px;
    background: var(--zirve-primary);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.zirve-scroll-top.is-visible {
    display: flex;
}

.zirve-scroll-top:hover {
    transform: translateY(-3px);
    background: var(--zirve-accent);
}

/* ---- Alert Messages ---- */
.zirve-alert {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 15px;
}

.zirve-alert--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.zirve-alert--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ---- Animation ---- */
@keyframes zirve-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .zirve-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px 30px;
    }

    body.zirve-theme .zirve-vertical {
        grid-template-columns: 1fr;
    }

    body.zirve-theme .zirve-vertical__panel {
        grid-template-columns: 1fr;
    }

    body.zirve-theme .zirve-grid--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.zirve-theme .zirve-grid--2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    body.zirve-theme .zirve-hero__grid {
        grid-template-columns: 1fr;
    }

    body.zirve-theme .zirve-grid--3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .zirve-footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .zirve-footer {
        padding: 60px 0 30px;
    }

    .zirve-footer__title {
        margin-bottom: 20px;
    }
}

/* ============================================
   BOOTSTRAP-LIKE GRID SYSTEM
   ============================================ */
body.zirve-theme .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

body.zirve-theme .row>[class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

body.zirve-theme .col-lg-3 {
    width: 25%;
}

body.zirve-theme .col-lg-4 {
    width: 33.333%;
}

body.zirve-theme .col-lg-5 {
    width: 41.666%;
}

body.zirve-theme .col-lg-6 {
    width: 50%;
}

body.zirve-theme .col-lg-7 {
    width: 58.333%;
}

body.zirve-theme .col-lg-8 {
    width: 66.666%;
}

body.zirve-theme .col-lg-12 {
    width: 100%;
}

body.zirve-theme .container-fluid {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

body.zirve-theme .align-items-center {
    align-items: center;
}

body.zirve-theme .text-center {
    text-align: center;
}

body.zirve-theme .d-block {
    display: block;
}

body.zirve-theme .d-xl-none {
    display: none;
}

body.zirve-theme .order-sm-last {
    order: 99;
}

body.zirve-theme .order-lg-last {
    order: 99;
}

@media (max-width: 1199px) {
    body.zirve-theme .d-xl-none {
        display: block;
    }
}

@media (min-width: 992px) {
    body.zirve-theme .order-sm-last {
        order: unset;
    }
}

@media (max-width: 991px) {
    body.zirve-theme .col-md-2 {
        width: 16.666%;
    }

    body.zirve-theme .col-md-4 {
        width: 33.333%;
    }

    body.zirve-theme .col-md-8 {
        width: 66.666%;
    }

    body.zirve-theme .col-md-12 {
        width: 100%;
    }
}

@media (max-width: 575px) {
    body.zirve-theme .col-sm-4 {
        width: 33.333%;
    }

    body.zirve-theme .col-sm-8 {
        width: 66.666%;
    }
}

@media (max-width: 991px) {

    body.zirve-theme .col-lg-3,
    body.zirve-theme .col-lg-4,
    body.zirve-theme .col-lg-5,
    body.zirve-theme .col-lg-6,
    body.zirve-theme .col-lg-7,
    body.zirve-theme .col-lg-8 {
        width: 100%;
    }

    body.zirve-theme .row>[class*="col-"]+[class*="col-"] {
        margin-top: 30px;
    }

    body.zirve-theme .row>[class*="col-"][style*="padding-left: 40px"] {
        padding-left: 15px !important;
    }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
@keyframes zirveRevealUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zirveRevealScale {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-stagger]>[data-reveal] {
    transition-delay: calc(var(--stagger-index, 0) * 120ms);
}

/* ============================================
   VERTICAL SHOWCASE (Category Showcase)
   ============================================ */
body.zirve-theme .zirve-vertical {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

body.zirve-theme .zirve-vertical__nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

body.zirve-theme .zirve-vertical__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: var(--zirve-radius-sm);
    transition: all 0.3s ease;
    text-align: left;
    font-size: 15px;
    color: var(--zirve-muted-text);
    font-family: inherit;
}

body.zirve-theme .zirve-vertical__item:hover {
    background: rgba(41, 100, 170, 0.06);
    color: var(--zirve-primary);
}

body.zirve-theme .zirve-vertical__item.is-active {
    background: var(--zirve-primary);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(41, 100, 170, 0.3);
}

body.zirve-theme .zirve-vertical__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
    opacity: 0.5;
}

body.zirve-theme .zirve-vertical__item.is-active .zirve-vertical__dot {
    background: #fff;
    opacity: 1;
}

body.zirve-theme .zirve-vertical__label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.zirve-theme .zirve-vertical__panel {
    background: transparent;
    border-radius: var(--zirve-radius-lg);
    overflow: hidden;
    box-shadow: none;
}

body.zirve-theme .zirve-vertical__media {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

body.zirve-theme .zirve-vertical__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

body.zirve-theme .zirve-vertical__panel:hover .zirve-vertical__media img {
    transform: scale(1.03);
}

body.zirve-theme .zirve-vertical__content {
    padding: 30px;
}

body.zirve-theme .zirve-vertical__content p {
    color: var(--zirve-muted-text);
    line-height: 1.7;
    margin: 0 0 20px;
    font-size: 15px;
}

body.zirve-theme .zirve-vertical__more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--zirve-primary);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

body.zirve-theme .zirve-vertical__more:hover {
    gap: 14px;
}

body.zirve-theme .zirve-vertical__more-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(41, 100, 170, 0.1);
    border-radius: 50%;
    font-size: 13px;
    color: var(--zirve-primary);
    transition: all 0.3s ease;
}

body.zirve-theme .zirve-vertical__more:hover .zirve-vertical__more-arrow {
    background: var(--zirve-primary);
    color: #fff;
}

@media (max-width: 991px) {
    body.zirve-theme .zirve-vertical {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    body.zirve-theme .zirve-vertical__nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    body.zirve-theme .zirve-vertical__item {
        white-space: nowrap;
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* ============================================
   FEATURE GRID (Home page highlights)
   ============================================ */
body.zirve-theme .zirve-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 30px;
}

body.zirve-theme .zirve-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

body.zirve-theme .zirve-feature-card {
    background: var(--zirve-surface);
    border-radius: var(--zirve-radius-md);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--zirve-shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.zirve-theme .zirve-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--zirve-shadow);
}

body.zirve-theme .zirve-feature-card i,
body.zirve-theme .zirve-feature-card__icon {
    font-size: 28px;
    color: var(--zirve-primary);
    margin-bottom: 16px;
}

body.zirve-theme .zirve-feature-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(41, 100, 170, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

body.zirve-theme .zirve-feature-card h3,
body.zirve-theme .zirve-feature-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--zirve-dark);
    margin: 0 0 8px;
}

body.zirve-theme .zirve-feature-card p {
    font-size: 14px;
    color: var(--zirve-muted-text);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {

    body.zirve-theme .zirve-features-grid,
    body.zirve-theme .zirve-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SHOWCASE GALLERY & SOCIAL ICONS (Home)
   ============================================ */
body.zirve-theme .zirve-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(41, 100, 170, 0.1);
    color: var(--zirve-primary);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

body.zirve-theme .zirve-social-icon:hover {
    background: var(--zirve-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   CTA BANNER (Bizden fiyat almadan)
   ============================================ */
body.zirve-theme .zirve-cta-banner {
    background: linear-gradient(135deg, #0f172a 0%, #2964AA 100%) !important;
    padding: 50px 0 !important;
    border: none !important;
}

body.zirve-theme .zirve-cta-banner h3 {
    color: #fff !important;
    font-size: 28px !important;
    font-weight: 800 !important;
}

body.zirve-theme .zirve-cta-banner p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 18px !important;
}

body.zirve-theme .zirve-cta-banner .zirve-social-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

body.zirve-theme .zirve-cta-banner .zirve-social-icon:hover {
    background: var(--zirve-accent);
}

@media (max-width: 991px) {
    body.zirve-theme .zirve-cta-banner .row {
        text-align: center;
    }

    body.zirve-theme .zirve-cta-banner .row>[class*="col-"] {
        width: 100%;
        margin-top: 20px;
    }

    body.zirve-theme .zirve-cta-banner .zirve-social-links {
        justify-content: center !important;
    }
}

/* ============================================
   HERO BANNER SLIDER FIXES
   ============================================ */
body.zirve-theme .zirve-hero--banner {
    padding: 0;
}

body.zirve-theme .zirve-hero__frame {
    border-radius: 0;
    overflow: hidden;
}

body.zirve-theme .zirve-hero__frame .swiper-container {
    width: 100%;
}

body.zirve-theme .zirve-hero__frame img {
    width: 100%;
    height: auto;
    display: block;
}

body.zirve-theme .bdt-panel-slide-thumb-wrapper {
    overflow: hidden;
}

body.zirve-theme .bdt-panel-slide-thumb-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

body.zirve-theme .swiper-wrapper {
    display: flex;
}

body.zirve-theme .swiper-slide {
    flex-shrink: 0;
    width: 100%;
}

body.zirve-theme .bdt-dots-container {
    padding: 15px 0;
}

body.zirve-theme .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.zirve-theme .swiper-pagination-bullet-active {
    background: var(--zirve-accent);
    transform: scale(1.3);
}

body.zirve-theme .bdt-position-bottom-center {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

body.zirve-theme .bdt-position-z-index {
    z-index: 10;
}

/* Hero actions center */
body.zirve-theme .zirve-actions-center {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   PRODUCT CARD IMPROVEMENTS
   ============================================ */
body.zirve-theme .zirve-card--product {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    background: var(--zirve-surface);
    border-radius: var(--zirve-radius-md);
    overflow: hidden;
    box-shadow: var(--zirve-shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.zirve-theme .zirve-card--product:hover {
    transform: translateY(-5px);
    box-shadow: var(--zirve-shadow);
}

body.zirve-theme .zirve-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--zirve-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.zirve-theme .zirve-card__meta {
    font-size: 13px;
    color: var(--zirve-primary);
    margin-bottom: 6px;
    font-weight: 500;
}

body.zirve-theme .zirve-card__price {
    font-size: 16px;
    font-weight: 700;
    color: var(--zirve-dark);
    margin-bottom: 12px;
}

body.zirve-theme .zirve-card__action {
    font-size: 14px;
    font-weight: 600;
    color: var(--zirve-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

body.zirve-theme .zirve-card--product:hover .zirve-card__action {
    gap: 12px;
}

body.zirve-theme .zirve-grid--products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    body.zirve-theme .zirve-grid--products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    body.zirve-theme .zirve-grid--products {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MV CARDS (Mission Vision - About page)
   ============================================ */
body.zirve-theme .zirve-mv {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

body.zirve-theme .zirve-mv__card {
    background: var(--zirve-surface);
    border-radius: var(--zirve-radius-md);
    box-shadow: var(--zirve-shadow-soft);
}

@media (max-width: 767px) {
    body.zirve-theme .zirve-mv {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   STAT CARDS (About page - Rakamlarla)
   ============================================ */
body.zirve-theme .zirve-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

body.zirve-theme .zirve-stat-card {
    background: var(--zirve-surface);
    border-radius: var(--zirve-radius-md);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--zirve-shadow-soft);
}

body.zirve-theme .zirve-stat-card__value {
    font-family: "Space Grotesk", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--zirve-primary);
    line-height: 1;
    margin-bottom: 8px;
}

body.zirve-theme .zirve-stat-card__label {
    font-size: 14px;
    color: var(--zirve-muted-text);
    font-weight: 500;
}

@media (max-width: 767px) {
    body.zirve-theme .zirve-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   STICKY HEADER
   ============================================ */
body.zirve-theme .header-pos {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    transition: all 0.4s ease;
}

body.zirve-theme .header-pos.is-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.zirve-theme .header-pos.is-scrolled .header-middle {
    padding: 6px 0;
    transition: padding 0.4s ease;
}

body.zirve-theme .header-pos.is-scrolled .logo img {
    width: 180px !important;
    transition: width 0.4s ease;
}

body.zirve-theme .header-pos .logo img {
    transition: width 0.4s ease;
}

body.zirve-theme .header-pos.is-scrolled .header-top-menu {
    padding: 4px 0;
    transition: padding 0.4s ease;
}

/* ============================================
   FEATURE CARD - DUAL OVERLAY HOVER (Referans)
   ============================================ */
body.zirve-theme .zirve-feature-card {
    position: relative;
    overflow: hidden;
    cursor: default;
    border: 1px solid transparent;
}

body.zirve-theme .zirve-feature-card::before {
    content: "";
    position: absolute;
    left: -1px;
    bottom: -1px;
    width: calc(100% + 2px);
    height: 0;
    background: var(--zirve-primary);
    transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    border-radius: 0 0 var(--zirve-radius-md) var(--zirve-radius-md);
}

body.zirve-theme .zirve-feature-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 162, 1, 0.92);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    border-radius: var(--zirve-radius-md);
}

body.zirve-theme .zirve-feature-card:hover {
    border-color: var(--zirve-accent);
    transform: translateY(-6px);
}

body.zirve-theme .zirve-feature-card:hover::after {
    opacity: 1;
}

body.zirve-theme .zirve-feature-card:hover::before {
    height: 70px;
}

body.zirve-theme .zirve-feature-card:hover i,
body.zirve-theme .zirve-feature-card:hover h3,
body.zirve-theme .zirve-feature-card:hover h4,
body.zirve-theme .zirve-feature-card:hover p {
    color: #fff;
    position: relative;
    z-index: 2;
}

body.zirve-theme .zirve-feature-card:hover .zirve-feature-card__icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    position: relative;
    z-index: 2;
}

/* ============================================
   PRODUCT CARD - HOVER OVERLAY (Referans)
   ============================================ */
body.zirve-theme .zirve-card--product {
    position: relative;
    overflow: hidden;
}

body.zirve-theme .zirve-card--product .zirve-card__media {
    position: relative;
    overflow: hidden;
    height: 220px;
    padding: 12px;
    min-height: 0;
    background: #fff;
}

body.zirve-theme .zirve-card--product .zirve-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

body.zirve-theme .zirve-card--product {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.zirve-theme .zirve-card--product:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

body.zirve-theme .zirve-card--product:hover .zirve-card__media img {
    transform: scale(1.03);
}

body.zirve-theme .zirve-card--product .zirve-card__media::after {
    display: none;
}

body.zirve-theme .zirve-card--product:hover .zirve-card__title {
    color: var(--zirve-accent);
}

body.zirve-theme .zirve-card--product:hover .zirve-card__action {
    color: var(--zirve-accent);
    background: var(--zirve-dark);
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
}

/* ============================================
   BLOG CARD - HOVER OVERLAY (Referans)
   ============================================ */
body.zirve-theme .zirve-card--blog {
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

body.zirve-theme .zirve-card--blog:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

body.zirve-theme .zirve-card--blog .zirve-card__media img {
    transition: transform 0.6s ease;
}

body.zirve-theme .zirve-card--blog:hover .zirve-card__media img {
    transform: scale(1.08);
}

body.zirve-theme .zirve-card--blog .zirve-card__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--zirve-primary);
    transition: gap 0.3s ease, color 0.3s ease;
}

body.zirve-theme .zirve-card--blog .zirve-card__link::after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    transition: transform 0.3s ease;
}

body.zirve-theme .zirve-card--blog:hover .zirve-card__link::after {
    transform: translateX(4px);
}

/* ============================================
   FLOATING LABEL FORM (Referans - İletişim)
   ============================================ */
body.zirve-theme .zirve-float-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

body.zirve-theme .zirve-float-form label {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    background: transparent;
}

body.zirve-theme .zirve-float-form input,
body.zirve-theme .zirve-float-form textarea,
body.zirve-theme .zirve-float-form select {
    width: 100%;
    padding: 24px 20px 10px;
    font-size: 15px;
    font-family: inherit;
    border: 2px solid #e2e8f0;
    border-radius: var(--zirve-radius-sm);
    background: #fff;
    color: var(--zirve-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

body.zirve-theme .zirve-float-form textarea {
    min-height: 140px;
    resize: vertical;
}

body.zirve-theme .zirve-float-form input:focus,
body.zirve-theme .zirve-float-form textarea:focus,
body.zirve-theme .zirve-float-form select:focus {
    border-color: var(--zirve-primary);
    box-shadow: 0 0 0 4px rgba(41, 100, 170, 0.1);
}

body.zirve-theme .zirve-float-form input:focus+label,
body.zirve-theme .zirve-float-form textarea:focus+label,
body.zirve-theme .zirve-float-form input:not(:placeholder-shown)+label,
body.zirve-theme .zirve-float-form textarea:not(:placeholder-shown)+label,
body.zirve-theme .zirve-float-form input.has-value+label,
body.zirve-theme .zirve-float-form textarea.has-value+label {
    top: 6px;
    font-size: 11px;
    color: var(--zirve-primary);
    font-weight: 600;
}

body.zirve-theme .zirve-float-form .form-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
}

body.zirve-theme .zirve-float-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    body.zirve-theme .zirve-float-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Submit button */
body.zirve-theme .zirve-btn--submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    width: 100%;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body.zirve-theme .zirve-btn--submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(41, 100, 170, 0.25);
}

body.zirve-theme .zirve-btn--submit i {
    transition: transform 0.3s ease;
}

body.zirve-theme .zirve-btn--submit:hover i {
    transform: translateX(3px);
}

/* ============================================
   DECORATIVE BACKGROUND SHAPES (Referans)
   ============================================ */
body.zirve-theme .zirve-deco-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.06;
}

body.zirve-theme .zirve-section--paper:has(.zirve-showcase) {
    background: #fff;
}

body.zirve-theme .zirve-section--paper:has(.zirve-showcase)::before,
body.zirve-theme .zirve-section--paper:has(.zirve-showcase)::after {
    display: none;
}

body.zirve-theme .zirve-section--paper {
    position: relative;
    overflow: hidden;
}

body.zirve-theme .zirve-section--paper::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--zirve-primary) 0%, transparent 70%);
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

body.zirve-theme .zirve-section--paper::after {
    content: "";
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--zirve-accent) 0%, transparent 70%);
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

body.zirve-theme .zirve-section--contrast {
    position: relative;
    overflow: hidden;
}

body.zirve-theme .zirve-section--contrast::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    border: 2px solid rgba(41, 100, 170, 0.08);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

body.zirve-theme .zirve-section--contrast::after {
    content: "";
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(255, 162, 1, 0.06);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   SECTION KICKER - ANIMATED DOT (Referans)
   ============================================ */
body.zirve-theme .zirve-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--zirve-accent);
    margin-bottom: 12px;
    position: relative;
}

body.zirve-theme .zirve-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--zirve-accent);
    animation: zirveKickerPulse 2s infinite;
}

@keyframes zirveKickerPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

body.zirve-theme .zirve-kicker--dark {
    color: var(--zirve-primary);
}

body.zirve-theme .zirve-kicker--dark::before {
    background: var(--zirve-primary);
}

/* ============================================
   REFERENCE GRID - LOGO HOVER (Referans)
   ============================================ */
body.zirve-theme .zirve-reference-item {
    padding: 24px;
    border-radius: var(--zirve-radius-md);
    background: var(--zirve-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

body.zirve-theme .zirve-reference-item img {
    max-height: 60px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

body.zirve-theme .zirve-reference-item:hover {
    border-color: var(--zirve-border);
    box-shadow: var(--zirve-shadow-soft);
    transform: translateY(-3px);
}

body.zirve-theme .zirve-reference-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   CTA CALLOUT - PREMIUM
   ============================================ */

@keyframes zirve-mesh {
    0%, 100% {
        background-position: 0% 50%, 100% 20%, 60% 80%, center;
    }
    33% {
        background-position: 100% 30%, 20% 80%, 40% 20%, center;
    }
    66% {
        background-position: 40% 80%, 80% 10%, 10% 60%, center;
    }
}

/* CTA variant — animated mesh gradient */
body.zirve-theme .zirve-callout:has(.zirve-callout__actions) {
    background:
        radial-gradient(circle 500px, rgba(255, 162, 1, 0.14) 0%, transparent 70%),
        radial-gradient(circle 400px, rgba(41, 100, 170, 0.28) 0%, transparent 70%),
        radial-gradient(circle 350px, rgba(100, 60, 180, 0.08) 0%, transparent 70%),
        linear-gradient(160deg, #060c18 0%, #0b1a30 100%);
    background-size: 80% 80%, 70% 70%, 60% 60%, 100% 100%;
    animation: zirve-mesh 14s ease-in-out infinite;
    color: #fff;
    border-radius: 28px;
    padding: 80px 64px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 8px 80px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Geometric wedge — top right */
body.zirve-theme .zirve-callout:has(.zirve-callout__actions)::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -8%;
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, rgba(255, 162, 1, 0.08), rgba(255, 162, 1, 0.02));
    border: 1px solid rgba(255, 162, 1, 0.06);
    border-radius: 48px;
    transform: rotate(35deg);
    pointer-events: none;
    z-index: 0;
}

/* Geometric wedge — bottom left */
body.zirve-theme .zirve-callout:has(.zirve-callout__actions)::after {
    content: "";
    position: absolute;
    bottom: -25%;
    left: -10%;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(41, 100, 170, 0.06), rgba(41, 100, 170, 0.02));
    border: 1px solid rgba(41, 100, 170, 0.06);
    border-radius: 48px;
    transform: rotate(-20deg);
    pointer-events: none;
    z-index: 0;
}

/* Badge — pill tag */
body.zirve-theme .zirve-callout__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--zirve-accent);
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
    padding: 6px 20px;
    background: rgba(255, 162, 1, 0.08);
    border: 1px solid rgba(255, 162, 1, 0.15);
    border-radius: 50px;
}

/* Heading */
body.zirve-theme .zirve-callout:has(.zirve-callout__actions) .zirve-heading,
body.zirve-theme .zirve-callout:has(.zirve-callout__actions) h3 {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0 0 18px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

/* Description */
body.zirve-theme .zirve-callout:has(.zirve-callout__actions) p {
    color: rgba(255, 255, 255, 0.50);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 auto 42px;
    max-width: 440px;
    position: relative;
    z-index: 1;
}

/* Actions */
body.zirve-theme .zirve-callout:has(.zirve-callout__actions) .zirve-callout__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Primary button — frosted glass */
body.zirve-theme .zirve-callout .zirve-btn--primary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 700;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body.zirve-theme .zirve-callout .zirve-btn--primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--zirve-dark);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* Accent button — glowing gold */
body.zirve-theme .zirve-callout .zirve-btn--accent {
    background: linear-gradient(135deg, var(--zirve-accent), #e8920a);
    color: #fff;
    border: none;
    font-weight: 700;
    box-shadow:
        0 4px 20px rgba(255, 162, 1, 0.30),
        0 0 40px rgba(255, 162, 1, 0.10);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body.zirve-theme .zirve-callout .zirve-btn--accent:hover {
    background: linear-gradient(135deg, #ffb429, #fbbf24);
    color: #fff;
    transform: translateY(-2px);
    box-shadow:
        0 8px 32px rgba(255, 162, 1, 0.40),
        0 0 60px rgba(255, 162, 1, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    body.zirve-theme .zirve-callout:has(.zirve-callout__actions) {
        padding: 56px 24px 48px;
        border-radius: 20px;
    }
    body.zirve-theme .zirve-callout:has(.zirve-callout__actions) .zirve-heading,
    body.zirve-theme .zirve-callout:has(.zirve-callout__actions) h3 {
        font-size: 26px;
    }
    body.zirve-theme .zirve-callout:has(.zirve-callout__actions) p {
        font-size: 15px;
    }
    body.zirve-theme .zirve-callout:has(.zirve-callout__actions)::before {
        width: 200px;
        height: 200px;
    }
    body.zirve-theme .zirve-callout:has(.zirve-callout__actions)::after {
        width: 150px;
        height: 150px;
    }
}

/* ============================================
   SECTION TITLE - ENHANCED (Referans)
   ============================================ */
body.zirve-theme .zirve-title {
    font-weight: 800;
    color: var(--zirve-dark);
    line-height: 1.2;
    margin: 0 0 16px;
}

body.zirve-theme .zirve-title--hero {
    font-size: clamp(24px, 3vw, 34px);
    margin-bottom: 8px;
}

body.zirve-theme .zirve-subtitle {
    font-size: 15px;
    color: var(--zirve-muted-text);
    line-height: 1.6;
    max-width: 600px;
}

body.zirve-theme .zirve-section__head--center {
    text-align: center;
}

body.zirve-theme .zirve-section__head--center .zirve-subtitle {
    margin-left: auto;
    margin-right: auto;
}

body.zirve-theme .zirve-section__head {
    margin-bottom: 28px;
}

/* ============================================
   BUTTONS - ENHANCED (Referans)
   ============================================ */
body.zirve-theme .zirve-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.3px;
}

body.zirve-theme .zirve-btn--primary {
    background: var(--zirve-primary);
    color: #fff;
    border-color: var(--zirve-primary);
}

body.zirve-theme .zirve-btn--primary:hover {
    background: var(--zirve-dark);
    border-color: var(--zirve-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 100, 170, 0.3);
}

body.zirve-theme .zirve-btn--accent {
    background: var(--zirve-accent);
    color: #fff;
    border-color: var(--zirve-accent);
}

body.zirve-theme .zirve-btn--accent:hover {
    background: #FFA201;
    border-color: #FFA201;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 162, 1, 0.3);
}

body.zirve-theme .zirve-btn--outline {
    background: transparent;
    color: var(--zirve-primary);
    border-color: var(--zirve-primary);
}

body.zirve-theme .zirve-btn--outline:hover {
    background: var(--zirve-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   PAGE HERO - ENHANCED (Referans)
   ============================================ */
body.zirve-theme .zirve-page-hero {
    padding: 28px 0 20px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef4 100%);
    position: relative;
    overflow: hidden;
}

body.zirve-theme .zirve-page-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--zirve-primary) 0%, transparent 70%);
    opacity: 0.05;
    pointer-events: none;
}

body.zirve-theme .zirve-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--zirve-muted-text);
    margin-bottom: 10px;
}

body.zirve-theme .zirve-breadcrumbs a {
    color: var(--zirve-primary);
    text-decoration: none;
    transition: color 0.3s;
}

body.zirve-theme .zirve-breadcrumbs a:hover {
    color: var(--zirve-accent);
}

body.zirve-theme .zirve-breadcrumbs span {
    color: var(--zirve-muted-text);
}

/* ============================================
   FOOTER - ENHANCED (Referans)
   ============================================ */
body.zirve-theme .zirve-footer {
    background: linear-gradient(180deg, #0f172a 0%, #0a1022 100%);
    color: #fff;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

body.zirve-theme .zirve-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--zirve-primary), var(--zirve-accent), var(--zirve-primary));
}

body.zirve-theme .zirve-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

body.zirve-theme .zirve-footer__logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

body.zirve-theme .zirve-footer__desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

body.zirve-theme .zirve-footer__title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

body.zirve-theme .zirve-footer__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background: var(--zirve-accent);
    border-radius: 2px;
}

body.zirve-theme .zirve-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.zirve-theme .zirve-footer__links li {
    margin-bottom: 10px;
}

body.zirve-theme .zirve-footer__links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

body.zirve-theme .zirve-footer__links a::before {
    content: "";
    width: 0;
    height: 2px;
    background: var(--zirve-accent);
    transition: width 0.3s ease;
}

body.zirve-theme .zirve-footer__links a:hover {
    color: #fff;
    transform: translateX(4px);
}

body.zirve-theme .zirve-footer__links a:hover::before {
    width: 12px;
}

body.zirve-theme .zirve-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.zirve-theme .zirve-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

body.zirve-theme .zirve-footer__contact li i {
    color: var(--zirve-accent);
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}

body.zirve-theme .zirve-footer__contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

body.zirve-theme .zirve-footer__contact a:hover {
    color: var(--zirve-accent);
}

body.zirve-theme .zirve-footer__socials {
    display: flex;
    gap: 10px;
}

body.zirve-theme .zirve-footer__socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.zirve-theme .zirve-footer__socials a:hover {
    background: var(--zirve-accent);
    color: #fff;
    border-color: var(--zirve-accent);
    transform: translateY(-3px);
}

body.zirve-theme .zirve-footer__bottom {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

body.zirve-theme .zirve-footer__bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin: 0;
}

@media (max-width: 991px) {
    body.zirve-theme .zirve-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
}

@media (max-width: 576px) {
    body.zirve-theme .zirve-footer__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ALERT - ENHANCED (Referans)
   ============================================ */
body.zirve-theme .zirve-alert {
    padding: 16px 24px;
    border-radius: var(--zirve-radius-sm);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

body.zirve-theme .zirve-alert--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

body.zirve-theme .zirve-alert--success::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    color: #10b981;
}

body.zirve-theme .zirve-alert--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
body.zirve-theme .zirve-pd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Gallery */
body.zirve-theme .zirve-pd__gallery {
    position: relative;
    z-index: 2;
}

body.zirve-theme .zirve-pd__info {
    position: relative;
    z-index: 1;
}

body.zirve-theme .zirve-pd__main-image {
    position: relative;
    background: #fff;
    border-radius: var(--zirve-radius-lg);
    border: 1px solid var(--zirve-border);
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 24px;
    cursor: crosshair;
}

body.zirve-theme .zirve-pd__main-image img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
}

body.zirve-theme .zirve-pd__zoom-lens {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid var(--zirve-primary);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s;
    z-index: 5;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5), 0 4px 16px rgba(0, 0, 0, 0.15);
}

body.zirve-theme .zirve-pd__zoom-result {
    position: absolute;
    top: 0;
    left: calc(100% + 16px);
    width: 400px;
    height: 400px;
    border: 1px solid var(--zirve-border);
    border-radius: var(--zirve-radius-lg);
    background-repeat: no-repeat;
    background-color: #fff;
    box-shadow: var(--zirve-shadow);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 9999;
}

body.zirve-theme .zirve-pd__main-image:hover .zirve-pd__zoom-lens,
body.zirve-theme .zirve-pd__main-image:hover .zirve-pd__zoom-result {
    opacity: 1;
}

body.zirve-theme .zirve-pd__no-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #d1d5db;
    font-size: 14px;
}

body.zirve-theme .zirve-pd__no-image i {
    font-size: 56px;
}

body.zirve-theme .zirve-pd__thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
}

body.zirve-theme .zirve-pd__thumb {
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid var(--zirve-border);
    background: #fff;
    border-radius: var(--zirve-radius-sm);
    padding: 6px;
    cursor: pointer;
    flex: 0 0 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s;
}

body.zirve-theme .zirve-pd__thumb:hover {
    border-color: var(--zirve-primary);
}

body.zirve-theme .zirve-pd__thumb.is-active {
    border-color: var(--zirve-accent);
}

body.zirve-theme .zirve-pd__thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Info */
body.zirve-theme .zirve-pd__title {
    font-size: 28px;
    font-weight: 800;
    color: var(--zirve-ink);
    line-height: 1.3;
    margin: 0 0 12px;
}

body.zirve-theme .zirve-pd__category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--zirve-primary);
    text-decoration: none;
    padding: 5px 14px;
    background: rgba(41, 100, 170, 0.08);
    border-radius: 50px;
    transition: background 0.25s;
}

body.zirve-theme .zirve-pd__category:hover {
    background: rgba(41, 100, 170, 0.15);
}

body.zirve-theme .zirve-pd__price {
    margin: 24px 0;
    padding: 20px 0;
    border-top: 1px solid var(--zirve-border);
    border-bottom: 1px solid var(--zirve-border);
}

body.zirve-theme .zirve-pd__price-value {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--zirve-accent);
}

body.zirve-theme .zirve-pd__price-note {
    display: block;
    font-size: 13px;
    color: var(--zirve-muted-text);
    margin-top: 4px;
}

body.zirve-theme .zirve-pd__desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--zirve-text);
    margin-bottom: 28px;
}

body.zirve-theme .zirve-pd__desc p {
    margin: 0 0 12px;
}

body.zirve-theme .zirve-pd__desc p:last-child {
    margin-bottom: 0;
}

/* Features */
body.zirve-theme .zirve-pd__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}

body.zirve-theme .zirve-pd__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 16px 10px;
    border: 1px solid var(--zirve-border);
    border-radius: var(--zirve-radius-sm);
}

body.zirve-theme .zirve-pd__feature i {
    font-size: 18px;
    color: var(--zirve-primary);
}

body.zirve-theme .zirve-pd__feature strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--zirve-ink);
}

body.zirve-theme .zirve-pd__feature span {
    font-size: 12px;
    color: var(--zirve-muted-text);
}

/* Actions */
body.zirve-theme .zirve-pd__actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

body.zirve-theme .zirve-pd__actions .zirve-btn {
    flex: 1;
    justify-content: center;
    text-align: center;
}

body.zirve-theme .zirve-btn--whatsapp {
    background: var(--zirve-whatsapp);
    color: #fff;
    border: none;
}

body.zirve-theme .zirve-btn--whatsapp:hover {
    background: #1da851;
}

body.zirve-theme .zirve-btn--lg {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: var(--zirve-radius-sm);
}

body.zirve-theme .zirve-pd__meta {
    font-size: 13px;
    color: var(--zirve-muted-text);
}

body.zirve-theme .zirve-pd__meta strong {
    color: var(--zirve-ink);
}

/* Responsive */
@media (max-width: 991px) {
    body.zirve-theme .zirve-pd {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    body.zirve-theme .zirve-pd__main-image {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    body.zirve-theme .zirve-pd__title {
        font-size: 22px;
    }

    body.zirve-theme .zirve-pd__actions {
        flex-direction: column;
    }

    body.zirve-theme .zirve-pd__main-image {
        min-height: 240px;
        padding: 16px;
    }
}

/* ============================================
   PROSE (Blog content)
   ============================================ */
body.zirve-theme .zirve-prose {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
}

body.zirve-theme .zirve-prose h2 {
    margin: 40px 0 16px;
    font-size: 24px;
}

body.zirve-theme .zirve-prose h3 {
    margin: 30px 0 12px;
    font-size: 20px;
}

body.zirve-theme .zirve-prose p {
    margin: 0 0 20px;
}

body.zirve-theme .zirve-prose img {
    border-radius: var(--zirve-radius-md);
    max-width: 100%;
    height: auto;
}

body.zirve-theme .zirve-prose a {
    color: var(--zirve-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

body.zirve-theme .zirve-prose ul,
body.zirve-theme .zirve-prose ol {
    padding-left: 24px;
    margin: 0 0 20px;
}

body.zirve-theme .zirve-prose li {
    margin-bottom: 8px;
}

/* ============================================
   PAGINATION - ENHANCED
   ============================================ */
body.zirve-theme .zirve-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

body.zirve-theme .zirve-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--zirve-dark);
    background: var(--zirve-surface);
    border: 1px solid var(--zirve-border);
    text-decoration: none;
    transition: all 0.3s ease;
}

body.zirve-theme .zirve-page-btn:hover {
    background: var(--zirve-primary);
    color: #fff;
    border-color: var(--zirve-primary);
}

body.zirve-theme .zirve-page-btn.is-active {
    background: var(--zirve-primary);
    color: #fff;
    border-color: var(--zirve-primary);
}

body.zirve-theme .zirve-page-btn.is-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}