/* =========================================================================
   CANBÄ°S GIDA - PREMIUM FRONTEND CSS
   Vanilla CSS | Ã–zel TasarÄ±m Mimari | Mobil Ã–ncelikli | Mega MenÃ¼
========================================================================= */

/* â”€â”€â”€ 1. RESET & GENEL AYARLAR â”€â”€â”€ */
* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; }

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}


/* â”€â”€â”€ 2. ANA HEADER â”€â”€â”€ */
.site-header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(226, 213, 203, 0.5);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.06);
    background: rgba(255, 255, 255, 0.99);
    border-bottom-color: transparent;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 0.35s ease;
}

.site-header.scrolled .header-inner {
    height: 65px;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo-link img {
    height: 48px;
    transition: all 0.35s ease;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.05));
}
.site-header.scrolled .logo-link img {
    height: 38px;
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--heading-color);
    letter-spacing: -1px;
}
.logo-text span { color: var(--accent-red); }

/* Ana MenÃ¼ */
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item {
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--heading-color);
    padding: 10px 16px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    letter-spacing: 0.1px;
    white-space: nowrap;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 16px; right: 16px;
    height: 2.5px;
    background: linear-gradient(90deg, var(--accent-red), #e63950);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center;
}
.nav-item:hover::after, .nav-item.active::after {
    transform: scaleX(1);
}
.nav-item:hover {
    color: var(--accent-red);
    background: rgba(200, 16, 46, 0.03);
}
.nav-item.active {
    color: var(--accent-red);
}

.nav-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    opacity: 0.6;
}
.mega-menu-wrapper:hover .nav-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* â”€â”€â”€ 3. MEGA MENÃœ (PREMÄ°UM) â”€â”€â”€ */
.mega-menu-wrapper {
    position: relative;
}

.mega-menu {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: fit-content;
    max-width: 92vw;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(44, 24, 16, 0.12), 0 0 0 1px rgba(226, 213, 203, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    padding: 0;
    z-index: 999;
    overflow: hidden;
}

.site-header.scrolled .mega-menu {
    top: 65px;
}

.mega-menu-wrapper:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-menu-wrapper::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: calc(100% + 120px);
    height: 50px;
    z-index: 998;
}

.mega-menu-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: center;
    align-items: flex-start;
    padding: 24px 28px;
}

.mega-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 14px 10px;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 130px;
    flex-shrink: 0;
    position: relative;
}

.mega-card:hover {
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.03), rgba(250, 245, 239, 0.8));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 24, 16, 0.06);
}

.mega-card-img {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, #FAFAFA, #F0F0F0);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.8);
    padding: 12px;
    flex-shrink: 0;
    transition: all 0.35s ease;
    border: 2px solid transparent;
}

.mega-card:hover .mega-card-img {
    border-color: rgba(200, 16, 46, 0.15);
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.1);
}

.mega-card-img.brand-logo-card {
    border-radius: var(--radius-md);
    background: white;
    padding: 14px;
}

.mega-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mega-card:hover .mega-card-img img {
    transform: scale(1.12);
}

.mega-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 28px;
}

.mega-card-title {
    font-family: var(--font-heading);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--heading-color);
    text-align: center;
    line-height: 1.3;
    transition: color 0.25s ease;
}
.mega-card:hover .mega-card-title {
    color: var(--accent-red);
}

/* â”€â”€â”€ 4. SAÄž AKSÄ°YONLAR â”€â”€â”€ */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Dil SeÃ§ici (Bayrak Ä°konlu) */
.lang-switch {
    position: relative;
    cursor: pointer;
}
.lang-current {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    background: transparent;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    font-family: var(--font-body);
}
.lang-flag {
    font-size: 22px;
    line-height: 1;
    width: 24px;
    height: 18px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.lang-chevron {
    font-size: 10px;
    color: var(--text-light);
    transition: transform 0.3s ease;
}
.lang-switch.open .lang-chevron {
    transform: rotate(180deg);
}
.lang-switch:hover .lang-current, .lang-switch.open .lang-current {
    background: var(--primary-bg);
    border-color: var(--border-color);
}
.lang-dropdown {
    position: absolute;
    top: 100%; right: 0;
    margin-top: 10px;
    background: var(--card-bg);
    min-width: 170px;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 36px rgba(44, 24, 16, 0.15);
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid var(--border-color);
    z-index: 1100;
}
.lang-switch.open .lang-dropdown {
    opacity: 1; visibility: visible;
    transform: translateY(0);
}
.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    color: var(--text-color);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}
.lang-dropdown a .lang-flag {
    font-size: 20px;
}
.lang-dropdown a:hover, .lang-dropdown a.active {
    background: var(--primary-bg);
    color: var(--accent-red);
}
.lang-dropdown a.active { font-weight: 700; }

/* Arama Toggle Butonu */
.search-toggle {
    width: 42px; height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--heading-color);
    font-size: 17px;
    cursor: pointer;
    transition: var(--transition);
}
.search-toggle:hover {
    background: var(--primary-bg);
    border-color: var(--accent-red);
    color: var(--accent-red);
    transform: scale(1.05);
}

.header-katalog-btn {
    padding: 10px 22px !important;
    font-size: 13.5px !important;
    border-radius: 10px !important;
    letter-spacing: 0.3px;
    gap: 6px;
}

