﻿:root{
    --sb-blue:#1357a6;
    --sb-blue-dark:#0a3870;
    --sb-navy:#072142;
    --sb-light:#f5f8fc;
    --sb-text:#203040;
    --sb-muted:#68768a;
    --sb-border:#dbe5f0;
    --sb-shadow:0 20px 45px rgba(12,35,70,.12);
    --sb-radius:20px;
}

/* TOP INFO */
.sb-topline{
    background:#031427;
    padding:8px 0;
    font-size:13px;
}
.sb-topline-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}
.sb-topline-left,
.sb-topline-right{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}
.sb-topline a,
.sb-topline span{
    color:rgba(255,255,255,.82);
}
.sb-topline a:hover{
    color:#8fd0ff;
}

/* HEADER MAIN */
.sb-header-main{
    background:#fff;
    border-bottom:1px solid #edf2f7;
}
.sb-header-main-inner{
    min-height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}
.sb-brand img{
    height:58px;
    width:auto;
}
.sb-header-cards{
    display:flex;
    align-items:center;
    gap:14px;
}
.sb-header-card{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 16px;
    border:1px solid var(--sb-border);
    border-radius:16px;
    background:#fff;
    box-shadow:0 10px 25px rgba(8,31,66,.05);
    color:var(--sb-text);
}
.sb-header-card:hover{
    border-color:#bfd8f5;
    color:var(--sb-blue);
}
.sb-header-card-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:linear-gradient(135deg,#edf5ff,#dbefff);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--sb-blue);
    font-size:16px;
}
.sb-header-card small{
    display:block;
    color:var(--sb-muted);
    font-size:12px;
    line-height:1.2;
}
.sb-header-card strong{
    display:block;
    font-size:15px;
    line-height:1.2;
    font-weight:800;
}

/* NAVBAR */
.sb-navbar{
    background:linear-gradient(90deg,var(--sb-blue-dark),var(--sb-blue));
    box-shadow:0 10px 30px rgba(11,54,107,.16);
}
.sb-navbar .navbar-nav .nav-link{
    color:#fff;
    font-weight:700;
    padding:18px 14px;
}
.sb-navbar .navbar-nav .nav-link:hover,
.sb-navbar .navbar-nav .nav-link:focus{
    color:#dceeff;
}
.sb-nav-cta{
    border:1px solid rgba(255,255,255,.28);
    border-radius:999px;
    padding:10px 18px !important;
}
.sb-navbar-toggler{
    border:0;
    color:#fff;
    font-size:26px;
}
.sb-navbar .dropdown-menu{
    border:0;
    border-radius:18px;
    box-shadow:var(--sb-shadow);
    padding:10px 0;
    min-width:260px;
}
.sb-navbar .dropdown-item{
    padding:12px 18px;
    font-weight:600;
    color:#29415e;
}
.sb-navbar .dropdown-item:hover{
    background:#f4f8fd;
    color:var(--sb-blue);
}

