/* =========================================
   ARMA ÜRÜNLER SAYFASI - PREMIUM TASARIM
========================================= */

.arma-products-page {
    width: 100%;
    font-family: 'Inter', sans-serif;
    background: #f6f8fb;
    color: #111827;
    overflow: hidden;
}

.arma-products-container {
    width: min(1280px, 92%);
    margin: 0 auto;
}

/* HERO */
.arma-products-hero {
    position: relative;
    padding: 95px 0 90px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 128, 0, 0.18), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(0, 168, 181, 0.12), transparent 30%),
        linear-gradient(135deg, #0b111d 0%, #101827 52%, #172033 100%);
    color: #ffffff;
}

.arma-products-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.arma-products-hero-inner {
    max-width: 720px;
}

.arma-products-hero-inner span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 50px;
    background: rgba(255, 128, 0, 0.13);
    border: 1px solid rgba(255, 128, 0, 0.28);
    color: #ff8a00;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.arma-products-hero-inner h1 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
}

.arma-products-hero-inner p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.7;
    font-weight: 500;
}

/* FILTER */
.arma-products-filter-area {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.04);
}

.arma-products-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.arma-filter-btn {
    appearance: none;
    border: 1px solid rgba(17, 24, 39, 0.12);
    background: #ffffff;
    color: #111827;
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .28s ease;
}

.arma-filter-btn:hover {
    border-color: rgba(255, 128, 0, 0.45);
    color: #ff7a00;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(255, 128, 0, 0.10);
}

.arma-filter-btn.active {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(135deg, #ff8a00 0%, #ff6b00 100%);
    box-shadow: 0 16px 34px rgba(255, 122, 0, 0.28);
}

/* PRODUCT AREA */
.arma-products-list-area {
    padding: 80px 0 110px;
    background:
        linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
}

.arma-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* CARD */
.arma-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 560px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.07);
    transition:
        opacity .35s ease,
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.arma-product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 128, 0, 0.11), transparent 34%),
        linear-gradient(315deg, rgba(0, 168, 181, 0.08), transparent 42%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

.arma-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 128, 0, 0.32);
    box-shadow: 0 28px 75px rgba(15, 23, 42, 0.13);
}

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

/* IMAGE */
.arma-product-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 355px;
    padding: 36px;
    background:
        radial-gradient(circle at center, #ffffff 0%, #f8fafc 58%, #eef2f6 100%);
    text-decoration: none !important;
    overflow: hidden;
}

.arma-product-image::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 38px;
    width: 58%;
    height: 24px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.12);
    filter: blur(18px);
    z-index: 1;
}

.arma-product-image img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 285px;
    object-fit: contain;
    transition: transform .45s ease;
}

.arma-product-card:hover .arma-product-image img {
    transform: scale(1.055);
}

/* CONTENT */
.arma-product-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 26px 28px 30px;
}

.arma-product-tag {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 128, 0, 0.10);
    color: #ff7a00;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .3px;
}

.arma-product-content h3 {
    margin: 0 0 12px;
    color: #101827;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.6px;
}

.arma-product-content p {
    margin: 0 0 22px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

.arma-product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: #111827;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 800;
    transition: color .25s ease;
}

.arma-product-link::after {
    content: "→";
    color: #ff7a00;
    font-size: 19px;
    line-height: 1;
    transition: transform .25s ease;
}

.arma-product-link:hover {
    color: #ff7a00;
}

.arma-product-link:hover::after {
    transform: translateX(5px);
}

/* FILTER STATES */
.arma-product-card.is-hidden {
    display: none;
}

.arma-product-card.is-visible {
    animation: armaProductFade .35s ease both;
}

