/* =========================================================================
   OFISIMO THEME  —  Bootstrap-bağımsız, "ofm-" prefixli, çakışmasız sürüm
   -------------------------------------------------------------------------
   - Hiçbir Bootstrap (3/4/5) dosyasına ihtiyaç duymaz.
   - Tüm class'lar "ofm-" ile başlar; global stiller ".ofm-wrap" altına
     scope'lanmıştır (host yazılımın body/başlık stillerini ezmez).
   - İkonlar FontAwesome (fa fa-*) ile çalışır.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --------------------------------------------------------------------- */
/* 1) Değişkenler (host --primary vb. ile çakışmaması için ofm- prefix)   */
/* --------------------------------------------------------------------- */
.ofm-wrap {
    --ofm-bg-light: #faf9f6;
    --ofm-bg-card: rgba(255, 255, 255, 0.75);
    --ofm-primary: #0f172a;
    --ofm-accent: #4f46e5;
    --ofm-accent-light: #e0e7ff;
    --ofm-accent-hover: #4338ca;
    --ofm-text-main: #334155;
    --ofm-text-muted: #64748b;
    --ofm-success: #10b981;
    --ofm-warning: #f59e0b;
    --ofm-danger: #dc2626;
    --ofm-font-heading: 'Outfit', sans-serif;
    --ofm-font-body: 'Plus Jakarta Sans', sans-serif;
    --ofm-transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------- */
/* 2) Scope kökü (body yerine .ofm-wrap)                                  */
/* --------------------------------------------------------------------- */
.ofm-wrap {
    background-color: var(--ofm-bg-light);
    color: var(--ofm-text-main);
    font-family: var(--ofm-font-body);
    font-size: 15.2px;
    line-height: 1.6;
    position: relative;
    box-sizing: border-box;
}
.ofm-wrap *,
.ofm-wrap *::before,
.ofm-wrap *::after { box-sizing: border-box; }

.ofm-wrap h1, .ofm-wrap h2, .ofm-wrap h3,
.ofm-wrap h4, .ofm-wrap h5, .ofm-wrap h6 {
    font-family: var(--ofm-font-heading);
    font-weight: 700;
    color: var(--ofm-primary);
}
.ofm-wrap p { margin-top: 0; }
.ofm-wrap a { text-decoration: none; }
.ofm-wrap ul { margin-top: 0; }

/* Scrollbar (yalnız wrap içi) */
.ofm-wrap ::-webkit-scrollbar { width: 8px; }
.ofm-wrap ::-webkit-scrollbar-track { background: var(--ofm-bg-light); }
.ofm-wrap ::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.08); border-radius: 4px; }
.ofm-wrap ::-webkit-scrollbar-thumb:hover { background: rgba(0, 0, 0, 0.18); }

/* =====================================================================
   3) OFM GRID (container / row / col)  —  Bootstrap davranışını taklit eder
   ===================================================================== */
.ofm-container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 12px;
    padding-left: 12px;
}
@media (min-width: 576px)  { .ofm-container { max-width: 540px; } }
@media (min-width: 768px)  { .ofm-container { max-width: 720px; } }
@media (min-width: 992px)  { .ofm-container { max-width: 960px; } }
@media (min-width: 1200px) { .ofm-container { max-width: 1140px; } }
@media (min-width: 1400px) { .ofm-container { max-width: 1320px; } }

.ofm-row {
    display: flex;
    flex-wrap: wrap;
    --ofm-gx: 24px;
    --ofm-gy: 0px;
    margin-left: calc(-0.5 * var(--ofm-gx));
    margin-right: calc(-0.5 * var(--ofm-gx));
    row-gap: var(--ofm-gy);
}
.ofm-row > [class*="ofm-col"] {
    padding-left: calc(0.5 * var(--ofm-gx));
    padding-right: calc(0.5 * var(--ofm-gx));
}
/* Boyut sınıfı olmayan bir kolon varsa varsayılan tam genişlik (düşük öncelik) */
.ofm-row > [class*="ofm-col"]:not([class*="ofm-col-"]) { flex: 1 0 0%; }

/* Gutter modifikatörleri (g-2..g-5) */
.ofm-g-2 { --ofm-gx: 8px; --ofm-gy: 8px; }
.ofm-g-3 { --ofm-gx: 16px;   --ofm-gy: 16px; }
.ofm-g-4 { --ofm-gx: 24px; --ofm-gy: 24px; }
.ofm-g-5 { --ofm-gx: 48px;   --ofm-gy: 48px; }

