/*
 * site.css — ortak yerlesim ve bilesenler.
 * Renkler tema degiskenlerinden gelir; tema tanimlari themes.css icindedir.
 * Yeni bir tema yazarken bu dosyayi degil, themes.css icindeki
 * body.theme-XXX blogunu duzenleyin.
 */
:root {
    /* Tema tokenlari (themes.css bunlari ezer) */
    --navy-rgb: 16, 34, 53;
    --accent-rgb: 242, 139, 33;
    --accent: #f28b21;
    --accent-dark: #cf6d13;
    --gold: #f28b21;
    --footer-bg: #0b1826;
    --hero-tint: rgba(var(--accent-rgb), .28);
    --card-tint: rgba(var(--accent-rgb), .32);
    --radius: 0px;

    --bg: #f5f7fb;
    --surface: #fff;
    --surface-2: #eef3f7;
    --navy: #102235;
    --navy-2: #173650;
    --text: #101a29;
    --muted: #66758a;
    --line: rgba(var(--navy-rgb), .12);
    --orange: var(--accent);
    --orange-dark: var(--accent-dark);
    --shadow: 0 20px 55px rgba(var(--navy-rgb), .12);
}

* {
    box-sizing: border-box;
}

body.site {
    margin: 0;
    background: var(--bg);
    color: var(--muted);
    font-family: "Nunito Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.shell {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

.top-strip {
    background: var(--navy);
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
}

.top-strip-inner,
.top-right,
.main-nav,
.desktop-nav,
.nav-actions,
.hero-actions,
.section-head,
.project-row,
.cta-layout {
    display: flex;
    align-items: center;
}

.top-strip-inner {
    min-height: 46px;
    justify-content: space-between;
    gap: 18px;
}

.top-left span::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    border-radius: 999px;
    background: var(--orange);
}

.top-right {
    gap: 22px;
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    box-shadow: 0 8px 25px rgba(var(--navy-rgb), .06);
}

.main-nav {
    min-height: 104px;
    justify-content: space-between;
    gap: 12px;
}

.brand {
    flex: 0 0 auto;
}

.brand-light { display: none; }
.brand img {
    width: 202px;
    max-width: 202px;
    max-height: 78px;
    object-fit: contain;
}

.desktop-nav {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    gap: 2px;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    min-height: 104px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 7px;
    color: var(--text);
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
}

.nav-item > a:hover {
    color: var(--orange);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 285px;
    padding: 12px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(12px);
    border-top: 3px solid var(--orange);
    background: #fff;
    box-shadow: var(--shadow);
    transition: .2s ease;
}

.nav-item:hover > .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.submenu a {
    display: block;
    padding: 10px 12px;
    color: var(--text);
    font-weight: 800;
}

.submenu a:hover {
    background: var(--surface-2);
    color: var(--orange);
}

/* 2. ve 3. seviye ic ice acilir menu */
.submenu-item {
    position: relative;
}

.submenu-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.submenu-item .caret {
    color: var(--orange);
    font-size: 18px;
    line-height: 1;
}

.submenu-2 {
    top: -12px;
    left: 100%;
    transform: translateX(8px);
}

.submenu-item:hover > .submenu-2 {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.nav-actions {
    flex: 0 0 auto;
    gap: 10px;
}

.nav-search-wrap {
    position: relative;
}

.nav-search-btn {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    transition: border-color .2s ease, color .2s ease;
}

.nav-search-btn::-webkit-details-marker {
    display: none;
}

.nav-search-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.nav-search {
    display: flex;
    width: 172px;
    border: 1px solid var(--line);
    background: #f8fafc;
}

.nav-search-wrap[open] .nav-search {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 60;
    width: 280px;
    background: #fff;
    box-shadow: var(--shadow);
}

.nav-search input {
    min-width: 0;
    width: 100%;
    border: 0;
    padding: 12px;
    background: transparent;
    color: var(--text);
    font: inherit;
    outline: 0;
}

.nav-search button,
.quote-btn,
.button {
    border: 0;
    background: var(--orange);
    color: #fff;
    font-weight: 900;
}

.nav-search button {
    padding: 0 14px;
}

.quote-btn,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    font-size: 15px;
}