/* â”€â”€â”€ 5. PREMÄ°UM ARAMA OVERLAY â”€â”€â”€ */
.search-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}
.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-backdrop {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(44, 24, 16, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.search-overlay-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 640px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(44, 24, 16, 0.2);
    padding: 32px;
    transform: translateY(-20px) scale(0.96);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
}
.search-overlay.active .search-overlay-content {
    transform: translateY(0) scale(1);
}

.search-overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.search-overlay-header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}
.search-overlay-header h3 i {
    color: var(--accent-red);
}
.search-close-btn {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-color);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}
.search-close-btn:hover {
    background: #FDECEC;
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--primary-bg);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.search-input-wrapper:focus-within {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.08);
}
.search-input-icon {
    padding-left: 18px;
    font-size: 18px;
    color: var(--text-light);
    flex-shrink: 0;
}
.search-input-wrapper:focus-within .search-input-icon {
    color: var(--accent-red);
}
.search-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 16px 14px;
    font-size: 16px;
    font-family: var(--font-body);
    color: var(--heading-color);
    outline: none;
}
.search-input-wrapper input::placeholder {
    color: var(--text-light);
}
.search-submit-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-red);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
    margin: 4px;
    flex-shrink: 0;
    transition: var(--transition);
}
.search-submit-btn:hover {
    background: var(--accent-red-hover);
    transform: scale(1.05);
}

.search-suggestions {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}
.search-suggestions-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 10px;
}
.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.search-tag {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    background: var(--primary-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.search-tag:hover {
    background: rgba(200, 16, 46, 0.06);
    border-color: var(--accent-red);
    color: var(--accent-red);
}

/* Hamburger MenÃ¼ (Mobil Ä°Ã§in) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 1050;
    gap: 5px;
    transition: var(--transition);
}
.hamburger:hover {
    background: var(--primary-bg);
    border-color: var(--accent-red);
}
.hamburger span {
    width: 18px; height: 2px;
    background: var(--heading-color);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* â”€â”€â”€ 6. RESPONSIVE HEADER â”€â”€â”€ */
@media (max-width: 1100px) {
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .mega-menu { display: none !important; }
}

@media (max-width: 768px) {
    .header-katalog-btn { display: none !important; }
    .header-inner { height: 65px; }
    .site-header.scrolled .header-inner { height: 58px; }
    .search-overlay-content { padding: 24px; }
    .search-overlay { padding-top: 80px; }
}

/* â”€â”€â”€ 4. MOBÄ°L BOTTOM MENÃœ (PWA UYGULAMASI Ä°Ã‡Ä°N) â”€â”€â”€ */
.bottom-menu {
    display: none; /* Sadece mobilde gÃ¶rÃ¼nÃ¼r olacak */
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    z-index: 999;
    padding-bottom: env(safe-area-inset-bottom); /* iPhone X ve Ã¼stÃ¼ iÃ§in alt boÅŸluk */
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .bottom-menu { display: block; }
    /* Alt menÃ¼ olduÄŸu iÃ§in ana iÃ§eriÄŸin altÄ±nda boÅŸluk bÄ±rak */
    body { padding-bottom: 70px; }
}

.bottom-menu-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 65px;
}

.bottom-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    flex: 1;
    height: 100%;
    transition: var(--transition);
}

.bottom-menu-item i {
    font-size: 22px;
    margin-bottom: 4px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bottom-menu-item span {
    font-size: 10px;
    font-weight: 600;
    font-family: var(--font-body);
}

.bottom-menu-item:hover, .bottom-menu-item.active {
    color: var(--accent-red);
}

.bottom-menu-item.active i {
    transform: translateY(-2px) scale(1.1);
}

/* â”€â”€â”€ 5. PWA KURULUM BANNER'I â”€â”€â”€ */
.pwa-install-banner {
    position: fixed;
    bottom: 80px; /* Bottom menÃ¼nÃ¼n Ã¼stÃ¼nde */
    left: 5%; width: 90%;
    background: var(--heading-color);
    color: white;
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pwa-install-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.pwa-icon {
    width: 40px; height: 40px;
    background: var(--accent-red);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: bold; font-size: 20px;
}

.pwa-text { flex: 1; display: flex; flex-direction: column; }
.pwa-text strong { font-size: 14px; font-family: var(--font-heading); }
.pwa-text span { font-size: 11px; opacity: 0.8; }

.pwa-install-btn {
    background: white; color: var(--heading-color);
    border: none; padding: 6px 16px;
    border-radius: 20px; font-weight: 600; font-size: 12px; cursor: pointer;
}
.pwa-close {
    background: transparent; border: none; color: white;
    font-size: 24px; cursor: pointer; opacity: 0.5;
}

/* â”€â”€â”€ 6. FOOTER (KURUMSAL ALT ALAN) â”€â”€â”€ */
.site-footer {
    background: var(--heading-color); /* Derin Koyu Kahve #2C1810 */
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand img {
    height: 50px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1); /* Logoyu beyaza Ã§evir (Opsiyonel) */
}

.footer-brand-text {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 16px;
}
.footer-social a:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex; gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}
.footer-contact-item i {
    color: var(--accent-red);
    font-size: 18px;
}
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: white; }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 13px;
    font-family: var(--font-heading);
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .site-footer { padding-bottom: 100px; /* Mobil menÃ¼ iÃ§in boÅŸluk */ }
}

/* â”€â”€â”€ 7. MODÃœLER ANASAYFA: KATEGORÄ° KARTLARI (%50 BÃœYÃœTÃœLMÃœÅž) â”€â”€â”€ */
.categories-section {
    padding: 60px 0;
    margin-top: 20px;
    background: transparent;
}

.categories-header {
    margin-bottom: 40px;
}

.categories-title {
    font-size: 36px;
    color: var(--heading-color);
    position: relative;
    display: inline-block;
}

.categories-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-red);
    border-radius: 2px;
}

.categories-carousel {
    display: flex;
    align-items: center;
    position: relative;
}

.categories-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 40px; /* Kartlar arasÄ± boÅŸluk arttÄ±rÄ±ldÄ± */
    padding: 20px 10px;
    flex: 1;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.categories-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

