/* YETİ Canta - Style CSS */

/* ================= TOP BAR ================= */

.top-bar {
    background: #000;
    color: white;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    transition: 0.2s ease;
}

.social-link:hover {
    opacity: 0.8;
}

.mail-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s ease;
}

.mail-link:hover {
    opacity: 0.8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a1a;
    --secondary: #666;
    --accent: #C9A84C;
    --bg: #fff;
    --bg-light: #f8f8f8;
    --border: #e5e5e5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #E8E8E8;
    color: var(--primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================= NAV ================= */

.nav {
    background: white;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* ================= HERO ================= */

.hero {
    padding: 100px 0 80px;
    position: relative;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* İçeriğin üstte olması için */
.nav,
.hero,
.products,
.contact,
.footer {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: #f5f5f5;
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--accent);
}

.hero-text {
    font-size: 18px;
    color: var(--secondary);
    max-width: 600px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ================= SIDE SILHOUETTE ================= */

.side-silhouette {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 90vh;
    max-height: 900px;
    opacity: 0.30;
    z-index: 0;
    pointer-events: none;
}

/* Mobilde gizle */
@media (max-width: 992px) {
    .side-silhouette {
        display: none;
    }
}

/* ================= BUTTON SYSTEM ================= */

button {
    font-family: inherit;
    border: none;
    background: none;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* ================= PRODUCTS ================= */

.products {
    background: #d8d8d8;
    padding: 80px 0;
}

.section-header {
    margin-bottom: 32px;
}

.section-badge {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.product-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #f2f2f2;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: var(--secondary);
    margin-bottom: 6px;
}

.product-name {
    font-weight: 600;
    margin-bottom: 8px;
}

.product-specs {
    font-size: 13px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 14px;
}

/* ================= FILTER BUTTONS ================= */

.filters {
    display: flex;
    gap: 12px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: white;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--accent);
}

.filter-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* ================= LANGUAGE BUTTONS ================= */

.lang-switch {
    display: flex;
    gap: 6px;
}

.lang-btn {
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s ease;
}

.lang-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.lang-btn:hover {
    border-color: var(--accent);
}

/* ================= CONTACT ================= */

.contact {
    padding: 80px 0;
    background: var(--bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: stretch;
}

.contact-left,
.contact-right {
    width: 100%;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
    border-radius: 16px;
}

/* İletişim Bilgileri Kutusu */
.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    height: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 12px;
    transition: 0.3s ease;
}

.info-item:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.info-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
}

.info-icon svg {
    display: block;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.info-content p,
.info-content a {
    margin: 0;
    font-size: 15px;
    color: #666;
    text-decoration: none;
    line-height: 1.5;
}

.info-content a:hover {
    color: #C9A84C;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #25D366 !important;
}

.whatsapp-link:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-container iframe {
        min-height: 350px;
    }

    .contact-info-box {
        padding: 30px 20px;
    }
}

/* ================= MODAL ================= */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.open {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.modal-gallery img {
    width: 100%;
    border-radius: 8px;
}

/* Image Slider */
.modal-image-slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 32px;
    background: #f2f2f2;
    border-radius: 12px;
    overflow: hidden;
}

.modal-main-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    z-index: 10;
}

.slider-btn:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.8);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-btn.prev {
    left: 16px;
}

.slider-btn.next {
    right: 16px;
}

.image-counter {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.modal-spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
    gap: 16px;
    margin: 24px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

/* ================= FOOTER ================= */

.footer {
    background: var(--primary);
    color: white;
    padding: 60px 0 24px;
}

.footer-bottom {
    margin-top: 24px;
    font-size: 14px;
    opacity: 0.7;
    text-align: center;
}

.notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--primary);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    display: none;
    z-index: 3000;
}

.notification.show {
    display: block;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}