/* Temel (xs) kolonlar */
.ofm-col-1  { flex: 0 0 auto; width: 8.3333%; }
.ofm-col-2  { flex: 0 0 auto; width: 16.6667%; }
.ofm-col-3  { flex: 0 0 auto; width: 25%; }
.ofm-col-4  { flex: 0 0 auto; width: 33.3333%; }
.ofm-col-5  { flex: 0 0 auto; width: 41.6667%; }
.ofm-col-6  { flex: 0 0 auto; width: 50%; }
.ofm-col-7  { flex: 0 0 auto; width: 58.3333%; }
.ofm-col-8  { flex: 0 0 auto; width: 66.6667%; }
.ofm-col-9  { flex: 0 0 auto; width: 75%; }
.ofm-col-10 { flex: 0 0 auto; width: 83.3333%; }
.ofm-col-11 { flex: 0 0 auto; width: 91.6667%; }
.ofm-col-12 { flex: 0 0 auto; width: 100%; }

@media (min-width: 576px) {
    .ofm-col-sm-1  { flex: 0 0 auto; width: 8.3333%; }
    .ofm-col-sm-2  { flex: 0 0 auto; width: 16.6667%; }
    .ofm-col-sm-3  { flex: 0 0 auto; width: 25%; }
    .ofm-col-sm-4  { flex: 0 0 auto; width: 33.3333%; }
    .ofm-col-sm-5  { flex: 0 0 auto; width: 41.6667%; }
    .ofm-col-sm-6  { flex: 0 0 auto; width: 50%; }
    .ofm-col-sm-7  { flex: 0 0 auto; width: 58.3333%; }
    .ofm-col-sm-8  { flex: 0 0 auto; width: 66.6667%; }
    .ofm-col-sm-9  { flex: 0 0 auto; width: 75%; }
    .ofm-col-sm-10 { flex: 0 0 auto; width: 83.3333%; }
    .ofm-col-sm-11 { flex: 0 0 auto; width: 91.6667%; }
    .ofm-col-sm-12 { flex: 0 0 auto; width: 100%; }
}
@media (min-width: 768px) {
    .ofm-col-md-1  { flex: 0 0 auto; width: 8.3333%; }
    .ofm-col-md-2  { flex: 0 0 auto; width: 16.6667%; }
    .ofm-col-md-3  { flex: 0 0 auto; width: 25%; }
    .ofm-col-md-4  { flex: 0 0 auto; width: 33.3333%; }
    .ofm-col-md-5  { flex: 0 0 auto; width: 41.6667%; }
    .ofm-col-md-6  { flex: 0 0 auto; width: 50%; }
    .ofm-col-md-7  { flex: 0 0 auto; width: 58.3333%; }
    .ofm-col-md-8  { flex: 0 0 auto; width: 66.6667%; }
    .ofm-col-md-9  { flex: 0 0 auto; width: 75%; }
    .ofm-col-md-10 { flex: 0 0 auto; width: 83.3333%; }
    .ofm-col-md-11 { flex: 0 0 auto; width: 91.6667%; }
    .ofm-col-md-12 { flex: 0 0 auto; width: 100%; }
}
@media (min-width: 992px) {
    .ofm-col-lg-1  { flex: 0 0 auto; width: 8.3333%; }
    .ofm-col-lg-2  { flex: 0 0 auto; width: 16.6667%; }
    .ofm-col-lg-3  { flex: 0 0 auto; width: 25%; }
    .ofm-col-lg-4  { flex: 0 0 auto; width: 33.3333%; }
    .ofm-col-lg-5  { flex: 0 0 auto; width: 41.6667%; }
    .ofm-col-lg-6  { flex: 0 0 auto; width: 50%; }
    .ofm-col-lg-7  { flex: 0 0 auto; width: 58.3333%; }
    .ofm-col-lg-8  { flex: 0 0 auto; width: 66.6667%; }
    .ofm-col-lg-9  { flex: 0 0 auto; width: 75%; }
    .ofm-col-lg-10 { flex: 0 0 auto; width: 83.3333%; }
    .ofm-col-lg-11 { flex: 0 0 auto; width: 91.6667%; }
    .ofm-col-lg-12 { flex: 0 0 auto; width: 100%; }
}
@media (min-width: 1200px) {
    .ofm-col-xl-1  { flex: 0 0 auto; width: 8.3333%; }
    .ofm-col-xl-2  { flex: 0 0 auto; width: 16.6667%; }
    .ofm-col-xl-3  { flex: 0 0 auto; width: 25%; }
    .ofm-col-xl-4  { flex: 0 0 auto; width: 33.3333%; }
    .ofm-col-xl-5  { flex: 0 0 auto; width: 41.6667%; }
    .ofm-col-xl-6  { flex: 0 0 auto; width: 50%; }
    .ofm-col-xl-7  { flex: 0 0 auto; width: 58.3333%; }
    .ofm-col-xl-8  { flex: 0 0 auto; width: 66.6667%; }
    .ofm-col-xl-9  { flex: 0 0 auto; width: 75%; }
    .ofm-col-xl-10 { flex: 0 0 auto; width: 83.3333%; }
    .ofm-col-xl-11 { flex: 0 0 auto; width: 91.6667%; }
    .ofm-col-xl-12 { flex: 0 0 auto; width: 100%; }
}