.quote-btn:hover,
.button.primary:hover {
    background: var(--orange-dark);
}

.mobile-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: #fff;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--navy);
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--line);
    background: #fff;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav-inner {
    padding: 12px 0;
}

.mobile-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

.mobile-line a {
    padding: 13px 0;
    color: var(--text);
    font-weight: 900;
}

.mobile-line button {
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--orange);
    font-weight: 900;
}

.mobile-submenu {
    padding: 8px 0 12px 16px;
}

.mobile-submenu.hidden {
    display: none;
}

.mobile-submenu a {
    display: block;
    padding: 8px 0;
    font-weight: 800;
}

.hero,
.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
}

.transhub-hero {
    min-height: 720px;
    isolation: isolate;
    background: var(--navy);
}

.hero-slides,
.hero-media {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .75s ease, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide img,
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.transhub-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(var(--navy-rgb), .94), rgba(var(--navy-rgb), .72) 48%, rgba(var(--navy-rgb), .28)),
        linear-gradient(135deg, var(--hero-tint), transparent 35%);
}

.transhub-hero::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -220px;
    z-index: -1;
    width: 520px;
    height: 520px;
    border: 70px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
}

.hero-layout {
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 40px;
    align-items: center;
}

.hero-copy {
    max-width: 760px;
}

.hero-copy-slide {
    display: none;
}

.hero-copy-slide.active {
    display: block;
    animation: slideCopyIn .5s ease both;
}

@keyframes slideCopyIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eyebrow,
.section-head span,
.page-hero span,
.detail-hero span {
    color: var(--orange);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-hero h1,
.section-head h2,
.about-copy h2,
.cta-band h2 {
    margin: 0;
    color: var(--text);
    font-family: "Onest", "Nunito Sans", Arial, sans-serif;
    line-height: 1.05;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 820px;
    margin: 16px 0 20px;
    color: #fff;
    font-size: clamp(48px, 7vw, 86px);
}

.hero p {
    max-width: 640px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .82);
    font-size: 20px;
}

.hero-actions {
    gap: 14px;
    flex-wrap: wrap;
}

.button.ghost {
    border: 1px solid rgba(255, 255, 255, .45);
    background: transparent;
    color: #fff;
}

.button.dark {
    margin-top: 26px;
    background: var(--navy);
}

.quote-panel {
    padding: 32px;
    border-bottom: 4px solid var(--orange);
    background: #fff;
    box-shadow: var(--shadow);
}

.quote-panel span {
    color: var(--orange);
    font-weight: 900;
    text-transform: uppercase;
}

.quote-panel strong {
    display: block;
    margin: 12px 0 24px;
    color: var(--text);
    font-size: 28px;
    line-height: 1.16;
}

.quote-panel a {
    color: var(--navy);
    font-weight: 900;
}

.hero-feature-row {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: -70px;
    box-shadow: var(--shadow);
}

.hero-feature-row div {
    min-height: 140px;
    padding: 28px;
    background: #fff;
    border-right: 1px solid var(--line);
}

.hero-feature-row div:last-child {
    border-right: 0;
}

.hero-feature-row strong {
    display: block;
    color: var(--orange);
    font-size: 34px;
    line-height: 1;
}

.hero-feature-row span {
    display: block;
    margin-top: 10px;
    color: var(--text);
    font-size: 20px;
    font-weight: 900;
}

.slider-controls {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: -132px;
    margin-bottom: 74px;
}

.slider-controls button {
    border: 0;
    cursor: pointer;
}

.slider-controls > button {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    color: var(--navy);
    font-size: 28px;
    line-height: 1;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .18);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots button {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .46);
}