/* KartlarÄ±n %50 BÃ¼yÃ¼tÃ¼lmÃ¼ÅŸ Hali (Ortalama 130px'ten 195px'e Ã§Ä±karÄ±ldÄ±) */
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    min-width: 195px; /* Ana BÃ¼yÃ¼me NoktasÄ± */
    max-width: 200px;
}

.category-card-img {
    width: 195px; /* %50 BÃ¼yÃ¼tme */
    height: 195px; /* %50 BÃ¼yÃ¼tme */
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(44, 24, 16, 0.06);
    transition: var(--transition);
    padding: 0; /* Beyaz boÅŸluk kaldÄ±rÄ±ldÄ± */
    border: 3px solid transparent;
    overflow: hidden;
}

.category-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* GÃ¶rseli tÃ¼m daireye yay */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-card:hover .category-card-img {
    border-color: var(--accent-red);
    box-shadow: 0 8px 30px rgba(200, 16, 46, 0.15);
}

.category-card:hover .category-card-img img {
    transform: scale(1.15); /* Premium Ä°Ã§ Zoom */
}

.category-card-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--heading-color);
    text-align: center;
    line-height: 1.4;
    transition: var(--transition);
}

.category-card:hover .category-card-name {
    color: var(--accent-red);
}

/* KaydÄ±rma OklarÄ± (BÃ¼yÃ¼klÃ¼ÄŸe uygun ayarlandÄ±) */
.cat-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--heading-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    z-index: 10;
    font-size: 20px;
    flex-shrink: 0;
}

.cat-nav-btn:hover {
    background: var(--accent-red);
    color: #fff;
    border-color: var(--accent-red);
    transform: scale(1.05);
}

.cat-nav-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: var(--primary-bg);
}

.cat-prev { margin-right: 20px; }
.cat-next { margin-left: 20px; }

@media (max-width: 768px) {
    .category-card { min-width: 140px; } /* Mobilde de %50 bÃ¼yÃ¼k oranÄ±nda kÃ¼Ã§Ã¼lsÃ¼n */
    .category-card-img { width: 140px; height: 140px; padding: 0; overflow: hidden; }
    .cat-prev { margin-right: 10px; }
    .cat-next { margin-left: 10px; }
}

/* â”€â”€â”€ 8. MODAL & ALERT BÄ°LEÅžENLERÄ° â”€â”€â”€ */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(44, 24, 16, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1; visibility: visible;
}

.modal-box {
    background: var(--card-bg);
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transform: translateY(20px);
    transition: var(--transition);
    position: relative;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent-red);
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
}

.alert-danger {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #FFCDD2;
}

.alert-info {
    background: #E3F2FD;
    color: #1565C0;
    border: 1px solid #BBDEFB;
}

/* â”€â”€â”€ 9. SLIDER BÄ°LEÅžENLERÄ° â”€â”€â”€ */
.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.hero-slide {
    display: none;
    animation: fadeEffect 0.8s ease-in-out;
}

.hero-slide.active {
    display: block;
}

@keyframes fadeEffect {
    from { opacity: 0; transform: scale(1.02); }
    to { opacity: 1; transform: scale(1); }
}

.hero-dots {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: white;
    border-color: var(--accent-red);
    transform: scale(1.2);
}

/* â”€â”€â”€ 10. BUTON VARYASYONLARI â”€â”€â”€ */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: transparent;
    color: var(--heading-color);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--heading-color);
    background: var(--heading-color);
    color: white;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: white;
    color: var(--heading-color);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--accent-red);
}

/* â”€â”€â”€ 11. Ã–NE Ã‡IKAN ÃœRÃœNLER (FEATURED PRODUCTS) â”€â”€â”€ */
.featured-section {
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-red);
}

.product-badge {
    position: absolute;
    top: 16px; left: 16px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
}
.product-badge.new {
    background: var(--accent-red);
    color: white;
}

.product-card-img {
    height: 260px;
    padding: 20px;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card-img img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.1);
}

.product-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-cat {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.product-card-title {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--heading-color);
    line-height: 1.3;
}

.product-card-desc {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 20px;
    flex: 1;
}

.product-card-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-red);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.featured-cta {
    text-align: center;
    margin-top: 20px;
}

/* â”€â”€â”€ 12. BANNER & CTA â”€â”€â”€ */
.banner-section {
    padding: 40px 0;
}
.banner-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 60px;
    box-shadow: var(--shadow-md);
}
.banner-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}
.banner-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(44,24,16,0.8), rgba(44,24,16,0.2));
}
.banner-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    color: white;
}
.banner-content h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}
.banner-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* CTA */
.cta-section { padding: 50px 0; }
.cta-card {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.cta-card.reverse { flex-direction: row-reverse; }
.cta-content {
    flex: 1;
    padding: 60px;
}
.cta-content h2 { font-size: 32px; margin-bottom: 20px; }
.cta-content p { font-size: 16px; margin-bottom: 30px; color: var(--text-color); }
.cta-media {
    flex: 1;
    min-height: 400px;
}
.cta-media img {
    width: 100%; height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .banner-card { padding: 40px 20px; min-height: 300px; text-align: center; }
    .banner-overlay { background: rgba(44,24,16,0.6); }
    .banner-content { margin: 0 auto; }
    
    .cta-card, .cta-card.reverse { flex-direction: column-reverse; }
    .cta-content { padding: 40px 20px; text-align: center; }
    .cta-media { width: 100%; min-height: 250px; }
}

/* â”€â”€â”€ 13. SAYFA HEADER (ORTAK) â”€â”€â”€ */
.page-header {
    background-color: var(--heading-color);
    background-size: cover;
    background-position: center;
    padding: 110px 0 40px; /* Top bar + header yÃ¼ksekliÄŸi */
    text-align: center;
    color: white;
    position: relative;
    border-bottom: 4px solid var(--accent-red);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(44, 24, 16, 0.7);
    z-index: 1;
}

.page-header > * {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 28px;
    color: white;
    margin-bottom: 16px;
}

.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.page-breadcrumb a:hover {
    color: white;
}

.page-breadcrumb span {
    color: var(--accent-red);
}

/* â”€â”€â”€ 14. KATEGORÄ° DETAY & Ä°NTRO BÃ–LÃœMÃœ â”€â”€â”€ */
.category-intro {
    padding: 60px 0 20px;
}

.category-intro-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.category-intro-img {
    flex: 0 0 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.category-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-intro-text {
    flex: 1;
}

.category-intro-lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 24px;
    line-height: 1.6;
}

.rich-content {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
}

.rich-content p { margin-bottom: 16px; }
.rich-content ul, .rich-content ol { margin-left: 20px; margin-bottom: 16px; }

.category-products-section {
    padding: 40px 0 80px;
}

.category-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.results-count {
    font-size: 16px;
    color: var(--text-color);
}
.results-count strong { color: var(--heading-color); }

.pagination-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border-color);
}