/* order helpers */
.ofm-order-1 { order: 1; }
.ofm-order-2 { order: 2; }
@media (min-width: 992px) {
    .ofm-order-lg-1 { order: 1; }
    .ofm-order-lg-2 { order: 2; }
}

/* =====================================================================
   4) OFM UTILITIES (Bootstrap yardımcı sınıflarının ofm- karşılıkları)
   ===================================================================== */
/* display */
.ofm-d-none        { display: none !important; }
.ofm-d-block       { display: block !important; }
.ofm-d-inline-block{ display: inline-block !important; }
.ofm-d-flex        { display: flex !important; }
.ofm-d-inline-flex { display: inline-flex !important; }
@media (min-width: 992px) {
    .ofm-d-lg-block { display: block !important; }
    .ofm-d-lg-flex  { display: flex !important; }
    .ofm-d-lg-none  { display: none !important; }
}

/* flexbox */
.ofm-flex-column          { flex-direction: column !important; }
.ofm-flex-wrap            { flex-wrap: wrap !important; }
.ofm-flex-grow-1          { flex-grow: 1 !important; }
.ofm-align-items-center   { align-items: center !important; }
.ofm-align-items-start    { align-items: flex-start !important; }
.ofm-align-items-end      { align-items: flex-end !important; }
.ofm-align-items-baseline { align-items: baseline !important; }
.ofm-justify-content-center  { justify-content: center !important; }
.ofm-justify-content-between { justify-content: space-between !important; }
.ofm-justify-content-end     { justify-content: flex-end !important; }

/* gap */
.ofm-gap-1 { gap: 4px !important; }
.ofm-gap-2 { gap: 8px !important; }
.ofm-gap-3 { gap: 16px !important; }
.ofm-gap-4 { gap: 24px !important; }

/* margin */
.ofm-m-0 { margin: 0 !important; }
.ofm-m-auto { margin: auto !important; }
.ofm-mt-0 { margin-top: 0 !important; }        .ofm-mt-1 { margin-top: 4px !important; }
.ofm-mt-2 { margin-top: 8px !important; }   .ofm-mt-3 { margin-top: 16px !important; }
.ofm-mt-4 { margin-top: 24px !important; }   .ofm-mt-5 { margin-top: 48px !important; }
.ofm-mt-auto { margin-top: auto !important; }
.ofm-mb-0 { margin-bottom: 0 !important; }      .ofm-mb-1 { margin-bottom: 4px !important; }
.ofm-mb-2 { margin-bottom: 8px !important; } .ofm-mb-3 { margin-bottom: 16px !important; }
.ofm-mb-4 { margin-bottom: 24px !important; } .ofm-mb-5 { margin-bottom: 48px !important; }
.ofm-ms-0 { margin-left: 0 !important; }        .ofm-ms-1 { margin-left: 4px !important; }
.ofm-ms-2 { margin-left: 8px !important; }   .ofm-ms-auto { margin-left: auto !important; }
.ofm-me-0 { margin-right: 0 !important; }        .ofm-me-1 { margin-right: 4px !important; }
.ofm-me-2 { margin-right: 8px !important; }  .ofm-me-auto { margin-right: auto !important; }
.ofm-mx-2 { margin-left: 8px !important; margin-right: 8px !important; }
.ofm-mx-auto { margin-left: auto !important; margin-right: auto !important; }
.ofm-my-4 { margin-top: 24px !important; margin-bottom: 24px !important; }
.ofm-my-5 { margin-top: 48px !important; margin-bottom: 48px !important; }