.slider-dots button.active {
    width: 30px;
    background: var(--orange);
}

.section {
    padding: 92px 0;
}

.services-section {
    padding-top: 130px;
    background: #fff;
}

.section-head {
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 34px;
}

.section-head.centered {
    max-width: 720px;
    display: block;
    margin: 0 auto 40px;
    text-align: center;
}

.section-head h2 {
    max-width: 720px;
    margin-top: 8px;
    font-size: clamp(32px, 4vw, 52px);
}

.section-head a {
    color: var(--orange);
    font-weight: 900;
}

.card-grid,
.service-grid,
.product-grid {
    display: grid;
    gap: 24px;
}

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

.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.content-card,
.product-card,
.project-card,
.contact-form,
.contact-info,
.empty-state {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.service-card,
.content-card,
.product-card,
.project-card {
    transition: transform .22s ease, box-shadow .22s ease;
}

.service-card:hover,
.content-card:hover,
.product-card:hover,
.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(var(--navy-rgb), .16);
}

.service-card figure,
.product-card figure {
    margin: 0;
}

.service-card figure img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.service-card div,
.content-card div,
.product-card div {
    padding: 24px;
}

.card-number {
    color: var(--orange);
    font-weight: 900;
}

.service-card h3,
.content-card h2,
.product-card h3 {
    margin: 8px 0 9px;
    color: var(--text);
    font-family: "Onest", "Nunito Sans", Arial, sans-serif;
    line-height: 1.14;
}

.service-card p,
.content-card p,
.product-card p {
    margin: 0;
}

.about-band {
    padding: 100px 0;
    background: var(--surface-2);
}

.about-layout {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.experience-box {
    position: absolute;
    right: -24px;
    bottom: 28px;
    width: 180px;
    padding: 24px;
    background: var(--orange);
    color: #fff;
}

.experience-box strong {
    display: block;
    font-size: 48px;
    line-height: 1;
}

.experience-box span {
    font-weight: 900;
}

.about-copy h2 {
    margin: 12px 0 18px;
    font-size: clamp(34px, 4vw, 54px);
}

.about-copy p {
    margin: 0;
    font-size: 18px;
}

.check-list {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.check-list span {
    color: var(--text);
    font-weight: 900;
}

.check-list span::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    margin-right: 10px;
    background: var(--orange);
    color: #fff;
    font-size: 13px;
}

.product-section {
    background: #fff;
}

.product-section.alt {
    background: var(--bg);
}

.product-card figure {
    position: relative;
    min-height: 300px;
    padding: 0;
    background: #f5f8fb;
}

.product-card figure img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

.product-card {
    position: relative;
    min-height: 390px;
    isolation: isolate;
    background: var(--navy);
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(var(--navy-rgb), .05) 15%, rgba(var(--navy-rgb), .82) 100%),
        linear-gradient(135deg, var(--card-tint), transparent 42%);
    opacity: .92;
    transition: opacity .25s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card-body {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    padding: 18px 18px 16px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
    transition: transform .25s ease, background .25s ease;
}

.product-card:hover .product-card-body {
    transform: translateY(-6px);
    background: #fff;
}

.product-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
}

.product-card span,
.product-card-meta span {
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
}

.product-card-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--navy);
    font-style: normal;
    font-size: 13px;
    font-weight: 900;
}

.product-card-view::after {
    content: "›";
    color: var(--orange);
    font-size: 20px;
    line-height: 1;
}

.product-card-link {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
}

.product-card-link figure {
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
}

.product-card-link img {
    min-height: 100%;
}

.product-card h3 {
    margin: 10px 0 8px;
}

.product-card h3 a {
    color: inherit;
}

.product-card h3 a:hover {
    color: var(--orange);
}

.add-quote {
    margin-top: 14px;
}

