/* Navbar polish overrides — loaded after style.css.
   Fixes the oversized logo (.lugu was 30% width, ballooning on wide screens)
   and gives the main nav real dropdown styling (menu items driven by
   Menu/MenuData sub-items previously had no desktop dropdown CSS at all). */

/* Bootstrap sets html { scroll-behavior: smooth }, which fights the jQuery
   scrollUp button's own .animate({scrollTop}) — the browser keeps treating
   each incremental jQuery step as a new smooth-scroll target, so the scroll
   appears to hang until a reflow (e.g. mouse leaving the button) flushes it. */
html {
    scroll-behavior: auto;
}

.header_logo {
    display: flex;
    align-items: center;
}

.header_logo .lugu {
    width: auto;
    max-height: 160px;
    object-fit: contain;
}

/* Varsayılan: renkli logo görünür, beyaz logo gizli (diğer tüm sayfalar + anasayfada header scroll olunca) */
.header_logo .logo-white { display: none; }
.header_logo .logo-color { display: block; }

/* Anasayfa: header henüz kaydırılmadan (şeffaf/hero üzerinde) beyaz logo görünür */
body:has(.slider-container) #cem:not(.is-scrolled) .header_logo .logo-white { display: block; }
body:has(.slider-container) #cem:not(.is-scrolled) .header_logo .logo-color { display: none; }


.main_menu nav > ul > li > a {
    padding-top: 0;
    padding-bottom: 0;
    line-height: 52px;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.main_menu nav > ul > li:hover > a,
.main_menu nav > ul > li > a.active {
    color: #c9a24d;
}

.main_menu nav > ul > li > a::before {
    display: none;
}

/* Chevron for items that actually have a dropdown */
.main_menu nav > ul > li.megamenu-holder > a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 7px;
    margin-bottom: 2px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    vertical-align: middle;
}

.main_menu nav > ul > li.megamenu-holder:hover > a::after {
    transform: rotate(225deg);
    margin-bottom: -2px;
}

/* Simple dropdown (menu items with sub-items but no category grid) */
/* style.css forces .megamenu-holder to position:static (needed for the full-width
   category megamenu); .has-submenu items need position:relative to anchor this
   plain dropdown under the link, so override it back here. */
.main_menu nav > ul > li.megamenu-holder.has-submenu {
    position: relative;
}

.main_menu nav > ul > li.megamenu-holder > ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    margin: 0;
    padding: 10px 0;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(27, 67, 50, 0.14);
    border-radius: 8px;
    border-top: 2px solid #c9a24d;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 20;
}

.main_menu nav > ul > li.megamenu-holder:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main_menu nav > ul > li.megamenu-holder > ul.sub-menu li a {
    display: block;
    padding: 9px 20px;
    font-size: 14px;
    color: #333333;
    text-transform: none;
    white-space: nowrap;
}

.main_menu nav > ul > li.megamenu-holder > ul.sub-menu li a:hover {
    color: #1b4332;
    background: #f5efe3;
}

.header_account .canvas_open a {
    font-size: 26px;
    color: #1b4332;
}

/* Menü ve mail sağa dayalı */
.main_menu { margin-left: auto; }
.main_menu nav > ul { justify-content: flex-end; }