/* HERO */
.sb-hero-v2{
    position:relative;
    padding:85px 0 95px;
    background:
        linear-gradient(135deg,#eef5fc 0%, #d9eaf9 48%, #f4f9ff 100%);
    overflow:hidden;
}
.sb-hero-v2::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:420px;
    height:420px;
    background:radial-gradient(circle, rgba(19,87,166,.14) 0%, rgba(19,87,166,0) 70%);
    border-radius:50%;
}
.sb-hero-v2::after{
    content:"";
    position:absolute;
    bottom:-140px;
    left:-120px;
    width:360px;
    height:360px;
    background:radial-gradient(circle, rgba(86,200,255,.18) 0%, rgba(86,200,255,0) 70%);
    border-radius:50%;
}
.sb-hero-text{
    position:relative;
    z-index:2;
}
.sb-hero-label{
    display:inline-block;
    margin-bottom:16px;
    padding:10px 16px;
    border-radius:999px;
    background:#e8f2fd;
    color:var(--sb-blue);
    font-size:13px;
    font-weight:800;
}
.sb-hero-text h1{
    color:#113154;
    font-size:58px;
    line-height:1.05;
    font-weight:900;
    margin-bottom:18px;
    letter-spacing:-1.5px;
}
.sb-hero-text p{
    color:#4f6178;
    font-size:18px;
    line-height:1.8;
    max-width:620px;
    margin-bottom:28px;
}
.sb-hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:28px;
}
.sb-btn-primary,
.sb-btn-secondary{
    min-height:56px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:0 24px;
    border-radius:14px;
    font-weight:800;
}
.sb-btn-primary{
    background:#25d366;
    color:#041019;
}
.sb-btn-primary:hover{
    color:#041019;
}
.sb-btn-secondary{
    background:#fff;
    border:1px solid #cfe0f1;
    color:#11427d;
}
.sb-btn-secondary:hover{
    color:#11427d;
    background:#f7fbff;
}
.sb-hero-mini-info{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}
.sb-hero-mini-info > div{
    min-width:190px;
    background:rgba(255,255,255,.72);
    border:1px solid rgba(17,66,125,.08);
    border-radius:16px;
    padding:14px 16px;
    backdrop-filter:blur(8px);
}
.sb-hero-mini-info strong{
    display:block;
    color:#153b68;
    font-size:15px;
    margin-bottom:4px;
}
.sb-hero-mini-info span{
    display:block;
    color:#61748d;
    font-size:13px;
}

