

/* ─── GENEL ──────────────────────────────────────────────────────────────────── */

:root {
    --slider-speed: 25s;
    --img-height: 420px;
    --gap: 16px;
    --font: "Audiowide", sans-serif;
}

html {
    overflow-x: clip;
}

.product-page-wrapper,
.slogan-section,
.product-gallery,
.specs-section,
.video-section {
    font-family: "Audiowide", sans-serif !important;
}




/* ─── NAVBAR ─────────────────────────────────────────────────────────────────── */

.navbar.sticky-top {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background-color: rgb(0, 0, 0) !important;
    width: 100vw !important;
}


/* ─── SAYFA WRAPPER ──────────────────────────────────────────────────────────── */

.product-page-wrapper {
    padding-top: 80px;
}


/* ─── FİLM ŞERİDİ ────────────────────────────────────────────────────────────── */

.film-strip {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f5f5f5f0;
}

.film-track {
    display: flex;
    width: max-content;
    animation: scroll-left var(--slider-speed) linear infinite;
    align-items: center;
}

.film-item {
    flex: 0 0 auto;
    margin-right: var(--gap);
}

.film-item img {
    height: var(--img-height);
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    will-change: transform;
}

.film-item:not(:last-child) img {
    border-right: 4px solid rgba(255, 255, 255, 0.2);
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}


/* ─── SLIDER OVERLAY ─────────────────────────────────────────────────────────── */

.slider-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.20),
        rgba(0, 0, 0, 0.20),
        rgba(0, 0, 0, 0.20)
    );
}

