/* Çelikler Konteyner — Steel Precision */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

.blueprint-pattern {
    background-color: #f7f9fb;
    background-image: linear-gradient(#e0e3e5 1px, transparent 1px),
        linear-gradient(90deg, #e0e3e5 1px, transparent 1px);
    background-size: 32px 32px;
}

.section-roof-band {
    position: relative;
    background: #b70011;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem 1.75rem;
    margin-top: -0.5rem;
    clip-path: polygon(0 20px, 50% 0, 100% 20px, 100% 100%, 0 100%);
}

.section-roof-band p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    margin-top: 0.35rem;
}

.red-roof {
    clip-path: polygon(50% 0%, 100% 25%, 100% 100%, 0% 100%, 0% 25%);
}

/* Ana sayfa — kategori kartları (ürünler kategori sayfasında) */
.home-category-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 10rem;
    padding: 1.5rem 1.25rem;
    border: 2px solid #b70011;
    border-radius: 0.75rem;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(183, 0, 17, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-category-card:hover {
    transform: translateY(-2px);
    border-color: #93000b;
    box-shadow: 0 8px 22px rgba(183, 0, 17, 0.14);
}

.home-category-card__title {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #191c1e;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .home-category-card {
        min-height: 11rem;
        padding: 1.75rem 1.5rem;
    }

    .home-category-card__title {
        font-size: 1.5rem;
    }
}

.home-category-card__desc {
    color: #585e6c;
    font-size: 0.875rem;
    line-height: 1.55;
    margin-bottom: 1rem;
    flex: 1;
}

.home-category-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #b70011;
    font-weight: 600;
    font-size: 0.875rem;
}

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid #E2E8F0;
    overflow: visible;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 4.5rem;
    position: relative;
    overflow: visible;
}

.site-header-logo-slot {
    position: relative;
    flex-shrink: 0;
    height: 100%;
}

.site-header-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 15;
}

.site-header-brand__logo {
    width: auto;
    height: 14rem;
    max-width: 14rem;
    object-fit: contain;
    display: block;
    transition: height 0.35s ease, max-width 0.35s ease;
}

@media (min-width: 768px) {
    .site-header-inner {
        display: grid;
        grid-template-columns: 14rem minmax(0, 1fr) auto;
        align-items: center;
        column-gap: 1.5rem;
        height: 5rem;
        padding: 0 24px;
    }

    .site-header-logo-slot {
        width: 14rem;
        grid-column: 1;
        grid-row: 1;
    }

    .site-header-brand {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .site-header-brand__logo {
        height: 14rem;
        max-width: 14rem;
    }

    .site-header-nav {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        align-self: center;
        z-index: 10;
    }

    .site-header-actions {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        align-self: center;
        z-index: 20;
    }
}

/* Mobil: logo solda, scroll ile ortaya gelip büyür — header yüksekliği sabit */
@media (max-width: 767px) {
    .site-header-logo-slot {
        width: 0;
        overflow: visible;
        position: static;
    }

    .site-header-brand {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        transition: left 0.35s ease, transform 0.35s ease;
    }

    .site-header-brand__logo {
        height: 5.75rem;
        max-width: 11rem;
    }

    .site-header.is-scrolled .site-header-brand {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .site-header.is-scrolled .site-header-brand__logo {
        height: 7.25rem;
        max-width: 13rem;
    }
}

.site-header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 2rem);
    height: 100%;
}

.site-header-nav__link {
    font-size: 0.9375rem;
    line-height: 1;
    color: #585e6c;
    white-space: nowrap;
    transition: color 0.15s;
}

.site-header-nav__link:hover {
    color: #b70011;
}

.site-header-nav__link.is-active {
    color: #b70011;
    font-weight: 700;
    border-bottom: 2px solid #b70011;
    padding-bottom: 0.25rem;
}

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    z-index: 20;
}

@media (max-width: 767px) {
    .site-header-actions {
        margin-left: auto;
    }
}

.site-header-menu-btn {
    color: #585e6c;
    padding: 0.25rem;
    line-height: 0;
}

.site-header-menu-btn .material-symbols-outlined {
    font-size: 1.75rem;
}

.site-header-cta {
    align-items: center;
    background: #b70011;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.15s;
}

.site-header-cta:hover {
    background: #dc2626;
}

.site-header-mobile-menu {
    border-top: 1px solid #eceef0;
    background: #fff;
    padding: 0.5rem 1rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.site-header-mobile-menu__link {
    display: block;
    padding: 0.75rem 0;
    font-weight: 500;
    color: #191c1e;
    border-bottom: 1px solid #eceef0;
}

.site-header-mobile-menu__link:hover {
    color: #b70011;
}

.site-header-mobile-menu__cta {
    display: block;
    margin-top: 0.75rem;
    padding: 0.75rem;
    text-align: center;
    background: #b70011;
    color: #fff;
    font-weight: 700;
    border-radius: 0.5rem;
}

/* Logo gölge */
.logo-link {
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.15));
    transition: filter 0.2s;
}

.logo-link:hover {
    filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.22));
}