/* padding */
.ofm-p-0 { padding: 0 !important; }  .ofm-p-3 { padding: 16px !important; }  .ofm-p-4 { padding: 24px !important; }
.ofm-pt-3 { padding-top: 16px !important; }  .ofm-pt-4 { padding-top: 24px !important; }
.ofm-pb-3 { padding-bottom: 16px !important; }
.ofm-py-2 { padding-top: 8px !important; padding-bottom: 8px !important; }
.ofm-py-3 { padding-top: 16px !important; padding-bottom: 16px !important; }
.ofm-px-3 { padding-left: 16px !important; padding-right: 16px !important; }
.ofm-px-4 { padding-left: 24px !important; padding-right: 24px !important; }
@media (min-width: 768px) {
    .ofm-px-md-3 { padding-left: 16px !important; padding-right: 16px !important; }
}

/* sizing */
.ofm-w-100 { width: 100% !important; }
.ofm-h-100 { height: 100% !important; }
.ofm-img-fluid { max-width: 100%; height: auto; }

/* text */
.ofm-text-center { text-align: center !important; }
.ofm-text-start  { text-align: left !important; }
.ofm-text-end    { text-align: right !important; }
.ofm-text-uppercase { text-transform: uppercase !important; }
.ofm-text-dark    { color: var(--ofm-primary) !important; }
.ofm-text-muted   { color: var(--ofm-text-muted) !important; }
.ofm-text-success { color: var(--ofm-success) !important; }
.ofm-text-danger  { color: var(--ofm-danger) !important; }
.ofm-text-warning { color: var(--ofm-warning) !important; }
.ofm-text-decoration-none { text-decoration: none !important; }
.ofm-text-decoration-line-through { text-decoration: line-through !important; }

/* font weight */
.ofm-fw-normal    { font-weight: 400 !important; }
.ofm-fw-medium    { font-weight: 500 !important; }
.ofm-fw-semibold  { font-weight: 600 !important; }
.ofm-fw-bold      { font-weight: 700 !important; }
.ofm-fw-extrabold { font-weight: 800 !important; }

/* font size */
.ofm-fs-1 { font-size: 40px !important; }
.ofm-fs-2 { font-size: 32px !important; }
.ofm-fs-3 { font-size: 28px !important; }
.ofm-fs-4 { font-size: 24px !important; }
.ofm-fs-5 { font-size: 20px !important; }
.ofm-fs-6 { font-size: 16px !important; }
.ofm-small { font-size: 0.875em; }
.ofm-lead  { font-size: 20px; font-weight: 300; }

/* heading-as-class */
.ofm-h1 { font-size: 40px; font-weight: 700; line-height: 1.2; }
.ofm-h2 { font-size: 32px;   font-weight: 700; line-height: 1.2; }
.ofm-h3 { font-size: 28px;font-weight: 700; line-height: 1.2; }
.ofm-h4 { font-size: 24px; font-weight: 700; line-height: 1.2; }
.ofm-h5 { font-size: 20px;font-weight: 700; line-height: 1.2; }
.ofm-h6 { font-size: 16px;   font-weight: 700; line-height: 1.2; }
.ofm-display-5 { font-size: 48px;   font-weight: 700; line-height: 1.2; }
.ofm-display-6 { font-size: 40px; font-weight: 700; line-height: 1.2; }
@media (max-width: 767.98px) {
    .ofm-display-5 { font-size: 35.2px; }
    .ofm-display-6 { font-size: 30.4px; }
}

/* borders / radius / bg */
.ofm-border       { border: 1px solid rgba(0, 0, 0, 0.1) !important; }
.ofm-border-0     { border: 0 !important; }
.ofm-border-top   { border-top: 1px solid rgba(0, 0, 0, 0.1) !important; }
.ofm-border-light { border-color: rgba(255, 255, 255, 0.6) !important; }
.ofm-rounded-3      { border-radius: 8px !important; }
.ofm-rounded-circle { border-radius: 50% !important; }
.ofm-bg-light       { background-color: #f8fafc !important; }
.ofm-bg-transparent { background-color: transparent !important; }
.ofm-bg-success     { background-color: var(--ofm-success) !important; }

/* position */
.ofm-position-relative { position: relative !important; }
.ofm-position-absolute { position: absolute !important; }
.ofm-overflow-hidden   { overflow: hidden !important; }
.ofm-bottom-0 { bottom: 0 !important; }
.ofm-end-0    { right: 0 !important; }

/* list */
.ofm-list-unstyled { list-style: none; padding-left: 0; margin: 0; }

/* generic button base */
.ofm-btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    padding: 8px 16px;
    font-size: 15.2px;
    line-height: 1.5;
    border-radius: 6px;
    background: transparent;
    color: inherit;
    transition: var(--ofm-transition-smooth);
    text-decoration: none;
}
.ofm-btn-outline-dark {
    color: var(--ofm-primary);
    border-color: rgba(0, 0, 0, 0.15);
    background: transparent;
}
.ofm-btn-outline-dark:hover {
    color: #fff;
    background: var(--ofm-primary);
    border-color: var(--ofm-primary);
}