.header_mail {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 32px;
    font-size: 14px;
    color: #1b4332;
    white-space: nowrap;
}
.header_mail i { font-size: 16px; color: #c9a24d; }
.header_mail a { color: inherit; }
.header_mail a:hover { color: #c9a24d; }

@media (max-width: 991px) {
    .header_mail { display: none; }
}

/* ============================================
   Tasarım Sistemi — 2026-07 Yenileme
   Kaynak: design_handoff_fullsite/DESIGN_SYSTEM.md
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --green-dark: #1b4332;
    --green-top: #123626;
    --gold: #c9a24d;
    --cream: #f5efe3;
    --gray-light: #f7f7f5;
    --border: #ededed;
    --text: #333333;
    --text-muted: #888888;
    --footer-bg: #1F130B;
}

body, h1, h2, h3, h4, h5, h6, p, a, span, li, input, textarea, button {
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 1200px;
    padding: 0 24px;
}

/* Section başlığı */
.section_head { text-align: center; margin-bottom: 52px; }
.section_head h2 { font-size: 32px; font-weight: 700; color: var(--green-dark); margin-bottom: 12px; letter-spacing: -0.5px; }
.section_head p { font-size: 15px; color: var(--text-muted); font-weight: 300; line-height: 1.7; max-width: 500px; margin: 0 auto; }
.section_head .divider { width: 48px; height: 3px; background-color: var(--green-dark); margin: 16px auto 0; border-radius: 2px; }

/* Butonlar */
.btn_solid {
    display: inline-block; padding: 13px 36px;
    background: var(--green-dark); color: #fff;
    font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    border-radius: 3px; transition: background 0.2s;
}
.btn_solid:hover { background: #2d6b51; color: #fff; }
.btn_outline {
    display: inline-block; padding: 13px 40px;
    border: 2px solid var(--green-dark); color: var(--green-dark);
    font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    border-radius: 3px; transition: background 0.22s, color 0.22s;
}
.btn_outline:hover { background: var(--green-dark); color: #fff; }

/* Ürün kartı */
.product_card { border-radius: 10px; overflow: hidden; background: #fff; border: 1px solid var(--border); transition: box-shadow 0.28s ease, transform 0.28s ease; display: flex; flex-direction: column; }
.product_card:hover { box-shadow: 0 12px 32px rgba(27,67,50,0.12); transform: translateY(-4px); }
.product_thumb { aspect-ratio: 1; overflow: hidden; background: var(--gray-light); flex: none; }
.product_thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.product_card:hover .product_thumb img { transform: scale(1.06); }
.product_info { padding: 16px; display: flex; flex-direction: column; flex: 1 1 auto; }
/* Başlık 1 veya 2 satır olsa da aynı yüksekliği kaplasın, buton her kartta aynı hizada dursun */
.product_info h4 {
    font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 8px; text-align: center;
    line-height: 1.3; min-height: 2.6em;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.view_btn { display: block; text-align: center; padding: 8px; background: var(--cream); color: var(--green-dark); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; border-radius: 4px; transition: background 0.2s, color 0.2s; margin-top: auto; }
.product_card:hover .view_btn { background: var(--green-dark); color: #fff; }

/* Kategori kartı */
.cat_card { position: relative; overflow: hidden; border-radius: 12px; aspect-ratio: 3/4; cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: transform 0.32s ease, box-shadow 0.32s ease; display: block; }
.cat_card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(27,67,50,0.18); }
.cat_card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.cat_card:hover img { transform: scale(1.08); }
.cat_card_overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,19,11,0.88) 0%, rgba(31,19,11,0.2) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px 20px; }
.cat_card_label { display: inline-block; padding: 3px 10px; background: var(--gold); color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; border-radius: 20px; margin-bottom: 8px; width: fit-content; }
.cat_card_overlay h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.cat_card_overlay p { font-size: 12px; color: rgba(255,255,255,0.72); font-weight: 300; line-height: 1.5; margin-bottom: 14px; }
.cat_card_cta { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.8px; opacity: 0; transform: translateY(8px); transition: opacity 0.25s ease, transform 0.25s ease; }
.cat_card:hover .cat_card_cta { opacity: 1; transform: translateY(0); }
.cat_grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat_all_btn { text-align: center; margin-top: 40px; }

/* Kategori kartı — tam ekran genişliği */
.cat_grid_full { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.1rem; width: 100%; margin-top: 40px; }
.cat_card_full { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; display: block; }
.cat_card_full img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.cat_card_full:hover img { transform: scale(1.08); }
.cat_card_full .cat_card_overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,19,11,0.88) 0%, rgba(31,19,11,0.15) 60%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 32px 28px; }
.cat_card_full .cat_card_overlay h3 { font-size: 22px; }

/* Breadcrumb (iç sayfalar) */
.breadcrumbs_area { background: var(--green-dark); padding: 52px 0; margin-bottom: 64px; }
.breadcrumbs_text h1 { font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.breadcrumbs_text ul { display: flex; gap: 8px; list-style: none; padding: 0; margin: 0; }
.breadcrumbs_text ul li { font-size: 14px; color: rgba(255,255,255,0.65); }
.breadcrumbs_text ul li a { color: var(--gold); }
.breadcrumbs_text ul li a:hover { text-decoration: underline; }

/* Marka / partner kartı */
.brands_grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 48px; }
.brand_card { background: #fff; border-radius: 12px; border: 1px solid var(--border); padding: 28px 20px; display: flex; align-items: center; justify-content: center; transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s; }
.brand_card:hover { box-shadow: 0 8px 28px rgba(27,67,50,0.1); transform: translateY(-4px); border-color: var(--gold); }
.brand_card img { max-height: 60px; width: auto; filter: grayscale(0.3); transition: filter 0.25s; }
.brand_card:hover img { filter: grayscale(0); }

/* Responsive */
@media (max-width: 600px) {
    .cat_grid, .products_grid { grid-template-columns: 1fr 1fr; }
    .cat_grid_full { grid-template-columns: 1fr; }
    .brands_grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .cat_grid, .products_grid { grid-template-columns: 1fr; }
}

/* Header — üst bar */
.header_top { background: var(--green-top); }
.header_top .header_top_inner { padding: 8px 0; }
.header_top_sidebar ul { list-style: none; margin: 0; padding: 0; }
.header_top_sidebar ul li {
    font-size: 12.5px; font-weight: 500; color: #fff;
    padding: 0 14px; display: flex; align-items: center; gap: 6px;
    border-left: 1px solid rgba(255,255,255,0.25);
}
.header_top_sidebar ul li:first-child { border-left: none; }
.header_top_sidebar ul li a { color: #fff; transition: color 0.2s ease; }
.header_top_sidebar ul li a:hover { color: var(--gold); }
.header_top_sidebar ul li.header_top_social { gap: 12px; }
.header_top_sidebar ul li.header_top_social a { font-size: 14px; }
.header_top_phone { font-size: 12.5px; font-weight: 500; color: #fff; }
.header_top_phone a { color: #fff; transition: color 0.2s ease; }
.header_top_phone a:hover { color: var(--gold); }

@media (max-width: 991.98px) {
    .header_top { display: none; }
}

/* Ana nav */
#cem { position: sticky; top: 0; z-index: 200; background: #fff; border-bottom: 1px solid var(--border); padding: 8px 0; }
.main_menu nav > ul > li > a {
    display: inline-block;
    font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.6px;
    line-height: 40px; padding: 6px 14px; border-radius: 6px; transition: background 0.2s ease, color 0.2s ease;
}
.main_menu nav > ul > li:hover > a { background: var(--cream); color: var(--green-dark); }
.main_menu nav > ul > li > a.active { background: var(--green-dark); color: #fff; }

/* Anasayfa: header, slider'ın üzerine binen şeffaf bir katman gibi başlar — ikisi tek blokmuş gibi görünür.
   Aşağı kaydırılınca (.is-scrolled) normal dolu/beyaz header'a döner. */
body:has(.slider-container) #cem {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    padding: 22px 0;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
body:has(.slider-container) #cem::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,26,20,0.5), transparent);
    z-index: -1;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
body:has(.slider-container) #cem.is-scrolled {
    position: fixed;
    background: #fff;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(31,19,11,0.08);
}
body:has(.slider-container) #cem.is-scrolled::before { opacity: 0; }

body:has(.slider-container) #cem .main_menu nav > ul > li > a,
body:has(.slider-container) #cem .header_mail,
body:has(.slider-container) #cem .header_account .canvas_open a {
    color: #fff;
}
body:has(.slider-container) #cem .main_menu nav > ul > li:hover > a {
    background: rgba(255,255,255,0.16);
    color: #fff;
}
body:has(.slider-container) #cem .main_menu nav > ul > li > a.active {
    background: rgba(255,255,255,0.22);
    color: #fff;
}
body:has(.slider-container) #cem.is-scrolled .main_menu nav > ul > li > a,
body:has(.slider-container) #cem.is-scrolled .header_mail,
body:has(.slider-container) #cem.is-scrolled .header_account .canvas_open a {
    color: var(--green-dark);
}
body:has(.slider-container) #cem.is-scrolled .main_menu nav > ul > li:hover > a {
    background: var(--cream);
    color: var(--green-dark);
}
body:has(.slider-container) #cem.is-scrolled .main_menu nav > ul > li > a.active {
    background: var(--green-dark);
    color: #fff;
}