.empty-state i {
    font-size: 64px;
    color: var(--text-light);
    margin-bottom: 24px;
    display: block;
}

.empty-state h3 { font-size: 24px; margin-bottom: 12px; }
.empty-state p { color: var(--text-color); margin-bottom: 24px; }

@media (max-width: 991px) {
    .category-intro-grid { flex-direction: column; }
    .category-intro-img { flex: none; width: 100%; max-width: 500px; margin: 0 auto; }
}

/* â”€â”€â”€ 15. ÃœRÃœN DETAY SAYFASI â”€â”€â”€ */
.product-detail-section {
    padding: 60px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-gallery-main {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 40px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-gallery-main img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.product-badge-detail {
    position: absolute;
    top: 20px; left: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
}
.product-badge-detail.new { background: var(--accent-red); color: white; }

.product-gallery-thumbs {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.product-thumb {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    background: var(--card-bg);
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.product-thumb img {
    max-height: 100%;
    object-fit: contain;
}

.product-thumb.active, .product-thumb:hover {
    border-color: var(--accent-red);
}

.product-info {
    display: flex;
    flex-direction: column;
}

.product-info-cat {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-info-title {
    font-size: 38px;
    color: var(--heading-color);
    margin-bottom: 24px;
    line-height: 1.2;
}

.product-info-brand, .product-info-code, .product-info-weight {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 12px;
    display: flex;
    gap: 8px;
}

.product-info-brand span, .product-info-code span, .product-info-weight span {
    font-weight: 600;
    color: var(--heading-color);
}

.product-info-short {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 24px 0;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.product-tag {
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
}

.product-share {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.product-share span {
    font-weight: 600;
    color: var(--heading-color);
}

.share-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: white;
    transition: var(--transition);
    border: none; cursor: pointer;
}

.share-btn.whatsapp { background: #25D366; }
.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #000000; }
.share-btn.copy { background: var(--text-light); width: auto; border-radius: 20px; padding: 0 16px; font-size: 14px; gap: 8px; }

.share-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); color: white; }

.product-files {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.product-files h4 { margin-bottom: 16px; font-size: 18px; display: flex; align-items: center; gap: 8px; }

.product-file-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--primary-bg);
    border-radius: var(--radius-md);
    color: var(--heading-color);
    font-weight: 500;
    margin-bottom: 10px;
    transition: var(--transition);
}

.product-file-link:hover {
    background: var(--accent-red);
    color: white;
}

.product-detail-tabs {
    margin-top: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.product-tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    background: var(--primary-bg);
}

.product-tab-btn {
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-color);
    background: transparent;
    border: none;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.product-tab-btn.active {
    color: var(--accent-red);
    border-bottom-color: var(--accent-red);
    background: var(--card-bg);
}

.product-tab-content {
    display: none;
    padding: 40px;
}

.product-tab-content.active {
    display: block;
}

.products-grid-4 {
    grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 991px) {
    .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
    .product-gallery-main { height: 400px; }
    .products-grid-4 { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important; }
}
@media (max-width: 768px) {
    .product-tabs-nav { flex-direction: column; }
    .product-tab-btn { border-bottom: none; border-left: 3px solid transparent; text-align: left; }
    .product-tab-btn.active { border-left-color: var(--accent-red); }
    .product-tab-content { padding: 24px; }
}

/* â”€â”€â”€ 16. HAKKIMIZDA & ZAMAN TÃœNELÄ° â”€â”€â”€ */
.about-hero {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--heading-color);
    line-height: 1.2;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-images img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
    box-shadow: var(--shadow-sm);
}

.about-images img:first-child {
    grid-column: 1 / -1;
    height: 300px;
}

.about-highlight {
    background: var(--heading-color);
    color: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.4;
    box-shadow: var(--shadow-md);
}

.timeline-section {
    padding: 80px 0;
    background: var(--primary-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(200, 16, 46, 0.1);
    color: var(--accent-red);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 36px;
    color: var(--heading-color);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 2px; height: 100%;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    top: 30px;
    width: 20px; height: 20px;
    background: white;
    border: 4px solid var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.1);
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot { right: -10px; }
.timeline-item:nth-child(even) .timeline-dot { left: -10px; }

.timeline-content {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-red);
}

.timeline-year {
    display: inline-block;
    font-size: 24px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--accent-red);
    margin-bottom: 12px;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-color);
    margin-bottom: 20px;
}

.timeline-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

@media (max-width: 991px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-images img:first-child { height: 400px; }
}

@media (max-width: 768px) {
    .timeline::before { left: 20px; }
    .timeline-item { width: 100%; padding: 0 0 40px 50px; text-align: left !important; left: 0 !important; }
    .timeline-item:nth-child(odd) .timeline-dot, .timeline-item:nth-child(even) .timeline-dot { left: 10px; right: auto; top: 20px; }
}

/* â”€â”€â”€ 17. Ä°LETÄ°ÅžÄ°M SAYFASI FORMU & UI â”€â”€â”€ */
.contact-section {
    padding: 60px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--accent-red);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 60px; height: 60px;
    background: rgba(200, 16, 46, 0.05);
    color: var(--accent-red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 18px; margin-bottom: 8px; color: var(--heading-color);
}
.contact-info-card p, .contact-info-card a {
    color: var(--text-color); font-size: 15px; line-height: 1.6;
}
.contact-info-card a:hover { color: var(--accent-red); }

.contact-form-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--text-color);
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-red);
    background: white;
    box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.05);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