.overlay-title {
    font-weight: 800;
    letter-spacing: 6px;
    color: #fff;
    margin: 0 0 25px;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.overlay-subtitle {
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.overlay-slogan {
    background: rgba(26, 155, 241, 0.327);
    padding: 18px 40px;
    color: #fff;
    max-width: 90%;
    line-height: 1.4;
    border-radius: 4px;
}


/* ─── ÜRÜN DETAY KARTI ───────────────────────────────────────────────────────── */

.product-detail-card {
    background-color: rgba(255, 255, 255, 1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-detail-card .card-body {
    background-color: transparent;
}

.product-detail-card .card-title,
.product-detail-card .card-text,
.product-detail-card h5 {
    color: #000 !important;
}

.product-detail-card .text-muted {
    color: rgba(0, 0, 0, 0.7) !important;
}

.product-detail-card .text-secondary {
    color: rgba(0, 0, 0, 0.85) !important;
}

/* Sol görsel sabit yükseklik */
.product-detail-card .row.g-0 {
    align-items: stretch;
}

.product-detail-card .col-md-5 {
    max-height: 500px;
    overflow: hidden;
}

.product-detail-card .col-md-5 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Sağ taraf uzunsa scroll */
.product-detail-card .col-md-7 {
    max-height: 500px;
    overflow-y: auto;
}

.product-urunadi {
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.45) !important;
    margin-bottom: 0;
}


/* ─── AÇIKLAMA METNİ ─────────────────────────────────────────────────────────── */

.product-aciklama {
    line-height: 1.85;
    color: #2c2c2c;
}

.product-aciklama p {
    margin-bottom: 1rem;
}

.product-aciklama p:last-child {
    margin-bottom: 0;
}


/* ─── TEKNİK ÇİZİM GALERİSİ ─────────────────────────────────────────────────── */

.product-gallery {
    background: #fff;
    padding: 3rem 0 0;
}

.gallery-label {
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(0, 0, 0, 0.06);
}

.gallery-cell {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.5rem;
    transition: background 0.3s;
}

.gallery-cell:hover {
    background: #f8f8f8;
}

.gallery-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    overflow: hidden;
    border-radius: 6px;
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.gallery-cell:hover .gallery-img-wrap img {
    transform: scale(1.03);
}

.gallery-cell-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.cell-label {
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.25);
}

.cell-divider {
    display: block;
    width: 30px;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
}

.cell-number {
    color: rgba(0, 0, 0, 0.12);
    letter-spacing: 1px;
}


/* ─── TEKNİK ÖZELLİKLER & YETENEKLER TABLOSU ────────────────────────────────── */

.specs-section {
    background: #0a0a0a;
    padding: 3rem 2rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.specs-card {
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    overflow: hidden;
}

.specs-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    background: #111;
}

.specs-header-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.specs-header-icon.purple {
    background: #3C3489;
    color: #CECBF6;
}

.specs-header-icon.teal {
    background: #085041;
    color: #9FE1CB;
}

.specs-header-title {
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: #111;
}

.specs-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table tr:nth-child(even) td {
    background: #151515;
}

.specs-table td {
    padding: 12px 1.25rem;
    color: rgba(255, 255, 255, 1);
    vertical-align: middle;
    line-height: 1.5;
}

.specs-table td:first-child {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    width: 45%;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.yetenek-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #CECBF6;
    margin-right: 8px;
    vertical-align: middle;
}


/* ─── SLOGAN BÖLÜMÜ ──────────────────────────────────────────────────────────── */

.slogan-section {
    background: #0a0a0a;
    padding: 5rem 2rem;
    text-align: center;
}

.slogan-line1 {
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
}

.slogan-line2 {
    letter-spacing: 6px;
    text-transform: uppercase;
    color: aqua;
    margin-top: 1rem;
    font-weight: 400;
}

.slogan-line3 {
    color: rgba(255, 255, 255, 0.45);
    margin-top: 1.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.85;
}

.slogan-animate {
    opacity: 0;
    transform: translateY(-28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slogan-animate:nth-child(2) { transition-delay: 0.2s; }
.slogan-animate:nth-child(3) { transition-delay: 0.4s; }

.slogan-animate.slogan-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ─── VIDEO BÖLÜMÜ ───────────────────────────────────────────────────────────── */

.video-section {
    background: #0a0a0a;
    padding: 4rem 2rem;
}

.video-label {
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0;
}

.video-divider {
    width: 40px;
    height: 1px;
    background: rgba(0, 255, 255, 0.2);
    margin: 1.25rem auto 2.5rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}



/* ─── FLOATING İLETİŞİM BUTONU ───────────────────────────────────────────────── */

.floating-contact-btn {
    position: fixed !important;
    bottom: 2rem;
    right: 2rem;
    z-index: 9998;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

.floating-contact-btn:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}

.form-include-wrapper > button {
    display: none !important;
}


/* ─── AYRAÇ ÇİZGİSİ ─────────────────────────────────────────────────────────── */

.product-divider {
    border-top: 1px solid rgba(0, 255, 255, 0.15);
    margin: 0;
}

.contact-divider {
    position: relative;
    text-align: center;
    background: #0a0a0a;
    padding: 2rem 0;
}

.contact-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.contact-divider span {
    position: relative;
    background: #0a0a0a;
    padding: 0 1.5rem;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
}


/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────── */

/* Küçük telefonlar */
@media (max-width: 500px) {
    .btn-custom { font-size: 12px; }

    .overlay-title { font-size: 28px; letter-spacing: 3px; }
    .overlay-subtitle { font-size: 14px; letter-spacing: 2px; }
    .overlay-slogan { font-size: 13px; padding: 10px 16px; }

    .product-urunadi { font-size: 0.9rem; }
    .product-aciklama { font-size: 0.85rem; }

    .slogan-line1 { font-size: 22px; letter-spacing: 2px; }
    .slogan-line2 { font-size: 12px; letter-spacing: 3px; }
    .slogan-line3 { font-size: 12px; }

    .specs-header-title { font-size: 13px; }
    .specs-table td { font-size: 12px; padding: 8px 0.75rem; }
    .specs-table td:first-child { font-size: 11px; }

    .gallery-label { font-size: 16px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-cell { padding: 1.5rem 1rem; }

    .video-label { font-size: 16px; }

    .specs-grid { grid-template-columns: 1fr; }
}

/* Orta boy telefonlar */
@media (min-width: 501px) and (max-width: 767px) {
    .btn-custom { font-size: 14px; }

    .overlay-title { font-size: 34px; letter-spacing: 4px; }
    .overlay-subtitle { font-size: 16px; }
    .overlay-slogan { font-size: 14px; padding: 12px 20px; }

    .product-urunadi { font-size: 1rem; }
    .product-aciklama { font-size: 0.9rem; }

    .slogan-line1 { font-size: 26px; }
    .slogan-line2 { font-size: 13px; }
    .slogan-line3 { font-size: 13px; }

    .specs-table td { font-size: 13px; }
    .specs-table td:first-child { font-size: 12px; }

    .gallery-label { font-size: 18px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-cell { padding: 1.5rem 1rem; }

    .video-label { font-size: 18px; }

    .specs-grid { grid-template-columns: 1fr; }
}

/* Küçük tabletler */
@media (min-width: 768px) and (max-width: 1024px) {
    .btn-custom { font-size: 15px; }

    .overlay-title { font-size: 48px; }
    .overlay-subtitle { font-size: 18px; }
    .overlay-slogan { font-size: 16px; }

    .product-urunadi { font-size: 1.1rem; }
    .product-aciklama { font-size: 0.925rem; }

    .slogan-line1 { font-size: 32px; }
    .slogan-line2 { font-size: 15px; }
    .slogan-line3 { font-size: 14px; }

    .specs-header-title { font-size: 14px; }
    .specs-table td { font-size: 14px; }
    .specs-table td:first-child { font-size: 13px; }

    .gallery-label { font-size: 20px; }
    .video-label { font-size: 20px; }
}

/* Büyük tabletler */
@media (min-width: 1025px) and (max-width: 1280px) {
    .btn-custom { font-size: 16px; }

    .overlay-title { font-size: 60px; }
    .overlay-subtitle { font-size: 19px; }
    .overlay-slogan { font-size: 18px; }

    .product-urunadi { font-size: 1.15rem; }
    .product-aciklama { font-size: 0.95rem; }

    .slogan-line1 { font-size: 38px; }
    .slogan-line2 { font-size: 17px; }
    .slogan-line3 { font-size: 15px; }

    .specs-header-title { font-size: 14px; }
    .specs-table td { font-size: 14px; }
    .specs-table td:first-child { font-size: 13px; }

    .gallery-label { font-size: 22px; }
    .video-label { font-size: 22px; }
}

/* Küçük dizüstü */
@media (min-width: 1281px) and (max-width: 1440px) {
    .btn-custom { font-size: 17px; }

    .overlay-title { font-size: 72px; }
    .overlay-subtitle { font-size: 20px; }
    .overlay-slogan { font-size: 20px; }

    .product-urunadi { font-size: 1.2rem; }
    .product-aciklama { font-size: 0.975rem; }

    .slogan-line1 { font-size: 44px; }
    .slogan-line2 { font-size: 18px; }
    .slogan-line3 { font-size: 15px; }

    .specs-header-title { font-size: 15px; }
    .specs-table td { font-size: 15px; }
    .specs-table td:first-child { font-size: 14px; }

    .gallery-label { font-size: 24px; }
    .video-label { font-size: 24px; }
}

/* Büyük dizüstü ve masaüstü */
@media (min-width: 1441px) {
    .btn-custom { font-size: 18px; }

    .overlay-title { font-size: 96px; }
    .overlay-subtitle { font-size: 22px; }
    .overlay-slogan { font-size: 26px; }

    .product-urunadi { font-size: 1.25rem; }
    .product-aciklama { font-size: 1rem; }

    .slogan-line1 { font-size: 52px; }
    .slogan-line2 { font-size: 20px; }
    .slogan-line3 { font-size: 16px; }

    .specs-header-title { font-size: 15px; }
    .specs-table td { font-size: 15px; }
    .specs-table td:first-child { font-size: 14px; }

    .gallery-label { font-size: 25px; }
    .video-label { font-size: 25px; }
}