/* =====================================================================
   5) DEKORATİF ARKA PLAN (bloblar, doku ızgarası, imleç ışığı)
   ===================================================================== */
.ofm-blob-container {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}
.ofm-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
    animation: ofm-float 25s ease-in-out infinite alternate;
}
.ofm-blob-1 {
    top: 10%; left: -5%;
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, rgba(129, 140, 248, 0.05) 70%);
}
.ofm-blob-2 {
    top: 40%; right: -10%;
    width: 650px; height: 650px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, rgba(244, 114, 182, 0.05) 70%);
    animation-delay: -7s;
}
.ofm-blob-3 {
    bottom: -10%; left: 20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, rgba(103, 232, 249, 0.05) 70%);
    animation-delay: -14s;
}
@keyframes ofm-float {
    0%   { transform: translate(0, 0) scale(1) rotate(0deg); }
    50%  { transform: translate(60px, 40px) scale(1.08) rotate(90deg); }
    100% { transform: translate(-30px, 70px) scale(0.95) rotate(180deg); }
}

.ofm-grid-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    background-image: radial-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.ofm-cursor-glow {
    position: fixed;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: -3;
    mix-blend-mode: screen;
    transition: left 0.15s cubic-bezier(0.075, 0.82, 0.165, 1), top 0.15s cubic-bezier(0.075, 0.82, 0.165, 1);
    will-change: left, top;
}

/* =====================================================================
   6) KARTLAR & BİLEŞENLER
   ===================================================================== */