.contact-map iframe {
    width: 100%; height: 100%; border: none;
}

@media (max-width: 991px) {
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form-card { padding: 30px 20px; }
}

/* â”€â”€â”€ 18. HERO BÃ–LÃœMÃœ (Ä°KÄ° KOLONLU PREMÄ°UM) â”€â”€â”€ */
.hero-section {
    padding-top: 80px; /* Header yÃ¼ksekliÄŸi (80px) â€” top bar kaldÄ±rÄ±ldÄ± */
    background: var(--primary-bg);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 600px;
    padding: 60px 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(200, 16, 46, 0.08);
    color: var(--accent-red);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    width: fit-content;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    color: var(--heading-color);
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.btn-ghost:hover {
    color: var(--accent-red);
    background: rgba(200, 16, 46, 0.05);
}

.hero-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 24, 16, 0.12);
    position: relative;
    max-height: 550px;
}

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

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
        padding: 40px 0;
    }
    .hero-title { font-size: 38px; }
    .hero-media { max-height: 400px; }
}

@media (max-width: 768px) {
    .hero-section { padding-top: 65px; } /* Mobilde sadece header yÃ¼ksekliÄŸi */
    .hero-grid { padding: 30px 0; gap: 30px; }
    .hero-title { font-size: 30px; }
    .hero-desc { font-size: 16px; }
    .hero-media { max-height: 300px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* â”€â”€â”€ 19. MOBÄ°L MENÃœ PANELÄ° â”€â”€â”€ */
.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(44, 24, 16, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.mobile-menu-overlay.active {
    opacity: 1; visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0; right: -320px; width: 300px; height: 100%;
    background: var(--card-bg);
    z-index: 1045;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    overflow-y: auto;
}
.mobile-menu.active {
    right: 0;
}

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

.mobile-menu-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--primary-bg);
    border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: var(--heading-color);
    cursor: pointer;
    transition: var(--transition);
}
.mobile-menu-close:hover {
    background: var(--accent-red);
    color: white;
}

.mobile-menu-body {
    flex: 1;
    padding: 16px 0;
    overflow-y: auto;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--heading-color);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}
.mobile-nav-item:hover {
    background: var(--primary-bg);
    color: var(--accent-red);
}

.mobile-submenu {
    display: none;
    background: var(--primary-bg);
    padding: 8px 0;
}
.mobile-submenu.open {
    display: block;
}

.mobile-mega-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 16px;
}

.mobile-mega-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 8px;
    border-radius: var(--radius-md);
    background: var(--card-bg);
    transition: var(--transition);
    text-align: center;
}
.mobile-mega-card:hover {
    background: var(--secondary-bg);
}
.mobile-mega-card img {
    width: 60px; height: 60px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--primary-bg);
    padding: 6px;
}
.mobile-mega-card span {
    font-size: 12px;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1.3;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

/* â”€â”€â”€ 20. ARAMA TOGGLE & MODAL â”€â”€â”€ */
.search-toggle {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--heading-color);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}
.search-toggle:hover {
    background: var(--accent-red);
    color: white;
    border-color: var(--accent-red);
}

.search-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(44, 24, 16, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1060;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.search-modal.active {
    opacity: 1; visibility: visible;
}
.search-modal-inner {
    background: var(--card-bg);
    width: 90%;
    max-width: 600px;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transform: translateY(-20px);
    transition: var(--transition);
}
.search-modal.active .search-modal-inner {
    transform: translateY(0);
}
.search-modal input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 18px;
    font-family: var(--font-body);
    background: var(--primary-bg);
    color: var(--heading-color);
    outline: none;
    transition: var(--transition);
}
.search-modal input:focus {
    border-color: var(--accent-red);
    background: white;
}

/* â”€â”€â”€ 21. SCROLL TO TOP BUTONU â”€â”€â”€ */
.scroll-top {
    position: fixed;
    bottom: 90px; right: 20px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--heading-color);
    color: white;
    border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
}

/* â”€â”€â”€ 22. ANÄ°MASYONLAR â”€â”€â”€ */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* â”€â”€â”€ 23. BTN-SM BOYUT â”€â”€â”€ */
.btn-sm {
    padding: 10px 20px !important;
    font-size: 14px !important;
}

/* â”€â”€â”€ 24. GENEL SAYFA Ä°Ã‡ERÄ°ÄžÄ° â”€â”€â”€ */
.site-main {
    min-height: 60vh;
}