/* HERO VISUAL */
.sb-hero-visual{
    position:relative;
    z-index:2;
    padding:18px;
}
.sb-hero-visual-bg{
    position:absolute;
    inset:40px 0 0 70px;
    border-radius:28px;
    background:linear-gradient(135deg,var(--sb-blue),#7cb7ef);
    box-shadow:0 30px 60px rgba(19,87,166,.18);
}
.sb-hero-visual img{
    position:relative;
    width:100%;
    border-radius:24px;
    box-shadow:0 30px 60px rgba(13,48,92,.18);
    border:8px solid rgba(255,255,255,.78);
    display:block;
}


@media (max-width: 991.98px) {
    .sb-section-header h2 {
        font-size: 38px;
    }

    .sb-product-group-image {
        height: 240px;
    }

    .sb-product-group-body h3 {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {
    .sb-products-section {
        padding: 70px 0;
    }

    .sb-section-header {
        margin-bottom: 36px;
    }

    .sb-section-header h2 {
        font-size: 32px;
    }

    .sb-section-header p {
        font-size: 15px;
    }

    .sb-product-group-image {
        height: 220px;
    }

    .sb-product-group-body {
        padding: 20px;
    }

    .sb-product-group-body p {
        min-height: auto;
    }
}

@media (max-width: 991.98px){
    .sb-header-main-inner{
        min-height:auto;
        padding:14px 0;
        flex-direction:column;
        align-items:flex-start;
    }

    .sb-header-cards{
        width:100%;
        flex-direction:column;
        align-items:stretch;
    }

    .sb-hero-text h1{
        font-size:40px;
    }

    .sb-hero-text p{
        font-size:16px;
    }

    .sb-hero-visual{
        margin-top:10px;
    }

    .sb-hero-visual-bg{
        inset:30px 0 0 35px;
    }
}

@media (max-width: 767.98px){
    .sb-topline{
        display:none;
    }

    .sb-brand img{
        height:48px;
    }

    .sb-hero-v2{
        padding:65px 0 75px;
    }

    .sb-hero-text h1{
        font-size:34px;
        letter-spacing:-.8px;
    }

    .sb-hero-mini-info{
        flex-direction:column;
    }
}

/* ÜRÜN GRUPLARI */
.sb-products-section {
    padding: 90px 0;
    background: #f7fbff;
}

.sb-section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.sb-section-header span {
    display: inline-block;
    margin-bottom: 10px;
    color: #1357a6;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.sb-section-header h2 {
    margin: 0 0 14px;
    color: #102b46;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1px;
}

.sb-section-header p {
    margin: 0;
    color: #60738a;
    font-size: 17px;
    line-height: 1.8;
}

.sb-product-group-card {
    display: block;
    height: 100%;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(12, 35, 70, 0.10);
    border: 1px solid #e6eef7;
    transition: .3s ease;
    text-decoration: none;
}

.sb-product-group-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(12, 35, 70, 0.16);
}

.sb-product-group-image {
    height: 260px;
    overflow: hidden;
    background: #eef4fb;
}

.sb-product-group-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.sb-product-group-card:hover .sb-product-group-image img {
    transform: scale(1.05);
}

.sb-product-group-body {
    padding: 24px 24px 26px;
}

.sb-product-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #e9f3ff;
    color: #1357a6;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.sb-product-group-body h3 {
    margin: 0 0 12px;
    color: #173250;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
}

.sb-product-group-body p {
    margin: 0 0 18px;
    color: #64778d;
    font-size: 15px;
    line-height: 1.8;
    min-height: 82px;
}

.sb-product-group-body strong {
    color: #1357a6;
    font-size: 15px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
/* =========================
   PRODUCT GROUPS FINAL FIX
========================= */

.sb-products-section {
    padding: 90px 0 !important;
    background: #f7fbff !important;
}

.sb-section-header {
    text-align: center !important;
    max-width: 760px !important;
    margin: 0 auto 48px !important;
}

.sb-section-header span {
    display: inline-block !important;
    margin-bottom: 10px !important;
    color: #1357a6 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: .08em !important;
}

.sb-section-header h2 {
    margin: 0 0 14px !important;
    color: #102b46 !important;
    font-size: 48px !important;
    font-weight: 900 !important;
    letter-spacing: -1px !important;
}

.sb-section-header p {
    margin: 0 !important;
    color: #60738a !important;
    font-size: 17px !important;
    line-height: 1.8 !important;
}

.sb-product-group-card {
    display: block !important;
    height: 100% !important;
    background: #ffffff !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 45px rgba(12, 35, 70, 0.10) !important;
    border: 1px solid #e6eef7 !important;
    transition: .3s ease !important;
    text-decoration: none !important;
}

.sb-product-group-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 28px 60px rgba(12, 35, 70, 0.16) !important;
    text-decoration: none !important;
}

.sb-product-group-image {
    height: 260px !important;
    overflow: hidden !important;
    background: #eef4fb !important;
}

.sb-product-group-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform .4s ease !important;
}

.sb-product-group-card:hover .sb-product-group-image img {
    transform: scale(1.05) !important;
}

.sb-product-group-body {
    padding: 24px 24px 26px !important;
    background: #fff !important;
}

.sb-product-badge {
    display: inline-block !important;
    margin-bottom: 12px !important;
    padding: 8px 12px !important;
    border-radius: 999px !important;
    background: #e9f3ff !important;
    color: #1357a6 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: .05em !important;
}

.sb-product-group-body h3 {
    margin: 0 0 12px !important;
    color: #173250 !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
}

.sb-product-group-body p {
    margin: 0 0 18px !important;
    color: #64778d !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
    min-height: 82px !important;
}

.sb-product-group-body strong {
    color: #1357a6 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.sb-product-group-card,
.sb-product-group-card:hover,
.sb-product-group-card:focus,
.sb-product-group-card:active {
    color: inherit !important;
}

.sb-product-group-card h3,
.sb-product-group-card p,
.sb-product-group-card strong,
.sb-product-group-card span {
    text-decoration: none !important;
}

@media (max-width: 991.98px) {
    .sb-section-header h2 {
        font-size: 38px !important;
    }

    .sb-product-group-image {
        height: 240px !important;
    }

    .sb-product-group-body h3 {
        font-size: 24px !important;
    }
}

@media (max-width: 767.98px) {
    .sb-products-section {
        padding: 70px 0 !important;
    }

    .sb-section-header {
        margin-bottom: 36px !important;
    }

    .sb-section-header h2 {
        font-size: 32px !important;
    }

    .sb-section-header p {
        font-size: 15px !important;
    }

    .sb-product-group-image {
        height: 220px !important;
    }

    .sb-product-group-body {
        padding: 20px !important;
    }

    .sb-product-group-body p {
        min-height: auto !important;
    }
}

/* INFO SECTION */
.sb-info-section {
    padding: 90px 0;
    background: #ffffff;
}

.sb-info-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(12, 35, 70, 0.12);
    background: #eef4fb;
}