.add-quote button {
    width: 100%;
    min-height: 42px;
    border: 0;
    border-radius: var(--radius);
    background: var(--navy);
    color: #fff;
    font: inherit;
    font-weight: 900;
    letter-spacing: .01em;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.add-quote button:hover {
    background: var(--accent);
    color: #fff;
}

.cta-band {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.cta-layout {
    justify-content: space-between;
    gap: 30px;
}

.cta-band h2 {
    max-width: 760px;
    margin-top: 10px;
    color: #fff;
    font-size: clamp(32px, 4vw, 52px);
}

.project-section {
    background: #fff;
}

.project-row {
    align-items: stretch;
    gap: 24px;
}

.project-card {
    flex: 1;
    background: var(--navy);
    color: rgba(255, 255, 255, .72);
}

.project-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.service-card img,
.content-card img,
.product-card img,
.project-card img,
.detail-grid img,
.about-media img,
.animated-image {
    border-radius: 8px;
    transition: transform .35s ease, filter .35s ease;
}

.service-card:hover img,
.content-card:hover img,
.product-card:hover img,
.project-card:hover img,
.about-media:hover img,
.detail-grid img:hover,
.animated-image:hover {
    transform: scale(1.035);
    filter: saturate(1.06) contrast(1.03);
}

.product-card figure {
    overflow: hidden;
}

.project-card strong {
    display: block;
    padding: 22px 22px 0;
    color: #fff;
    font-size: 24px;
}

.project-card span {
    display: block;
    padding: 8px 22px 22px;
}

.page-hero,
.detail-hero {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.page-hero h1,
.detail-hero h1 {
    margin-top: 10px;
    color: #fff;
    font-size: clamp(38px, 5vw, 62px);
}

.page-hero p,
.detail-hero p {
    color: rgba(255, 255, 255, .74);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: center;
}

.detail-grid img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    background: #fff;
}

.page-with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
    align-items: start;
}

.page-main {
    min-width: 0;
}

.page-main .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-sidebar {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 18px;
}

.sidebar-box,
.sidebar-cta {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.sidebar-box h3 {
    margin: 0;
    padding: 18px 20px;
    background: var(--navy);
    color: #fff;
    font-family: "Onest", "Nunito Sans", Arial, sans-serif;
    font-size: 19px;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-weight: 900;
    transition: background .2s ease, color .2s ease, padding-left .2s ease;
}

.sidebar-links a:last-child {
    border-bottom: 0;
}

.sidebar-links a::after {
    content: "›";
    color: var(--orange);
    font-size: 22px;
    line-height: 1;
}

.sidebar-links a:hover {
    padding-left: 26px;
    background: var(--surface-2);
    color: var(--orange);
}

.sidebar-cta {
    padding: 24px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
}

.sidebar-cta span {
    display: block;
    font-weight: 900;
    text-transform: uppercase;
}

.sidebar-cta strong {
    display: block;
    margin: 10px 0 18px;
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
}

.sidebar-cta a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    font-weight: 900;
}

.product-showcase {
    background: #fff;
}

.product-tabs {
    display: grid;
    gap: 24px;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.product-tab-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fafc;
    box-shadow: none;
}

.product-tab-list button {
    position: relative;
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 0 18px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    text-align: center;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.product-tab-list button.active,
.product-tab-list button:hover {
    border-color: var(--orange);
    background: var(--orange);
    color: #fff;
}

.product-tab-panel {
    display: none;
}

.product-tab-panel.active {
    display: block;
    padding: 0;
    animation: slideCopyIn .35s ease both;
}

.category-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px 22px;
    border-radius: 8px;
    background: #f8fafc;
    color: var(--muted);
    box-shadow: inset 0 0 0 1px var(--line);
}

.category-intro p {
    max-width: 760px;
    margin: 0;
}

.category-intro a {
    flex: 0 0 auto;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    font-weight: 900;
}

.prose {
    color: var(--text);
    font-size: 19px;
}

.prose img {
    height: auto;
}

.empty-state {
    padding: 34px;
    color: var(--text);
    font-weight: 900;
}

.content-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px;
}