/* ¦¦¦ 25. KATALOG SAYFASI ¦¦¦ */
.catalog-section { padding: 60px 0; }
.catalog-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 50px; }
.catalog-filter-btn { padding: 10px 24px; background: transparent; border: 2px solid var(--border-color); border-radius: 30px; color: var(--text-color); font-weight: 600; cursor: pointer; transition: all 0.3s; }
.catalog-filter-btn:hover, .catalog-filter-btn.active { background: var(--heading-color); color: white; border-color: var(--heading-color); }
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 40px; }
.catalog-card { background: var(--card-bg); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); display: flex; flex-direction: column; }
.catalog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--accent-red); }
.catalog-card-cover { padding: 40px; background: linear-gradient(135deg, rgba(230,220,210,0.3), rgba(255,255,255,1)); position: relative; display: flex; align-items: center; justify-content: center; height: 280px; overflow: hidden; border-bottom: 1px solid rgba(0,0,0,0.05); }
.catalog-card-cover img { max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1)); transition: transform 0.5s ease; }
.catalog-card:hover .catalog-card-cover img { transform: scale(1.08); }
.catalog-card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(44, 24, 16, 0.7); display: flex; align-items: center; justify-content: center; gap: 15px; opacity: 0; transition: all 0.3s ease; backdrop-filter: blur(3px); }
.catalog-card:hover .catalog-card-overlay { opacity: 1; }
.catalog-overlay-btn { width: 50px; height: 50px; border-radius: 50%; background: white; color: var(--heading-color); display: flex; align-items: center; justify-content: center; font-size: 20px; transition: all 0.3s; transform: translateY(20px); }
.catalog-card:hover .catalog-overlay-btn { transform: translateY(0); }
.catalog-overlay-btn:hover { background: var(--accent-red); color: white; }
.catalog-card-body { padding: 25px; display: flex; flex-direction: column; flex: 1; }
.catalog-card-title { font-family: var(--font-heading); font-size: 20px; color: var(--heading-color); margin-bottom: 15px; line-height: 1.3; }
.catalog-card-desc { font-size: 15px; color: var(--text-color); margin-bottom: 25px; line-height: 1.6; flex: 1; }
.catalog-card-actions { display: flex; gap: 10px; margin-top: auto; }
.catalog-card-actions .btn { flex: 1; justify-content: center; font-size: 14px; padding: 10px 15px; }
.btn-primary { background: var(--accent-red); color: white; border: none; border-radius: var(--radius-md); font-family: var(--font-heading); font-weight: 600; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.btn-primary:hover { background: var(--heading-color); transform: translateY(-2px); }

/* ¦¦¦ 26. PREMIUM FOOTER ILETISIM BLESENI ¦¦¦ */
.footer-contact-wrapper { display: flex; flex-direction: column; gap: 20px; }
.footer-contact-item.premium { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.03); padding: 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); cursor: pointer; }
.footer-contact-item.premium:hover { background: rgba(200, 16, 46, 0.1); border-color: rgba(200, 16, 46, 0.3); transform: translateX(5px); }
.fc-icon { width: 44px; height: 44px; background: rgba(200, 16, 46, 0.15); color: var(--accent-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; transition: all 0.3s ease; }
.footer-contact-item.premium:hover .fc-icon { background: var(--accent-red); color: white; transform: rotate(-10deg) scale(1.1); box-shadow: 0 4px 15px rgba(200,16,46,0.3); }
.fc-text { display: flex; flex-direction: column; gap: 4px; }
.fc-text span { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); font-weight: 600; font-family: var(--font-heading); }
.fc-text strong { font-size: 15px; color: rgba(255,255,255,0.9); font-weight: 500; font-family: var(--font-body); transition: color 0.3s; line-height: 1.3; }
.fc-text a { text-decoration: none; display: flex; }
.footer-contact-item.premium:hover .fc-text strong, .footer-contact-item.premium:hover .fc-text a strong { color: white; }

/* ¦¦¦ ILETISIM KISMI SADELESTIRME (OVERRIDE) ¦¦¦ */
.footer-contact-wrapper { gap: 15px; }
.footer-contact-item.premium { background: transparent !important; padding: 0 !important; border: none !important; border-radius: 0 !important; }
.footer-contact-item.premium:hover { background: transparent !important; border-color: transparent !important; transform: translateX(3px) !important; }
.fc-icon { width: 32px !important; height: 32px !important; background: transparent !important; font-size: 20px !important; justify-content: flex-start !important; }
.footer-contact-item.premium:hover .fc-icon { background: transparent !important; color: var(--accent-red) !important; transform: scale(1.1) !important; box-shadow: none !important; }
.fc-text strong { font-size: 14px !important; }
.fc-text span { font-size: 10px !important; }

/* ¦¦¦ ILETISIM KISMI SIMETRI DUZELTMESÝ ¦¦¦ */
.footer-contact-wrapper { gap: 8px !important; }
.fc-icon { width: 20px !important; height: auto !important; font-size: 16px !important; }
.fc-text { gap: 1px !important; }
.footer-contact-item.premium { gap: 10px !important; }

/* --- Detayli Incele Buton Revizesi --- */
.product-card-link {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    color: #ffffff !important;
    background: var(--accent-red) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 15px !important;
    padding: 14px 24px !important;
    border-radius: 50px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    text-decoration: none !important;
    width: 100% !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.2) !important;
    cursor: pointer !important;
}

.product-card-link:hover {
    background: var(--heading-color) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(200, 16, 46, 0.35) !important;
}

.product-card-link i {
    font-size: 18px !important;
    transition: transform 0.3s ease !important;
}

.product-card-link:hover i {
    transform: translateX(5px) !important;
}

/* 
================================================================
??? PREMIUM & SYMMETRY REVISION ???
================================================================
*/