.sb-info-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.sb-info-content .sb-mini-title {
    display: inline-block;
    margin-bottom: 10px;
    color: #1357a6;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.sb-info-content h2 {
    margin: 0 0 18px;
    color: #102b46;
    font-size: 46px;
    font-weight: 900;
    letter-spacing: -1px;
}

.sb-info-content p {
    color: #60738a;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.sb-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sb-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #183556;
    font-size: 18px;
    font-weight: 600;
}

.sb-check-list i {
    color: #17b44a;
}

/* CERTIFICATES */
.sb-certificates-section {
    padding: 90px 0;
    background: #f7fbff;
}

.sb-certificate-card {
    height: 100%;
    background: #fff;
    border: 1px solid #e6eef7;
    border-radius: 22px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(12, 35, 70, 0.08);
    transition: .3s ease;
}

.sb-certificate-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(12, 35, 70, 0.12);
}

.sb-certificate-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e9f3ff, #d7eaff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1357a6;
    font-size: 28px;
}

.sb-certificate-card h3 {
    margin: 0 0 10px;
    color: #173250;
    font-size: 28px;
    font-weight: 800;
}

.sb-certificate-card p {
    margin: 0;
    color: #64778d;
    font-size: 16px;
    line-height: 1.7;
}

/* WHY SECTION */
.sb-why-section {
    padding: 90px 0;
    background: #ffffff;
}

.sb-why-card {
    height: 100%;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 22px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 16px 35px rgba(12, 35, 70, 0.06);
    transition: .3s ease;
}

.sb-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 45px rgba(12, 35, 70, 0.10);
}

.sb-why-card i {
    font-size: 30px;
    color: #1357a6;
    margin-bottom: 16px;
}

.sb-why-card h3 {
    margin: 0 0 10px;
    color: #173250;
    font-size: 24px;
    font-weight: 800;
}

.sb-why-card p {
    margin: 0;
    color: #64778d;
    font-size: 15px;
    line-height: 1.8;
}

/* CTA */
.sb-cta-section {
    padding: 90px 0;
    background: #f7fbff;
}

.sb-cta-box {
    background: linear-gradient(135deg, #0f4e95 0%, #1b6cc5 100%);
    border-radius: 28px;
    padding: 44px 42px;
    box-shadow: 0 24px 55px rgba(15, 78, 149, 0.22);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}

.sb-cta-text span {
    display: inline-block;
    margin-bottom: 10px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.sb-cta-text h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    max-width: 760px;
}

.sb-cta-text p {
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 17px;
    line-height: 1.8;
}

.sb-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 991.98px) {
    .sb-info-content h2,
    .sb-section-header h2,
    .sb-cta-text h2 {
        font-size: 34px;
    }

    .sb-info-section,
    .sb-certificates-section,
    .sb-why-section,
    .sb-cta-section {
        padding: 70px 0;
    }
}

@media (max-width: 767.98px) {
    .sb-info-content h2,
    .sb-section-header h2,
    .sb-cta-text h2 {
        font-size: 30px;
    }

    .sb-info-content p,
    .sb-check-list li,
    .sb-certificate-card p,
    .sb-cta-text p {
        font-size: 15px;
    }

    .sb-certificate-card,
    .sb-why-card {
        padding: 24px 20px;
    }

    .sb-cta-box {
        padding: 30px 24px;
    }
}
/* LOGO + SLOGAN */
.sb-brand-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sb-brand img {
    height: 58px;
}