.contact-form,
.contact-info {
    padding: 28px;
}

.contact-form h2,
.contact-info h2 {
    margin-top: 0;
    color: var(--text);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 12px;
    border: 1px solid var(--line);
    padding: 13px 14px;
    background: var(--surface-2);
    color: var(--text);
    font: inherit;
}

.contact-info a,
.contact-info p {
    display: block;
    color: var(--text);
    font-weight: 800;
}

.contact-info iframe {
    width: 100%;
    height: 330px;
    margin-top: 18px;
    border: 0;
}

.site-footer {
    padding: 66px 0 24px;
    background: var(--footer-bg);
    color: rgba(255, 255, 255, .72);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr 1fr;
    gap: 40px;
}

.footer-logo {
    max-width: 220px;
    max-height: 64px;
    margin-bottom: 18px;
    object-fit: contain;
    background: #fff;
    padding: 6px;
}

.site-footer h3 {
    margin-top: 0;
    color: #fff;
}

.site-footer a {
    display: block;
    margin: 8px 0;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    font-weight: 900;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.footer-social a:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.copyright {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    text-align: center;
}

@media (max-width: 1180px) {
    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        padding-top: 80px;
        padding-bottom: 120px;
    }

    .quote-panel {
        max-width: 520px;
    }

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

    .brand img {
        width: 250px;
    }
}

@media (max-width: 900px) {
    .top-strip-inner,
    .top-right {
        align-items: flex-start;
        flex-direction: column;
    }

    .top-strip-inner {
        padding: 10px 0;
    }

    .hero-feature-row,
    .service-grid,
    .product-grid,
    .about-layout,
    .detail-grid,
    .contact-grid,
    .footer-grid,
    .page-with-sidebar {
        grid-template-columns: 1fr;
    }

    .hero-feature-row {
        margin-top: -40px;
    }

    .experience-box {
        right: 18px;
    }

    .project-row,
    .cta-layout,
    .section-head,
    .category-intro {
        align-items: flex-start;
        flex-direction: column;
    }

    .content-sidebar {
        position: static;
    }

    .page-main .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-tab-list {
        display: flex;
        gap: 10px;
        padding: 8px;
    }

    .product-tab-list button {
        min-height: 46px;
        padding: 0 16px;
    }
}

@media (max-width: 560px) {
    .shell {
        width: min(100% - 28px, 1240px);
    }

    .quote-btn {
        display: none;
    }

    .brand img {
        width: 220px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .section,
    .about-band {
        padding: 58px 0;
    }

    .page-main .product-grid {
        grid-template-columns: 1fr;
    }

    .slider-controls {
        margin-top: -112px;
    }

    .product-tab-list {
        flex-direction: column;
    }

    .product-tab-panel.active {
        padding: 0;
    }
}

/* ============================================================
   Teklif sepeti, header sepet butonu, bildirimler
   ============================================================ */

/* Honeypot alani gizli */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    opacity: 0;
}

/* Header sepet butonu + rozet */
.cart-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: var(--navy);
    font-weight: 900;
    border: 1px solid var(--line);
    transition: border-color .2s ease, color .2s ease;
}

.cart-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

/* Ekleme bildirimi (toast) */
.site-toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: min(420px, calc(100% - 40px));
    padding: 16px 20px;
    background: var(--navy);
    color: #fff;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .3);
    border-left: 4px solid var(--accent);
    animation: toastIn .3s ease;
}

.site-toast a {
    color: #fff;
    font-weight: 900;
    white-space: nowrap;
    border-bottom: 2px solid var(--accent);
}

@keyframes toastIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Bildirim bantlari */
.notice-band {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 28px;
    padding: 16px 20px;
    border-left: 4px solid var(--accent);
    background: var(--surface-2);
    color: var(--text);
    font-weight: 700;
}