/* Mobil offcanvas menü — koyu yeşil tema */
.offcanvas_menu_wrapper { background: var(--footer-bg); }
.offcanvas_main_menu > li > a { color: #fff; }
.offcanvas_main_menu .sub-menu li a { color: rgba(255,255,255,0.7); }
.offcanvas_main_menu .sub-menu li a:hover { color: var(--gold); }
.canvas_close a { color: #fff; }
.canvas_close a:hover { color: var(--gold); }

/* Footer */
.footer_shipping { background: var(--green-dark); padding: 32px 0; }
.footer_shipping_grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.footer_shipping_grid > div { display: flex; align-items: center; gap: 16px; padding: 0 24px; border-left: 1px solid rgba(255,255,255,0.15); }
.footer_shipping_grid > div:first-child { border-left: none; }
.footer_shipping_grid img { filter: brightness(0) invert(1); max-height: 40px; }
.footer_shipping_grid h3 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.footer_shipping_grid p { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.65); margin: 0; }

.footer_widgets { background: var(--footer-bg); padding: 64px 0 0; overflow-x: hidden; }
.footer_grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer_grid > * { min-width: 0; }
.footer_grid a, .footer_contact_desc p, .footer_widget_list p { overflow-wrap: break-word; word-break: break-word; }
.footer_widget_list h3 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; padding-bottom: 12px; margin-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer_widget_list a { color: rgba(255,255,255,0.55); font-size: 13px; font-weight: 300; transition: color 0.2s ease; }
.footer_widget_list a:hover { color: var(--gold); }
.footer_menu ul { list-style: none; padding: 0; margin: 0; }
.footer_menu ul li { margin-bottom: 10px; }
.footer_menu ul li a::before { content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--gold); margin-right: 8px; }
.footer_logo img { /*filter: brightness(0) invert(1);*/ max-height: 200px; }
.footer_social { display: flex; gap: 10px; margin-top: 20px; }
.footer_social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: #fff; transition: border-color 0.2s ease, color 0.2s ease; }
.footer_social a:hover { border-color: var(--gold); color: var(--gold); }
.footer_bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; text-align: center; margin-top: 40px; }
.footer_bottom p { font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,0.35); margin: 0; }