.sb-brand-slogan {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7c8f;
    letter-spacing: 0.04em;
}

/* biraz daha premium görünüm */
.sb-brand-slogan::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, #1357a6, #6bb6ff);
    margin-right: 8px;
    vertical-align: middle;
}

/* PAGE HERO */
.sb-page-hero {
    padding: 70px 0 80px;
    background: linear-gradient(135deg, #eef5fc 0%, #d9eaf9 48%, #f7fbff 100%);
}

.sb-breadcrumb {
    margin-bottom: 28px;
    font-size: 14px;
    color: #6d7e92;
}

.sb-breadcrumb a {
    color: #4d6786;
    text-decoration: none;
}

.sb-breadcrumb span {
    margin: 0 8px;
}

.sb-page-hero-content h1 {
    margin: 0 0 18px;
    color: #113154;
    font-size: 54px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1.4px;
}

.sb-page-hero-content p {
    color: #55697f;
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 28px;
    max-width: 620px;
}

.sb-page-hero-image {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 24px 55px rgba(12, 35, 70, 0.14);
    border: 8px solid rgba(255,255,255,.8);
    background: #eef4fb;
}

.sb-page-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* DETAIL SECTION */
.sb-product-detail-section {
    padding: 90px 0;
    background: #f8fbff;
}

.sb-detail-card,
.sb-sidebar-card {
    background: #fff;
    border: 1px solid #e5edf6;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(12, 35, 70, 0.08);
}

.sb-detail-card {
    padding: 30px 28px;
    margin-bottom: 24px;
}

.sb-detail-card h2 {
    margin: 0 0 18px;
    color: #153150;
    font-size: 32px;
    font-weight: 900;
}

.sb-detail-card p {
    color: #64778d;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.sb-icon-box {
    min-height: 68px;
    background: #f7fbff;
    border: 1px solid #e2edf8;
    border-radius: 16px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sb-icon-box i {
    color: #1357a6;
    font-size: 18px;
}

.sb-icon-box span {
    color: #193858;
    font-weight: 700;
    line-height: 1.5;
}

.sb-advantage-list {
    display: grid;
    gap: 16px;
}

.sb-advantage-item {
    background: #f8fbff;
    border: 1px solid #e3edf7;
    border-radius: 16px;
    padding: 18px 18px;
}

.sb-advantage-item strong {
    display: block;
    color: #173250;
    font-size: 18px;
    margin-bottom: 8px;
}

.sb-advantage-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
}

.sb-cta-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.sb-cta-inline span {
    display: inline-block;
    margin-bottom: 8px;
    color: #1357a6;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.sb-cta-inline h3 {
    margin: 0 0 10px;
    color: #153150;
    font-size: 28px;
    font-weight: 900;
}

.sb-cta-inline p {
    margin: 0;
}

/* SIDEBAR */
.sb-sidebar-card {
    padding: 24px 22px;
    margin-bottom: 22px;
}

.sb-sidebar-card h3 {
    margin: 0 0 16px;
    color: #173250;
    font-size: 24px;
    font-weight: 900;
}

.sb-side-list,
.sb-side-contact,
.sb-side-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sb-side-list li,
.sb-side-contact li,
.sb-side-links li {
    padding: 10px 0;
    border-bottom: 1px solid #eef3f8;
    color: #61748a;
    line-height: 1.7;
}

.sb-side-list li:last-child,
.sb-side-contact li:last-child,
.sb-side-links li:last-child {
    border-bottom: 0;
}

.sb-side-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.sb-side-contact i {
    color: #1357a6;
    margin-top: 5px;
}

.sb-side-contact a,
.sb-side-links a {
    color: #173250;
    text-decoration: none;
    font-weight: 600;
}

.sb-side-contact a:hover,
.sb-side-links a:hover {
    color: #1357a6;
}

@media (max-width: 991.98px) {
    .sb-page-hero-content h1 {
        font-size: 40px;
    }

    .sb-page-hero-content p {
        font-size: 16px;
    }

    .sb-product-detail-section,
    .sb-page-hero {
        padding: 70px 0;
    }

    .sb-detail-card h2 {
        font-size: 28px;
    }

    .sb-cta-inline h3 {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {
    .sb-page-hero-content h1 {
        font-size: 32px;
        letter-spacing: -.8px;
    }

    .sb-detail-card,
    .sb-sidebar-card {
        padding: 22px 18px;
    }

    .sb-detail-card h2,
    .sb-sidebar-card h3 {
        font-size: 24px;
    }

    .sb-detail-card p,
    .sb-page-hero-content p {
        font-size: 15px;
    }
}

/* Karo Galeri */
.sb-product-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sb-gallery-item {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.sb-gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Hover efekti */
.sb-gallery-item:hover img {
    transform: scale(1.08);
}

.sb-gallery-item::after {
    content: "🔍";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 20px;
    padding: 10px 14px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sb-gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Mobil */
@media (max-width: 768px) {
    .sb-product-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   ORTAK ÜRÜN GALERİSİ
========================= */
.sb-product-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.sb-gallery-item {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
}

.sb-gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.sb-gallery-item:hover img {
    transform: scale(1.08);
}

.sb-gallery-caption {
    position: absolute;
    bottom: 10px;
    left: 12px;

    background: #1f3f73;
    padding: 6px 12px;
    border-radius: 20px;

    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.sb-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .sb-product-gallery {
        grid-template-columns: 1fr;
    }
}

.sb-category-hero {
    background: linear-gradient(135deg, #1f3f73, #3c6db5);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.sb-category-products {
    padding: 60px 0;
}

.sb-cat-card {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
}

.sb-cat-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.sb-cat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: rgba(0,0,0,0.5);
    color: #fff;
}
.sb-about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #eef5fc 0%, #d9eaf9 48%, #f7fbff 100%);
}

.sb-about-hero h1 {
    color: #113154;
    font-size: 54px;
    line-height: 1.08;
    font-weight: 900;
    margin: 0 0 18px;
    letter-spacing: -1.4px;
}

.sb-about-hero p {
    color: #55697f;
    font-size: 18px;
    line-height: 1.85;
    margin: 0;
    max-width: 680px;
}

.sb-about-hero-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(12, 35, 70, 0.12);
    background: #eef4fb;
}

.sb-about-hero-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.sb-about-section {
    padding: 90px 0;
    background: #ffffff;
}

.sb-about-env {
    background: #f8fbff;
}

.sb-about-values {
    padding: 90px 0;
    background: #f7fbff;
}

.sb-value-card {
    height: 100%;
    background: #fff;
    border: 1px solid #e6eef7;
    border-radius: 24px;
    padding: 30px 26px;
    box-shadow: 0 18px 40px rgba(12, 35, 70, 0.08);
    text-align: center;
    transition: .3s ease;
}

.sb-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(12, 35, 70, 0.12);
}

.sb-value-card i {
    font-size: 30px;
    color: #1357a6;
    margin-bottom: 16px;
}

.sb-value-card h3 {
    margin: 0 0 12px;
    color: #173250;
    font-size: 26px;
    font-weight: 800;
}

.sb-value-card p {
    margin: 0;
    color: #64778d;
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 991.98px) {
    .sb-about-hero,
    .sb-about-section,
    .sb-about-values {
        padding: 70px 0;
    }

    .sb-about-hero h1 {
        font-size: 40px;
    }

    .sb-about-hero p {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .sb-about-hero h1 {
        font-size: 32px;
        letter-spacing: -.8px;
    }

    .sb-about-hero p {
        font-size: 15px;
    }

    .sb-value-card {
        padding: 24px 20px;
    }

    .sb-value-card h3 {
        font-size: 22px;
    }
}