/* --- Global Shadows & Consistency --- */
:root {
    --premium-shadow-sm: 0 4px 12px rgba(44, 24, 16, 0.04);
    --premium-shadow-md: 0 12px 30px rgba(44, 24, 16, 0.08);
    --premium-shadow-lg: 0 20px 50px rgba(44, 24, 16, 0.12);
    --transition-premium: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- Product Card Premium Redesign --- */
.product-card {
    background: #ffffff !important;
    border: 1px solid rgba(44, 24, 16, 0.06) !important;
    border-radius: 24px !important; /* Daha oval, premium kseler */
    transition: var(--transition-premium) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

.product-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: var(--premium-shadow-lg) !important;
    border-color: var(--accent-red) !important;
    background: #fff !important;
}

.product-card-img {
    aspect-ratio: 1 / 1 !important; /* Kare oran, tam simetri */
    height: auto !important;
    background: #fdfaf8 !important; /* Hafif kurumsal bej zemin */
    padding: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: var(--transition-premium) !important;
}

.product-card-img img {
    max-width: 90% !important;
    max-height: 90% !important;
    object-fit: contain !important;
}

.product-card-body {
    padding: 30px !important; /* Geni? premium bo?luklar */
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    text-align: center !important; /* Simetrik merkezli hizalama */
}

.product-card-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    min-height: 52px !important; /* Ba?lklarn ayn hizada ba?lamas i?in */
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.product-card-desc {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: var(--text-color) !important;
    margin-bottom: 25px !important;
    min-height: 66px !important; /* Metinlerin ayn hizada bitmesi i?in */
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* --- Contact Page Symmetry Refinement --- */
.contact-grid {
    grid-template-columns: 1fr 1fr !important; /* Tam 50/50 simetri */
    gap: 40px !important;
    align-items: stretch !important;
}

.contact-info-wrapper {
    background: #ffffff !important;
    border: 1px solid rgba(44, 24, 16, 0.06) !important;
    border-radius: 24px !important;
    padding: 45px !important;
    box-shadow: var(--premium-shadow-md) !important;
}

.contact-form-card {
    background: #ffffff !important;
    border: 1px solid rgba(44, 24, 16, 0.06) !important;
    border-radius: 24px !important;
    padding: 45px !important;
    box-shadow: var(--premium-shadow-md) !important;
}

.contact-info-card {
    border-bottom: 1px solid rgba(44, 24, 16, 0.05) !important;
    padding: 24px 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.contact-info-card:last-child {
    border-bottom: none !important;
}

.contact-info-icon {
    width: 54px !important;
    height: 54px !important;
    background: #fdf3f4 !important; /* ok a?k krmz */
    border: 1px solid rgba(200, 16, 46, 0.1) !important;
}

/* --- Global Button Consistency --- */
.btn-primary {
    border-radius: 50px !important; /* Oval butonlar premiumdur */
    padding: 14px 30px !important;
    box-shadow: 0 8px 20px rgba(200, 16, 46, 0.15) !important;
    transition: var(--transition-premium) !important;
}

.btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(200, 16, 46, 0.25) !important;
}

@media (max-width: 991px) {
    .contact-grid { grid-template-columns: 1fr !important; }
}

/* 
================================================================
??? FINAL PREMIUM & SIMETRI REVIZYONU ???
================================================================
*/

/* --- Urun Kartlari Simetrisi --- */
.product-card {
    background: #ffffff !important;
    border: 1px solid rgba(44, 24, 16, 0.08) !important;
    border-radius: 20px !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.04) !important;
}

.product-card-img {
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    background: #fdfaf8 !important;
    padding: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-bottom: 1px solid rgba(44, 24, 16, 0.03) !important;
    overflow: hidden !important;
}

.product-card-img img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.product-card:hover .product-card-img img {
    transform: scale(1.1) rotate(2deg) !important;
}

.product-card-body {
    padding: 25px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    text-align: center !important;
    justify-content: space-between !important;
}

.product-card-title {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: var(--heading-color) !important;
    margin-bottom: 15px !important;
    line-height: 1.3 !important;
    min-height: 50px !important;
}

.product-card-desc {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
    min-height: 70px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* --- Detayli Incele Butonu (Premium Kirmizi) --- */
.product-card-link {
    background: var(--accent-red) !important;
    color: #ffffff !important;
    padding: 12px 25px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    box-shadow: 0 6px 15px rgba(200, 16, 46, 0.2) !important;
    text-decoration: none !important;
    margin-top: auto !important;
}

.product-card-link:hover {
    background: var(--heading-color) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(200, 16, 46, 0.3) !important;
}

.product-card-link i {
    font-size: 18px !important;
    transition: transform 0.3s ease !important;
}

.product-card-link:hover i {
    transform: translateX(5px) !important;
}

/* --- Iletisim Sayfasi Mukemmel Simetri --- */
.contact-grid {
    gap: 50px !important;
}

.contact-info-wrapper, .contact-form-card {
    padding: 50px !important;
    border-radius: 30px !important;
    border: 1px solid rgba(44, 24, 16, 0.05) !important;
    box-shadow: 0 15px 45px rgba(44, 24, 16, 0.06) !important;
}

.contact-info-card h4 {
    font-weight: 700 !important;
    font-size: 18px !important;
    margin-bottom: 5px !important;
}

.contact-info-icon {
    box-shadow: 0 4px 10px rgba(200, 16, 46, 0.1) !important;
}

/* Sayfa Basligi Redesign (Daha Modern) */
.page-header {
    padding: 110px 0 40px !important;
    background-blend-mode: multiply !important;
    background-color: rgba(44, 24, 16, 0.6) !important; /* Arkaplan gorseli varsa daha iyi okunmasi icin overlay */
}

.page-header h1 {
    font-size: 32px !important;
    font-weight: 800 !important;
    letter-spacing: -1px !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
}

/* ================================================================
   MOBIL FIX - BOTTOM MENU & HAMBURGER MENU & GENEL MOBIL UYUMLULUK
   ================================================================ */

/* --- BOTTOM MENU DOKUNMA ALANI DUZELTMESI --- */
.bottom-menu {
    padding-bottom: env(safe-area-inset-bottom, 0px) !important;
    padding-bottom: constant(safe-area-inset-bottom) !important;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
    body {
        padding-bottom: calc(75px + env(safe-area-inset-bottom, 0px)) !important;
    }
}

.bottom-menu-inner {
    height: 68px !important;
    padding: 0 4px !important;
    gap: 0 !important;
}

.bottom-menu-item {
    min-height: 68px !important;
    padding: 8px 2px 10px !important;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    position: relative;
    text-decoration: none !important;
    gap: 4px;
}

.bottom-menu-item i {
    font-size: 20px !important;
    margin-bottom: 2px !important;
    pointer-events: none;
}

.bottom-menu-item span {
    font-size: 10px !important;
    font-weight: 600 !important;
    pointer-events: none;
    line-height: 1.2;
}

/* Ortadaki Urunler butonu vurgusu */
.bottom-menu-center {
    position: relative !important;
}

.bottom-menu-center-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-red), #90001B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
    margin-top: -20px;
    transition: all 0.3s ease;
}