@media (max-width: 600px) {
    .footer_shipping_grid { grid-template-columns: 1fr; gap: 20px; }
    .footer_shipping_grid > div { border-left: none; }
}

.why_us { background: #2B1A10; overflow: hidden; }
.why_us_grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 380px; }
.why_us_content { padding: 48px 72px; display: flex; flex-direction: column; justify-content: center; }
.why_us_tag { display: inline-block; background: var(--gold); color: #1F130B; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 6px 18px; border-radius: 20px; margin-bottom: 20px; width: fit-content; }
.why_us_content h2 { font-family: 'Fraunces', serif; font-size: 40px; font-weight: 600; line-height: 1.2; color: #fff; margin-bottom: 20px; letter-spacing: -0.5px; }
.why_us_content p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.85; max-width: 460px; }
.why_us_image { width: 100%; height: 100%; min-height: 380px; }
.why_us_image img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 1100px) {
    .why_us_grid { min-height: 320px; }
    .why_us_content { padding: 40px 48px; }
    .why_us_content h2 { font-size: 32px; }
    .why_us_image { min-height: 320px; }
}

@media (max-width: 900px) {
    .why_us_grid { grid-template-columns: 1fr; min-height: 0; }
    .why_us_content { padding: 40px 28px; }
    .why_us_content h2 { font-size: 28px; }
    .why_us_content p { max-width: 100%; }
    .why_us_image { min-height: 280px; order: -1; }
}

@media (max-width: 480px) {
    .why_us_content { padding: 32px 20px; }
    .why_us_content h2 { font-size: 24px; }
    .why_us_image { min-height: 220px; }
}