@keyframes armaProductFade {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

/* SCROLL REVEAL */
.arma-product-card,
.arma-products-hero-inner {
    opacity: 0;
    transform: translateY(26px);
}

.arma-product-card.arma-show,
.arma-products-hero-inner.arma-show {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity .7s ease,
        transform .7s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

/* TABLET */
@media (max-width: 1100px) {
    .arma-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .arma-product-card {
        min-height: 540px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .arma-products-hero {
        padding: 68px 0 60px;
    }

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

    .arma-products-hero-inner p {
        font-size: 15px;
    }

    .arma-products-filter-area {
        position: relative;
        top: auto;
        padding: 14px 0;
    }

    .arma-products-filter {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .arma-products-filter::-webkit-scrollbar {
        display: none;
    }

    .arma-filter-btn {
        flex: 0 0 auto;
        padding: 10px 15px;
        font-size: 13px;
    }

    .arma-products-list-area {
        padding: 46px 0 70px;
    }

    .arma-products-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .arma-product-card {
        min-height: auto;
        border-radius: 22px;
    }

    .arma-product-image {
        height: 285px;
        padding: 28px;
    }

    .arma-product-image img {
        max-height: 230px;
    }

    .arma-product-content {
        padding: 22px 22px 26px;
    }

    .arma-product-content h3 {
        font-size: 22px;
    }

    .arma-product-content p {
        font-size: 14px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .arma-products-container {
        width: 90%;
    }

    .arma-products-hero {
        padding: 56px 0 52px;
    }

    .arma-products-hero-inner h1 {
        font-size: 36px;
    }

    .arma-product-image {
        height: 250px;
    }

    .arma-product-image img {
        max-height: 200px;
    }
}
/* =========================================
   ÜRÜNLER SAYFASI HERO GÖRSEL ARKA PLAN
========================================= */

.arma-products-hero {
    position: relative !important;
    overflow: hidden !important;
    background: #0b111d !important;
}

/* Banner arka plan görseli */
.arma-products-hero::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;

    background-image: url("/Uploads/Images/site/armabaner2.png") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;

   
    transform: scale(1.05) !important;

    z-index: 0 !important;
}

/* Koyu premium overlay */
.arma-products-hero::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;

    background:
        linear-gradient(
            90deg,
            rgba(8, 13, 23, 0.94) 0%,
            rgba(8, 13, 23, 0.78) 42%,
            rgba(8, 13, 23, 0.42) 100%
        ),
        linear-gradient(
            180deg,
            rgba(8, 13, 23, 0.20) 0%,
            rgba(8, 13, 23, 0.78) 100%
        ) !important;

    z-index: 1 !important;
}

/* Yazılar görselin üstünde kalsın */
.arma-products-hero .arma-products-container,
.arma-products-hero .arma-products-hero-inner {
    position: relative !important;
    z-index: 2 !important;
}

/* Hero yazı görünümü */
.arma-products-hero-inner span {
    background: rgba(255, 138, 0, 0.16) !important;
    border: 1px solid rgba(255, 138, 0, 0.35) !important;
    color: #ff8a00 !important;
}

.arma-products-hero-inner h1 {
    color: #ffffff !important;
}

.arma-products-hero-inner p {
    color: rgba(255, 255, 255, 0.82) !important;
}

/* Mobil */
@media (max-width: 768px) {
    .arma-products-hero::before {
        background-position: center center !important;
    }
}
/* =========================================
   ÜRÜNLER HERO - HAKKIMIZDA İLE AYNI GENİŞ GÖRÜNÜM
========================================= */

.arma-products-hero {
    min-height: 520px !important;
    height: 520px !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;

    overflow: hidden !important;
}

/* Arka plan görseli tam geniş ve dolu dursun */
.arma-products-hero::before {
    background-size: cover !important;
    background-position: center center !important;
    transform: scale(1.04) !important;
}

/* Yazı alanı hakkımızda gibi içeriden başlasın */
.arma-products-hero .arma-products-container {
    width: min(1240px, 92%) !important;
    margin: 0 auto !important;

    position: relative !important;
    z-index: 2 !important;
}

/* Yazı bloğu */
.arma-products-hero-inner {
    max-width: 760px !important;
    padding-top: 0 !important;
}

/* Başlık daha dengeli */
.arma-products-hero-inner h1 {
    font-size: clamp(52px, 6vw, 86px) !important;
    line-height: 0.95 !important;
    letter-spacing: -3px !important;
}

/* Açıklama */
.arma-products-hero-inner p {
    max-width: 680px !important;
    font-size: 21px !important;
    line-height: 1.65 !important;
    font-weight: 700 !important;
}

/* Filtre alanı hero dibine düzgün otursun */
.arma-products-filter-area {
    margin-top: 0 !important;
}

/* MOBİL */
@media (max-width: 768px) {
    .arma-products-hero {
        min-height: 420px !important;
        height: 420px !important;
    }

    .arma-products-hero-inner h1 {
        font-size: 44px !important;
        letter-spacing: -1.5px !important;
    }

    .arma-products-hero-inner p {
        font-size: 16px !important;
        line-height: 1.7 !important;
    }
}

/* =========================================
   İÇ SAYFA BANNERLARI
   SÜRDÜRÜLEBİLİRLİK GİBİ DAHA KOYU GÖRÜNÜM
========================================= */

.page-hero,
.inner-hero,
.page-banner,
.sub-hero {
    position: relative !important;
    overflow: hidden !important;
}

/* Görsel renkli kalsın */
.page-hero img,
.inner-hero img,
.page-banner img,
.sub-hero img {
    filter: none !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
}

/* Koyu ama siyah-beyaz olmayan overlay */
.page-hero::before,
.inner-hero::before,
.page-banner::before,
.sub-hero::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background:
        linear-gradient(
            90deg,
            rgba(3, 16, 34, 0.82) 0%,
            rgba(5, 22, 45, 0.68) 42%,
            rgba(7, 26, 52, 0.42) 70%,
            rgba(0, 0, 0, 0.18) 100%
        ) !important;
    display: block !important;
}

/* Yazılar overlayin üstünde kalsın */
.page-hero .container,
.inner-hero .container,
.page-banner .container,
.sub-hero .container,
.page-hero .hero-content,
.inner-hero .hero-content,
.page-banner .hero-content,
.sub-hero .hero-content,
.page-hero .page-hero-content,
.inner-hero .page-hero-content,
.page-banner .page-hero-content,
.sub-hero .page-hero-content {
    position: relative !important;
    z-index: 2 !important;
}

/* Başlık ve metin okunaklı olsun */
.page-hero h1,
.inner-hero h1,
.page-banner h1,
.sub-hero h1 {
    color: #fff !important;
    text-shadow: 0 4px 18px rgba(0,0,0,.28) !important;
}

.page-hero p,
.inner-hero p,
.page-banner p,
.sub-hero p {
    color: rgba(255,255,255,.92) !important;
    text-shadow: 0 3px 12px rgba(0,0,0,.22) !important;
}