.notice-band.success {
    border-left-color: #1f9d55;
    background: rgba(31, 157, 85, .1);
}

.notice-band.danger {
    border-left-color: var(--accent);
    background: rgba(215, 25, 32, .08);
}

/* Sepet duzeni */
.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: start;
}

.cart-empty {
    padding: 60px 30px;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--line);
}

.cart-empty h2 {
    margin: 0 0 12px;
    color: var(--text);
    font-family: "Onest", "Nunito Sans", Arial, sans-serif;
}

.cart-empty p {
    max-width: 460px;
    margin: 0 auto 22px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border: 1px solid var(--line);
}

.cart-table thead th {
    padding: 14px 16px;
    background: var(--navy);
    color: #fff;
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.cart-table tbody td {
    padding: 14px 16px;
    border-top: 1px solid var(--line);
    vertical-align: middle;
}

.cart-thumb {
    width: 84px;
}

.cart-thumb img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    background: var(--surface-2);
}

.cart-name a {
    display: block;
    color: var(--text);
    font-weight: 900;
}

.cart-name a:hover {
    color: var(--accent);
}

.cart-name span {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 400;
}

.cart-code {
    color: var(--muted);
    font-weight: 700;
    white-space: nowrap;
}

.cart-qty input {
    width: 72px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    font: inherit;
    text-align: center;
}

.cart-remove button {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--muted);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.cart-remove button:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
}

/* Teklif kutusu */
.cart-quote {
    position: sticky;
    top: 112px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.quote-summary {
    padding: 22px 24px;
    background: var(--navy);
    color: #fff;
}

.quote-summary h2 {
    margin: 0 0 6px;
    color: #fff;
    font-family: "Onest", "Nunito Sans", Arial, sans-serif;
    font-size: 22px;
}

.quote-summary p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
}

.quote-form {
    display: grid;
    gap: 14px;
    padding: 24px;
}

.quote-form label,
.contact-form {
    display: grid;
    gap: 6px;
    font-weight: 800;
    color: var(--text);
    font-size: 14px;
}

.quote-form input,
.quote-form textarea {
    padding: 11px 13px;
    border: 1px solid var(--line);
    font: inherit;
    font-weight: 400;
    color: var(--text);
    background: #fff;
}

.quote-form input:focus,
.quote-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 0;
    border-color: var(--accent);
}

.quote-note {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    color: var(--muted);
}

/* Urun detayinda teklife ekle */
.detail-add-quote {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    margin-top: 24px;
}

.detail-add-quote label {
    display: grid;
    gap: 6px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    font-weight: 800;
}

.detail-add-quote input {
    width: 90px;
    padding: 11px 12px;
    border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font: inherit;
    text-align: center;
}

.button.ghost.dark {
    border-color: var(--line);
    color: var(--text);
}

.button.light {
    background: var(--surface-2);
    color: var(--text);
}

@media (max-width: 900px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-quote {
        position: static;
    }

    .cart-label {
        display: none;
    }
}

/* ============================================================
   İndirmeler (site tarafı)
   ============================================================ */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

.download-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(var(--navy-rgb), .16);
}

.download-icon {
    display: grid;
    place-items: center;
    height: 120px;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: var(--gold);
}

.download-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 22px 22px;
    flex: 1;
}

.download-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-meta .badge {
    padding: 3px 10px;
    background: var(--surface-2);
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    border-radius: 999px;
}

.download-meta .version {
    font-size: 12px;
    font-weight: 800;
    color: var(--accent);
}

.download-body h2 {
    margin: 0;
    font-size: 20px;
    color: var(--text);
    font-family: "Onest", "Nunito Sans", Arial, sans-serif;
}

.download-body p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    flex: 1;
}

.download-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

.download-size {
    font-size: 12px;
    font-weight: 800;
    color: var(--muted);
    letter-spacing: .02em;
}

.download-soon {
    font-size: 13px;
    font-weight: 800;
    color: var(--muted);
}