.home_about { padding: 72px 0; background: var(--gray-light); }
.about_inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about_inner img { width: 100%; height: 420px; object-fit: cover; border-radius: 12px; }
.about_tag { display: inline-block; background: var(--gold); color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; }
.about_inner h2 { font-size: 32px; font-weight: 700; color: var(--green-dark); margin-bottom: 16px; }
.about_inner p { font-size: 15px; font-weight: 300; color: var(--text); line-height: 1.85; margin-bottom: 24px; }
.about_stats { display: flex; gap: 32px; margin-bottom: 28px; }
.about_stats > div { border-left: 3px solid var(--gold); padding-left: 16px; }
.about_stats strong { display: block; font-size: 24px; font-weight: 700; color: var(--green-dark); }
.about_stats span { font-size: 12px; color: var(--text-muted); }

/* Ürünler sayfası — sidebar kart görünümü */
.product_sidebar.product_widget {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
}
.product_sidebar.product_widget > * + * { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }

/* Kategoriler — sol vurgu çubuğu ile liste */
.category_sidebar h3 { font-size: 15px; font-weight: 700; color: var(--green-dark); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.6px; }
.category_sidebar ul { list-style: none; padding: 0; margin: 0; }
.category_sidebar ul li { border-left: 3px solid transparent; transition: border-color 0.2s ease; }
.category_sidebar ul li a {
    display: block; padding: 10px 16px; font-size: 14px; color: var(--text);
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.category_sidebar ul li:hover { border-left-color: var(--border); }
.category_sidebar ul li a:hover { color: var(--green-dark); padding-left: 20px; }
.category_sidebar ul li:has(a.active) { border-left-color: var(--gold); }
.category_sidebar ul li a.active { color: var(--gold); font-weight: 700; }

/* Favoriler widget — küçük görsel kartlı liste, kategorilerden farklı bir görünüm */
.favories_widget h3 {
    font-size: 15px; font-weight: 700; color: var(--green-dark); margin-bottom: 16px;
    text-transform: uppercase; letter-spacing: 0.6px;
    display: flex; align-items: center; gap: 8px;
}
.favories_widget h3 i { color: var(--gold); font-size: 13px; }
.favories_list { display: flex; flex-direction: column; gap: 10px; }
.favories_item {
    display: flex; align-items: center; gap: 12px;
    padding: 8px; border-radius: 10px; border: 1px solid var(--border);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.favories_item:hover { border-color: var(--gold); box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
.favories_item_img { width: 48px; height: 48px; flex: 0 0 auto; border-radius: 8px; overflow: hidden; background: var(--gray-light); }
.favories_item_img img { width: 100%; height: 100%; object-fit: cover; }
.favories_item_name { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.35; }

/* Ürün sayısı rozeti */
.page__amount { border: none !important; background: var(--cream); border-radius: 30px; padding: 10px 20px; }
.page__amount p { margin: 0; font-size: 13px; color: var(--text); }
.page__amount p span { color: var(--gold); font-weight: 700; }
.products_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product_section .products_grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 992px) {
    .product_section .products_grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .products_grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
    .product_section .products_grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
    .products_grid { grid-template-columns: 1fr; }
    .product_section .products_grid { grid-template-columns: 1fr; gap: 16px; }
}

/* İletişim sayfası */
.contact_grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 32px; align-items: start; }
.contact_info_col { display: flex; flex-direction: column; gap: 20px; }
.contact_card {
    background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 28px;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.contact_card:hover { box-shadow: 0 12px 32px rgba(27,67,50,0.1); transform: translateY(-4px); border-color: var(--gold); }
.contact_card_icon {
    width: 44px; height: 44px; border-radius: 50%; background: var(--cream); color: var(--green-dark);
    display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 16px;
}
.contact_card h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--green-dark); margin-bottom: 8px; }
.contact_card p { font-size: 14px; font-weight: 300; color: var(--text); line-height: 1.7; margin: 0; }
.contact_card p a { color: var(--text); transition: color 0.2s ease; }
.contact_card p a:hover { color: var(--gold); }