/* Mobil ürün kartı — 2 sütun, uzun görsel + kırmızı bilgi alanı */
.product-card-compact {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 14px;
    border: 2px solid #b70011;
    overflow: hidden;
    background: #b70011;
}

.product-card-compact__thumb {
    height: 11.5rem;
    overflow: hidden;
    background: #eceef0;
    flex-shrink: 0;
}

.product-card-compact__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 0.35rem;
}

/* Kırmızı ürün kartı — müşteri mockup */
.product-card-red {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 14px;
    border: 2px solid #b70011;
    overflow: hidden;
    background: #b70011;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(183, 0, 17, 0.25);
}

.product-card-red__thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #eceef0;
    overflow: hidden;
    flex-shrink: 0;
}

.product-card-red__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 0.5rem;
    transition: transform 0.35s ease;
}

.product-card-red:hover .product-card-red__thumb img {
    transform: scale(1.03);
}

.product-card-red__code {
    position: absolute;
    left: 0.5rem;
    bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #b70011;
    background: #fff;
    padding: 0.2rem 0.4rem;
    border-radius: 0.2rem;
}

.product-card-red__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0.6rem 0.55rem 0.65rem;
    color: #fff;
}

.product-card-red__title {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.product-card-red__desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.95);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

@media (min-width: 768px) {
    .product-card-red__title {
        font-size: 0.9375rem;
    }

    .product-card-red__desc {
        font-size: 0.75rem;
    }
}

.product-card-compact__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #b70011;
    color: #fff;
    padding: 0.55rem 0.5rem 0.6rem;
    font-family: 'Inter', sans-serif;
}

.product-card-compact__badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #b70011;
    background: #fff;
    padding: 0.15rem 0.35rem;
    border-radius: 0.2rem;
    margin-bottom: 0.3rem;
    align-self: flex-start;
}

.product-card-compact__title {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.product-card-compact__desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Ana sayfa hizmet blokları — Alanya tarzı */
.home-service-block__icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b70011;
    color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(183, 0, 17, 0.25);
}

.home-service-block__icon .material-symbols-outlined {
    font-size: 1.75rem;
}

@media (min-width: 768px) {
    .home-service-block__icon {
        width: 5rem;
        height: 5rem;
    }

    .home-service-block__icon .material-symbols-outlined {
        font-size: 2.25rem;
    }
}

/* Mobil kategori kartı — Alanya stili */
.product-card-alanya {
    border-radius: 16px;
    border: 3px solid #b70011;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
    display: block;
}

.product-card-alanya .thumb {
    height: 10rem;
    background: #eceef0;
}

.product-card-alanya .label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.55rem 0.4rem;
    background: rgba(183, 0, 17, 0.92);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
}

.product-card-mobile {
    border-radius: 16px;
    border: 1px solid rgba(183, 0, 17, 0.3);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.product-card-mobile .thumb {
    height: 7rem;
    background: #eceef0;
}

@media (min-width: 1024px) {
    .product-card-mobile .thumb {
        height: 14rem;
    }
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

main { padding-bottom: 5.5rem; }

@media (min-width: 768px) {
    main { padding-bottom: 0; }
}

.hero-text-panel {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-intro {
    position: relative;
    background: #fff;
}

.mobile-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23999' stroke-width='0.5'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Teklif bölümü — beyaz arka plan, gri yazılar */
.site-quote-section {
    background: #fff;
    color: #585e6c;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.site-quote-section__title {
    color: #191c1e;
}

.site-quote-section__text {
    color: #585e6c;
}

/* Footer — açık gri arka plan, beyaz yazılar, logo görünür */
.site-footer {
    background: #8a9199;
    color: #fff;
    border-top: 4px solid #b70011;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    align-items: start;
}

@media (min-width: 768px) {
    .site-footer__inner {
        grid-template-columns: 15rem minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.25fr);
        column-gap: 2.5rem;
        row-gap: 2rem;
        text-align: left;
    }
}

.site-footer__brand-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .site-footer__brand-col {
        align-items: flex-start;
    }
}

.site-footer__brand {
    display: block;
    line-height: 0;
}

.site-footer__logo {
    height: 15rem;
    width: auto;
    max-width: 15rem;
    object-fit: contain;
    display: block;
}

.site-footer__desc {
    margin: 0;
    max-width: 15rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #fff;
}

.site-footer__col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .site-footer__col {
        align-items: flex-start;
        padding-top: 0.35rem;
    }
}

.site-footer a {
    color: #fff;
    transition: color 0.15s;
}

.site-footer a:hover {
    color: #f7f9fb;
}

.site-footer__heading {
    margin: 0 0 1rem;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #fff;
}

.site-footer__contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    color: #fff;
    text-align: left;
}

@media (min-width: 768px) {
    .site-footer__contact-item {
        justify-content: flex-start;
    }
}

.site-footer__contact-icon {
    font-size: 1.125rem;
    line-height: 1.25rem;
    flex-shrink: 0;
    color: #fff;
}

.site-footer__copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 1rem 5.5rem;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .site-footer__copyright {
        padding-bottom: 1rem;
    }
}