.bottom-menu-center-icon i {
    font-size: 20px !important;
    color: white !important;
    margin-bottom: 0 !important;
}

.bottom-menu-center span {
    color: var(--accent-red) !important;
    font-weight: 700 !important;
}

.bottom-menu-center.active .bottom-menu-center-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.4);
}

/* Aktif durumda ikon rengi */
.bottom-menu-item.active:not(.bottom-menu-center) i {
    color: var(--accent-red) !important;
}

/* --- MOBIL MENU IYILESTIRMELERI --- */
.mobile-menu {
    width: 85vw !important;
    max-width: 360px !important;
    right: -85vw !important;
}

.mobile-menu.active {
    right: 0 !important;
}

.mobile-nav-item {
    min-height: 52px !important;
    padding: 14px 20px !important;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-nav-toggle {
    cursor: pointer;
}

/* Mobil submenu iyilestirmesi */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block !important;
    background: var(--primary-bg) !important;
    border-left: 3px solid var(--accent-red);
}

.mobile-submenu.open {
    max-height: 800px !important;
}

.mobile-mega-cards {
    padding: 12px 16px !important;
    gap: 8px !important;
}

.mobile-mega-card {
    padding: 10px !important;
    border-radius: 12px !important;
    min-height: 90px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-mega-card img {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    object-fit: contain !important;
    background: var(--card-bg) !important;
    padding: 4px !important;
    border: 1px solid var(--border-color);
}

.mobile-mega-card span {
    font-size: 11px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}

.mobile-mega-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 18px;
}

.mobile-mega-viewall {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-red) !important;
    text-align: center;
    border-top: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mobile-mega-viewall:hover {
    background: rgba(200, 16, 46, 0.05);
}

/* Mobil dil selector */
.mobile-lang-selector {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.mobile-lang-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    background: var(--bg-main, var(--primary-bg));
    color: var(--text-body, var(--text-color));
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.mobile-lang-btn.active {
    background: var(--accent-red) !important;
    color: white !important;
}

.mobile-katalog-btn {
    width: 100% !important;
    text-align: center !important;
}

/* --- GENEL MOBIL RESPONSIVE IYILESTIRMELERI --- */
@media (max-width: 480px) {
    /* Hero responsivlik */
    .hero-section h1, .hero-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
    .hero-section p, .hero-desc {
        font-size: 14px !important;
    }

    /* Kategori section */
    .category-grid, .kategori-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    /* Urun kartlari */
    .product-grid, .urun-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .product-card-body {
        padding: 12px !important;
    }

    .product-card-title {
        font-size: 14px !important;
        min-height: auto !important;
        -webkit-line-clamp: 2 !important;
    }

    .product-card-desc {
        font-size: 12px !important;
        min-height: auto !important;
        margin-bottom: 12px !important;
    }

    .product-card-link {
        padding: 10px 16px !important;
        font-size: 12px !important;
    }

    /* Footer mobile padding */
    .site-footer {
        padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px)) !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Sayfa basliklari */
    .page-header h1 {
        font-size: 24px !important;
    }

    /* Container padding */
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* Banner */
    .banner-section {
        padding: 40px 0 !important;
    }

    .banner-section h2 {
        font-size: 22px !important;
    }

    /* CTA */
    .cta-section {
        padding: 40px 0 !important;
    }
}

@media (max-width: 360px) {
    .bottom-menu-center-icon {
        width: 42px;
        height: 42px;
        margin-top: -16px;
    }

    .bottom-menu-item span {
        font-size: 9px !important;
    }

    .mobile-mega-cards {
        grid-template-columns: 1fr 1fr !important;
        gap: 6px !important;
    }
}

/* --- SCROLL-TO-TOP BOTTOM MENU CAKISMASI DUZELTMESI --- */
@media (max-width: 768px) {
    .scroll-top {
        bottom: 85px !important;
        right: 16px !important;
    }

    .scroll-top.visible {
        bottom: calc(85px + env(safe-area-inset-bottom, 0px)) !important;
    }

    /* PWA banner pozisyon duzeltmesi */
    .pwa-install-banner {
        bottom: calc(85px + env(safe-area-inset-bottom, 0px)) !important;
    }
}

/* --- iPHONE NOTCH/HOME INDICATOR DESTEGI --- */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .bottom-menu {
        padding-bottom: env(safe-area-inset-bottom) !important;
    }
    @media (max-width: 768px) {
        body {
            padding-bottom: calc(75px + env(safe-area-inset-bottom)) !important;
        }
    }
}

/* --- HAMBURGER MENU BUTON TOUCH IYILESTIRMESI --- */
.hamburger {
    min-width: 44px !important;
    min-height: 44px !important;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-close {
    min-width: 44px !important;
    min-height: 44px !important;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* --- LANDSCAPE MOBIL DUZELTMESI --- */
@media (max-height: 500px) and (orientation: landscape) {
    .bottom-menu-inner {
        height: 54px !important;
    }
    .bottom-menu-center-icon {
        width: 38px;
        height: 38px;
        margin-top: -12px;
    }
    body {
        padding-bottom: 60px !important;
    }
}