.ofm-gradient-text {
    background: linear-gradient(135deg, #0f172a 30%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ofm-glass-card {
    background: var(--ofm-bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 22px;
    transition: var(--ofm-transition-smooth);
    overflow: hidden;
    box-shadow:
        0 10px 30px -10px rgba(0, 0, 0, 0.03),
        0 1px 1px 0 rgba(255, 255, 255, 0.8) inset;
    position: relative;
}
.ofm-glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow:
        0 30px 50px -15px rgba(99, 102, 241, 0.12),
        0 0 0 1px rgba(99, 102, 241, 0.05);
}

.ofm-badge-glow {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #312e81;
    font-family: var(--ofm-font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 11.52px;
    padding: 8px 20.8px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.05);
}
.ofm-badge-glow i { color: var(--ofm-accent); }

/* Hero */
.ofm-hero-section {
    padding: 110px 0 60px 0;
    position: relative;
    text-align: center;
}
.ofm-hero-bg-glow { display: none; }

/* Filter bar */
.ofm-filter-wrapper {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    padding: 10px;
    box-shadow:
        0 10px 30px -10px rgba(0, 0, 0, 0.02),
        0 1px 1px 0 rgba(255, 255, 255, 0.5) inset;
    margin-bottom: 50px;
}
.ofm-filter-btn-group { display: flex; flex-wrap: wrap; gap: 8px; }
.ofm-filter-btn {
    background: transparent;
    border: none;
    color: var(--ofm-text-muted);
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 14.4px;
    cursor: pointer;
    transition: var(--ofm-transition-smooth);
}
.ofm-filter-btn:hover { color: var(--ofm-primary); background: rgba(255, 255, 255, 0.6); }
.ofm-filter-btn.ofm-active {
    background: linear-gradient(135deg, var(--ofm-accent) 0%, #312e81 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px -5px rgba(79, 70, 229, 0.35);
}

/* Card image container */
.ofm-card-img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
    background-color: #f1f5f9;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.ofm-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.ofm-glass-card:hover .ofm-product-image { transform: scale(1.06) translateY(5px); }

.ofm-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: var(--ofm-transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.ofm-glass-card:hover .ofm-card-overlay { opacity: 1; }

.ofm-tech-badges-inline {
    position: absolute;
    bottom: 12px; left: 12px;
    display: flex; gap: 6px;
    z-index: 5;
    transition: var(--ofm-transition-smooth);
}
.ofm-glass-card:hover .ofm-tech-badges-inline { opacity: 0; transform: translateY(12px); }
.ofm-tech-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--ofm-primary);
    font-size: 10.88px;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.ofm-card-tag {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 5;
    font-size: 10.88px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 12px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.ofm-tag-hot  { background: rgba(254, 226, 226, 0.9); color: #dc2626; border: 1px solid rgba(220, 38, 38, 0.1); }
.ofm-tag-new  { background: rgba(224, 242, 254, 0.9); color: #0284c7; border: 1px solid rgba(2, 132, 199, 0.1); }
.ofm-tag-best { background: rgba(254, 243, 199, 0.9); color: #d97706; border: 1px solid rgba(217, 119, 6, 0.1); }

.ofm-btn-action-circle {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 20px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--ofm-transition-smooth);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
.ofm-btn-demo {
    background: linear-gradient(135deg, var(--ofm-accent) 0%, #312e81 100%);
    color: white;
}
.ofm-btn-demo:hover { transform: scale(1.1) rotate(5deg); box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3); }
.ofm-btn-view {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--ofm-primary);
}
.ofm-btn-view:hover { transform: scale(1.1); background: #f8fafc; border-color: rgba(0, 0, 0, 0.1); }

.ofm-card-body-content { padding: 26px; }
.ofm-meta-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.ofm-template-category {
    font-size: 11.52px;
    font-weight: 700;
    color: var(--ofm-accent);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.ofm-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.4px;
    font-weight: 700;
    color: var(--ofm-success);
    background: rgba(16, 185, 129, 0.08);
    padding: 3px 8px;
    border-radius: 20px;
}
.ofm-status-dot {
    width: 6px; height: 6px;
    background-color: var(--ofm-success);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--ofm-success);
    animation: ofm-pulse-green 1.5s infinite;
}
@keyframes ofm-pulse-green {
    0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70%  { transform: scale(1);    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.ofm-template-title {
    font-size: 20.8px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ofm-primary);
    transition: var(--ofm-transition-smooth);
}
.ofm-glass-card:hover .ofm-template-title { color: var(--ofm-accent); }

.ofm-rating-stars { color: var(--ofm-warning); font-size: 13.6px; display: inline-flex; }
.ofm-rating-count { color: var(--ofm-text-muted); font-size: 12.48px; margin-left: 6px; }

.ofm-feature-pill-box {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 20px 0;
    min-height: 52px;
    align-content: flex-start;
}
.ofm-feature-pill {
    font-size: 11.52px;
    background: rgba(0, 0, 0, 0.03);
    color: var(--ofm-text-muted);
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 500;
}

.ofm-card-purchase-row {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ofm-price-box .ofm-price-current {
    font-size: 23.2px;
    font-family: var(--ofm-font-heading);
    font-weight: 800;
    color: var(--ofm-primary);
}
.ofm-price-box .ofm-price-old {
    font-size: 13.6px;
    color: #94a3b8;
    text-decoration: line-through;
    margin-left: 6px;
}

.ofm-btn-buy {
    background: linear-gradient(135deg, var(--ofm-accent) 0%, #312e81 100%);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 13.6px;
    padding: 12px 22px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--ofm-transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
    text-decoration: none;
}
.ofm-btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.35);
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
    color: white;
}

/* CTA */
.ofm-cta-section { padding: 90px 0; }
.ofm-cta-box {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 28px;
    padding: 70px 40px;
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.04);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ofm-cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ofm-accent) 0%, #06b6d4 100%);
}

/* =====================================================================
   7) OFM MODAL (Bootstrap modal yerine, JS ile açılır)
   ===================================================================== */
.ofm-modal {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.ofm-modal.ofm-show { display: flex; opacity: 1; }
.ofm-modal-dialog {
    width: 100%;
    max-width: 800px;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ofm-modal.ofm-show .ofm-modal-dialog { transform: translateY(0) scale(1); }
.ofm-modal-content-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--ofm-text-main);
    border-radius: 24px;
    box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
}
.ofm-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.ofm-modal-title { font-size: 20px; margin: 0; color: var(--ofm-primary); }
.ofm-modal-body { padding: 24px; }
.ofm-btn-close {
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    color: var(--ofm-primary);
    opacity: 0.55;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    transition: var(--ofm-transition-smooth);
}
.ofm-btn-close:hover { opacity: 1; background: rgba(0, 0, 0, 0.04); }

.ofm-modal-tech-specs {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    padding: 18px;
}
.ofm-modal-tech-spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14.08px;
}
.ofm-modal-tech-spec-item:last-child { margin-bottom: 0; }
.ofm-modal-tech-spec-item span:first-child { color: var(--ofm-text-muted); }
.ofm-modal-tech-spec-item span:last-child { color: var(--ofm-primary); font-weight: 700; }

/* Grid item entry animation */
.ofm-grid-item-fade { animation: ofm-fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes ofm-fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeOutDown {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(20px); }
}

/* =====================================================================
   8) ÜRÜN DETAY SAYFASI BİLEŞENLERİ
   ===================================================================== */
.ofm-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14.08px;
}
.ofm-breadcrumb-item { display: flex; align-items: center; color: var(--ofm-text-muted); }
.ofm-breadcrumb-item + .ofm-breadcrumb-item::before {
    content: "/";
    padding: 0 9.6px;
    color: #94a3b8;
}
.ofm-breadcrumb-item a { color: var(--ofm-text-muted); text-decoration: none; }
.ofm-breadcrumb-item a:hover { color: var(--ofm-accent); }
.ofm-breadcrumb-item.ofm-active { color: var(--ofm-primary); font-weight: 600; }

.ofm-thumb-img-container {
    width: 85px; height: 65px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--ofm-transition-smooth);
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    flex: 0 0 auto;
}
.ofm-thumb-img-container:hover, .ofm-thumb-img-container.ofm-active {
    border-color: var(--ofm-accent);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
    transform: translateY(-2px);
}
.ofm-thumb-img-container img { width: 100%; height: 100%; object-fit: cover; }

.ofm-addon-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    margin-bottom: 10px;
    transition: var(--ofm-transition-smooth);
    cursor: pointer;
    user-select: none;
}
.ofm-addon-item:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.ofm-addon-item input[type="checkbox"] {
    width: 20px; height: 20px;
    accent-color: var(--ofm-accent);
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.15);
}
.ofm-addon-item.ofm-selected {
    background: rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.35);
}
.ofm-addon-title { font-weight: 600; color: var(--ofm-primary); font-size: 14.4px; }
.ofm-addon-price { font-weight: 700; color: var(--ofm-accent); font-size: 15.2px; }