.contact_form_card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 40px; }
.contact_form_card h3 { font-size: 22px; font-weight: 700; color: var(--green-dark); margin-bottom: 24px; }
.contact_form_card .form_input input,
.contact_form_card .form_textarea textarea {
    border-radius: 8px; border-color: var(--border); background: var(--gray-light);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.contact_form_card .form_input input:focus,
.contact_form_card .form_textarea textarea:focus {
    outline: none; border-color: var(--green-dark); background: #fff;
}
.contact_map iframe { width: 100%; height: 420px; border: 0; display: block; }
.contact_social_card { background: var(--green-dark); border-color: var(--green-dark); }
.contact_social_card h3 { color: #fff; }
.contact_social_icons { display: flex; gap: 12px; }
.contact_social_icons a {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.12); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 17px;
    transition: background 0.2s ease, color 0.2s ease;
}
.contact_social_icons a:hover { background: var(--gold); color: #fff; }

.contact_toast {
    position: fixed; top: 24px; right: 24px; z-index: 9999;
    min-width: 260px; max-width: 360px; padding: 16px 20px;
    background: var(--green-dark); color: #fff; font-size: 14px; font-weight: 500;
    border-radius: 10px; box-shadow: 0 12px 32px rgba(0,0,0,0.18);
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.contact_toast.error { background: #b3261e; }
.contact_toast.show { opacity: 1; visibility: visible; transform: translateY(0); }
@media (max-width: 900px) {
    .contact_grid { grid-template-columns: 1fr; }
}

/* Bayiler sayfası */
.dealer_map img { width: 100%; border-radius: 12px; }
.dealer_filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; list-style: none; padding: 0; }
.dealer_filter li { margin: 0; }
.dealer_filter a {
    display: inline-block; padding: 9px 22px;
    border: 2px solid var(--green-dark); color: var(--green-dark);
    font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.6px;
    border-radius: 20px; transition: background 0.2s ease, color 0.2s ease;
}
.dealer_filter a:hover { background: var(--cream); }
.dealer_filter li.active a { background: var(--green-dark); color: #fff; }
.dealer_grid { display: flex; flex-wrap: wrap; margin: 0 -10px; }
.dealer_card_col { padding: 10px; }
.dealer_card {
    background: #fff; border: 1px solid var(--border); border-radius: 10px;
    padding: 22px 16px; height: 100%;
    font-size: 14px; font-weight: 500; color: var(--text); line-height: 1.6;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.dealer_card:hover { box-shadow: 0 12px 32px rgba(27,67,50,0.12); transform: translateY(-4px); border-color: var(--gold); }

/* Ürün detay sayfası üstü — header altında, boydan boya (full-bleed) tanıtım görseli */
.product_detail_banner {
    width: 100%;
    max-height: 620px;
    overflow: hidden;
}
.product_detail_banner img {
    width: 100%;
    height: 100%;
    max-height: 620px;
    object-fit: cover;
    display: block;
}

/* Ürün detay sayfası — solda büyük görsel, sağında küçük kartlar, altta isim ve açıklama */
.product_detail_section { padding: 56px 0 88px; background: #fff; }
.product_detail_stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.product_gallery_grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}
.product_gallery_main_card {
    position: relative;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 1;
    flex: 0 0 auto;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 28% 20%, rgba(201,162,77,0.22), transparent 55%),
        radial-gradient(circle at 78% 82%, rgba(27,67,50,0.1), transparent 60%),
        linear-gradient(160deg, #fff 0%, var(--cream) 100%);
    box-shadow: 0 24px 56px rgba(31,19,11,0.14);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product_gallery_main_card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 18px 26px rgba(31,19,11,0.18));
}

.product_extra_images {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex: 0 0 auto;
}
.product_extra_image_card {
    width: 110px;
    height: 110px;
    flex: 0 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background:
        radial-gradient(circle at 28% 20%, rgba(201,162,77,0.22), transparent 55%),
        radial-gradient(circle at 78% 82%, rgba(27,67,50,0.1), transparent 60%),
        linear-gradient(160deg, #fff 0%, var(--cream) 100%);
    box-shadow: 0 12px 28px rgba(31,19,11,0.12);
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product_extra_image_card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 860px) {
    .product_gallery_grid { flex-direction: column; }
    .product_extra_images { flex-direction: row; }
}

.product_detail_info {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

.product_detail_tag {
    display: inline-block; background: var(--gold); color: #fff;
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px;
    padding: 4px 12px; border-radius: 20px; margin-top: 28px; margin-bottom: 18px;
    margin-right: 35%;
    margin-left: 35%;
}
.product_detail_title {
    font-family: 'Fraunces', serif; font-size: 38px; font-weight: 600;
    line-height: 1.15; color: var(--green-dark); margin-bottom: 20px; letter-spacing: -0.5px; margin-top: 50px;
}
.product_detail_title_wrap { width: 100%; text-align: center; }
/* Açıklama dbden gelen inline style'a (text-align: left/right/center vb.) göre hizalanır */
.product_detail_desc { font-size: 15px; font-weight: 300; color: var(--text); line-height: 1.9; margin-bottom: 32px; width: 100%; text-align: left; }
.product_detail_desc p { margin: 0 0 14px; }
.product_detail_desc p:empty { display: none; }
.product_detail_desc strong { font-weight: 700; color: var(--green-dark); }
.product_detail_desc em { font-style: italic; }
.product_detail_desc ul, .product_detail_desc ol { margin: 0 0 16px; padding-left: 22px; }
.product_detail_desc li { margin-bottom: 6px; }

.product_spec_grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; width: 100%; max-width: 100%; }
.spec_item {
    background: var(--cream); border-radius: 10px; padding: 16px 12px;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.spec_label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); }
.spec_value { font-size: 16px; font-weight: 600; color: var(--green-dark); }

@media (max-width: 900px) {
    .product_detail_title { font-size: 30px; }
}
@media (max-width: 640px) {
    .product_spec_grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
    .product_spec_grid { grid-template-columns: 1fr; }
}

/* Slider — yazılı/yazısız slaytlar aynı sabit yüksekliği paylaşır */
.slider-container { position: relative; }
.slider-container .owl-carousel,
.slider-container .owl-stage,
.slider-container .owl-stage-outer,
.slider-container .owl-item,
.slider-container .item { height: 760px; }
.slider-container .item { position: relative; overflow: hidden; }
.slider-container .slider-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider — tam kaplayan görsel üzerine koyu tonlama (scrim) ve solda beyaz yazı, modern "hero" tasarımı */
.hero_slide {
    position: relative;
    height: 100%;
    overflow: hidden;
}
.hero_slide_media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero_slide_media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero_slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(12,22,17,0.92) 0%, rgba(12,22,17,0.78) 32%, rgba(12,22,17,0.4) 55%, rgba(12,22,17,0.12) 75%, rgba(12,22,17,0.05) 100%);
    pointer-events: none;
}
.hero_slide_text {
    position: relative;
    z-index: 2;
    width: 46%;
    max-width: 560px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px 4% 190px 9%;
    overflow: hidden;
}
.hero_slide_text h2 {
    font-size: 46px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.18;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}
.hero_slide_divider {
    display: block;
    width: 56px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 0 0 18px;
}
.hero_slide_text p {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 420px;
}

/* Slider CTA — diğer sitedeki butonlardan ayrışan, dolgu-kayma (sweep) animasyonlu pill buton */
.hero_slide_text .slider_cta {
    position: relative;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    background: transparent;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #fff;
    border-radius: 999px;
    overflow: hidden;
    isolation: isolate;
    transition: color 0.35s ease, border-color 0.35s ease;
}
.hero_slide_text .slider_cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(.65,0,.35,1);
    z-index: -1;
}
.hero_slide_text .slider_cta i {
    transition: transform 0.35s ease;
}
.hero_slide_text .slider_cta:hover {
    color: var(--green-dark);
    border-color: #fff;
}
.hero_slide_text .slider_cta:hover::before { transform: translateX(0); }
.hero_slide_text .slider_cta:hover i { transform: translateX(4px); }

@media (max-width: 900px) {
    .slider-container .owl-carousel,
    .slider-container .owl-stage,
    .slider-container .owl-stage-outer,
    .slider-container .owl-item,
    .slider-container .item { height: 560px; }
    /* Yatay yerine dikey karartma: metin artık tam genişlikte alta yaslı, resmin
       kendi üstündeki yazı/desenden bağımsız her yerde okunaklı olsun diye */
    .hero_slide::before { background: linear-gradient(to top, rgba(12,22,17,0.92) 0%, rgba(12,22,17,0.66) 40%, rgba(12,22,17,0.2) 72%, transparent 100%); }
    .hero_slide_text { width: 100%; max-width: 100%; padding: 32px 8% 40px; justify-content: flex-end; }
    .hero_slide_text h2 { font-size: 30px; margin-bottom: 12px; }
    .hero_slide_text p { font-size: 15px; margin-bottom: 18px; }
    /* Ok butonları, alttaki yazı yığınıyla çakışmasın diye mobilde gizli; kaydırma (swipe) ve noktalarla gezinilir */
    .slider-container .nv-btn { display: none; }
}
@media (max-width: 480px) {
    .slider-container .owl-carousel,
    .slider-container .owl-stage,
    .slider-container .owl-stage-outer,
    .slider-container .owl-item,
    .slider-container .item { height: 520px; }
    .hero_slide_text { padding: 24px 7% 32px; }
    .hero_slide_text h2 { font-size: 24px; }
    .hero_slide_text p { font-size: 13.5px; margin-bottom: 14px; }
}

/* Slider — ok butonları, sağ kenara dayalı (pay bırakarak), köşesiz kare butonlar */
.slider-container .nv-btn {
    position: absolute;
    bottom: 56px;
    left: auto;
    right: 6%;
    top: auto;
    transform: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    padding: 0;
    z-index: 5;
    pointer-events: none;
}
.slider-container .sldr-btn {
    pointer-events: auto;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 0;
    background: rgba(255,255,255,0.16);
    border: 1.5px solid rgba(255,255,255,0.55);
    backdrop-filter: blur(2px);
    color: #fff;
    font-size: 16px;
    padding: 0;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    transform: none !important;
}
.slider-container .sldr-btn:hover { background: #fff; color: var(--green-dark); border-color: #fff; }

.slider-container .owl-dots {
    position: absolute;
    bottom: 24px; left: 0; right: 0;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    line-height: normal;
}
.slider-container .owl-dots .owl-dot span {
    width: 9px; height: 9px; margin: 0; border-radius: 50%;
    background: rgba(255,255,255,0.6);
    transition: background 0.2s ease, width 0.2s ease, border-radius 0.2s ease;
    display: block;
}
.slider-container .owl-dots .owl-dot:hover span { background: rgba(255,255,255,0.85); }
.slider-container .owl-dots .owl-dot.active span {
    width: 26px; border-radius: 6px;
    background: var(--gold);
}

/* Header — responsive düzeltmeler */
/* Offcanvas menü hover/JS class'ı bekleyerek ekran dışında kalmalı;
   bazı ortamlarda kalıp çakışmasıyla görünür kalabiliyordu — garanti altına alıyoruz. */
.offcanvas_menu_wrapper {
    left: 0 !important;
    margin-left: -300px !important;
}
.offcanvas_menu_wrapper.active {
    margin-left: 0 !important;
}

@media (max-width: 900px) {
    .header_top_inner {
        flex-wrap: wrap;
        row-gap: 6px;
        column-gap: 10px;
        justify-content: center !important;
    }
    .header_top_phone { order: 1; }
    .header_top_sidebar { order: 2; }
    .header_top_sidebar ul {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 4px;
    }
}

@media (max-width: 600px) {
    .header_top_sidebar ul li {
        padding: 0 8px;
        border-left: none;
        font-size: 11px;
    }
    .header_top_phone,
    .header_top_sidebar ul li a {
        font-size: 11px;
    }
    #cem .header_logo .lugu { max-height: 74px; }
}

/* Footer & Hakkımızda — mobil düzeltmeleri
   (bu kurallar dosyanın en sonunda; footer_grid/about_inner'ın
   üstündeki koşulsuz tanımlar aynı özgüllükte olduğu için
   sıralamada daha önce gelen media query'ler onlar tarafından eziliyordu) */
@media (max-width: 900px) {
    .footer_grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
    .footer_grid { grid-template-columns: 1fr; gap: 36px; }
    .about_inner { grid-template-columns: 1fr; gap: 28px; }
    .about_inner img { height: 260px; }
}