.ofm-trust-badge-item {
    text-align: center;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.03);
    font-size: 11.52px;
    font-weight: 800;
    color: var(--ofm-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}
.ofm-trust-badge-item i {
    font-size: 22.4px;
    color: var(--ofm-accent);
    display: block;
    margin-bottom: 6px;
}

/* Detay sekmeleri */
.ofm-custom-tabs {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.ofm-custom-tabs .ofm-tab-btn {
    color: var(--ofm-text-muted);
    border: none;
    background: transparent;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 15.2px;
    cursor: pointer;
    position: relative;
    transition: var(--ofm-transition-smooth);
}
.ofm-custom-tabs .ofm-tab-btn:hover { color: var(--ofm-primary); }
.ofm-custom-tabs .ofm-tab-btn.ofm-active { color: var(--ofm-accent); }
.ofm-custom-tabs .ofm-tab-btn.ofm-active::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--ofm-accent), #06b6d4);
    border-radius: 3px;
}
.ofm-tab-pane { display: none; }
.ofm-tab-pane.ofm-active { display: block; animation: ofm-fadeInUp 0.4s ease forwards; }

/* Basit tablo */
.ofm-table { width: 100%; border-collapse: collapse; }
.ofm-table td { padding: 8px 8px; vertical-align: top; }

/* Akordeon */
.ofm-accordion-item {
    background: transparent;
    border: 0;
    margin-bottom: 12px;
}
.ofm-accordion-btn {
    width: 100%;
    text-align: left;
    font-weight: 700;
    color: var(--ofm-primary);
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 16px 20px;
    cursor: pointer;
    position: relative;
    transition: var(--ofm-transition-smooth);
}
.ofm-accordion-btn::after {
    content: '\f078'; /* fa chevron-down */
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12.8px;
    color: var(--ofm-text-muted);
    transition: transform 0.3s ease;
}
.ofm-accordion-btn.ofm-active::after { transform: translateY(-50%) rotate(180deg); }
.ofm-accordion-btn.ofm-active {
    border-color: rgba(79, 70, 229, 0.25);
    color: var(--ofm-accent);
}
.ofm-accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.ofm-accordion-body {
    padding: 16px 20px 4px;
    color: var(--ofm-text-muted);
}

/* Tour showcase */
.ofm-tour-showcase {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.03);
    margin-bottom: 50px;
    position: relative;
}
.ofm-tour-badge {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(99, 102, 241, 0.15);
    color: #312e81;
    font-size: 11.52px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}
.ofm-tour-title { font-size: 35.2px; font-weight: 800; color: var(--ofm-primary); line-height: 1.25; margin-bottom: 15px; }
.ofm-tour-desc { color: var(--ofm-text-muted); font-size: 15.2px; margin-bottom: 30px; line-height: 1.6; }
.ofm-tour-bullet-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }
.ofm-tour-bullet-item { display: flex; align-items: flex-start; gap: 16px; }
.ofm-tour-bullet-icon {
    width: 48px; height: 48px; min-width: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--ofm-accent);
    font-size: 19.2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}
.ofm-tour-bullet-text h4 { font-size: 15.2px; font-weight: 700; margin: 0 0 4px; color: var(--ofm-primary); }
.ofm-tour-bullet-text p { font-size: 13.6px; color: var(--ofm-text-muted); margin: 0; }
.ofm-tour-bottom-alert {
    background: rgba(79, 70, 229, 0.04);
    border: 1px solid rgba(79, 70, 229, 0.1);
    border-radius: 16px;
    padding: 18px 24px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 14.08px;
    font-weight: 700;
    color: #312e81;
}
.ofm-tour-bottom-alert i { color: var(--ofm-accent); font-size: 19.2px; }
.ofm-tour-mockup-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 40px -15px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    transition: var(--ofm-transition-smooth);
}
.ofm-tour-mockup-frame:hover { transform: scale(1.01); box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.12); }

/* Integration cards */
.ofm-integration-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 22px;
    padding: 26px;
    transition: var(--ofm-transition-smooth);
    box-shadow:
        0 10px 30px -10px rgba(0, 0, 0, 0.03),
        0 1px 1px 0 rgba(255, 255, 255, 0.8) inset;
    height: 100%;
    position: relative;
}
.ofm-integration-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 0 15px 35px -10px rgba(99, 102, 241, 0.08);
}
.ofm-integration-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.ofm-integration-icon-badge {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    color: var(--ofm-accent);
    font-size: 19.2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}
.ofm-integration-card-title {
    font-size: 15.2px;
    font-weight: 700;
    color: var(--ofm-text-muted);
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.ofm-partner-logo-box { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.ofm-partner-logo {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13.12px;
    font-weight: 800;
    color: var(--ofm-primary);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    transition: var(--ofm-transition-smooth);
}
.ofm-partner-logo:hover {
    border-color: var(--ofm-accent);
    color: var(--ofm-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.08);
}

/* Detay önizleme çerçevesi */
.ofm-detail-preview-frame { height: 720px; background-color: #f8fafc; transition: var(--ofm-transition-smooth); }
.ofm-detail-preview-img { object-fit: contain; transition: var(--ofm-transition-smooth); }
@media (max-width: 767.98px) {
    .ofm-detail-preview-frame { height: 350px; }
    .ofm-detail-preview-img { object-fit: cover; object-position: top; }
}

/* Parlama süpürme efekti */
.ofm-glass-card::before,
.ofm-integration-card::before,
.ofm-tour-showcase::before {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    width: 60%; height: 100%;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%);
    transform: skewX(-30deg);
    transition: 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    pointer-events: none;
}
.ofm-glass-card:hover::before,
.ofm-integration-card:hover::before,
.ofm-tour-showcase:hover::before { left: 150%; }

/* Scroll reveal (JS varsa gizle, yoksa görünsün) */
.ofm-wrap.ofm-js .ofm-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}
.ofm-wrap.ofm-js .ofm-reveal.ofm-reveal-visible { opacity: 1; transform: translateY(0); }

/* =====================================================================
   9) RESPONSIVE İNCE AYARLAR
   ===================================================================== */
@media (max-width: 991.98px) {
    .ofm-filter-btn-group {
        display: flex;
        overflow-x: auto;
        padding-bottom: 5px;
        gap: 6px;
    }
    .ofm-filter-btn { white-space: nowrap; padding: 8px 16px; font-size: 13.6px; }
    .ofm-tour-showcase { padding: 32px 22px; }
    .ofm-tour-title { font-size: 27.2px; }
}
@media (max-width: 575.98px) {
    .ofm-hero-section { padding: 60px 0 40px 0; }
    .ofm-hero-section h1 { font-size: 35.2px; }
    .ofm-card-body-content { padding: 18px; }
    .ofm-price-box .ofm-price-current { font-size: 20.8px; }
}
