/* =============================================
   SÜTÇÜOĞULLARI MUHALLEBİCİSİ
   UIkit + Custom — Turuncu Tema
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap');

:root {
    --primary: #FD8B3B;
    --primary-dark: #e47520;
    --primary-light: #ffab6b;
    --dark: #242323;
    --dark-soft: #333232;
    --text: #080808;
    --text-light: #595959;
    --text-muted: #8F8F8F;
    --border: #e5e5e5;
    --border-light: #f0f0f0;
    --light-bg: #fafafa;
    --cream: #fdf8f3;
    --white: #ffffff;
    --green: #3F7652;
    --success: #3F7652;
    --danger: #c0392b;

    --font-body: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-card: 0 1.5rem 1.5rem rgba(15,38,102,0.1);

    --radius: 15px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition: all 0.35s var(--ease);
    --transition-fast: all 0.2s ease;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

html { overflow-x: hidden; }

a { color: var(--primary); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--primary-dark); text-decoration: none; }
img { max-width: 100%; height: auto; }

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
}

::selection { background: var(--primary); color: #fff; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f5f5f5; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* ===== HEADER — mualla.com.tr TARZI ===== */
/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 1px 10px rgba(0,0,0,0.08);
    overflow-x: clip;
}

.header-main .uk-navbar-container {
    background: transparent !important;
    border: none !important;
}

.header-main .uk-navbar { gap: 0 !important; }
.header-main .uk-navbar-left,
.header-main .uk-navbar-right,
.header-main [class*=uk-navbar-center] { gap: 0 !important; }

/* Logo - en sol */
.header-logo {
    padding: 0 !important;
    min-height: 80px !important;
    display: flex !important;
    align-items: center !important;
}

.header-logo img {
    height: 100px;
    width: auto;
}

.logo-text-fallback {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
}

/* Nav Links */
.header-nav { gap: 0 !important; align-items: center; }

.header-nav > li {
    display: flex;
    align-items: center;
    align-self: stretch;
}

.header-nav > li > a {
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: var(--text) !important;
    text-transform: capitalize !important;
    letter-spacing: 0.3px !important;
    padding: 0 18px !important;
    height: 50% !important;
    min-height: auto !important;
    display: flex !important;
    align-items: center !important;
    transition: 0.15s ease-in-out;
}

.header-nav > li > a:hover,
.header-nav > li.uk-active > a,
.header-nav > li.uk-open > a {
    color: var(--primary) !important;
}

/* Dropdown ok ve alt çizgi tamamen kaldır */
.header-nav > li > a::after { display: none !important; }
.header-nav > li > a::before { display: none !important; }

/* Header sağ tarafı: menü + bağımsız sipariş butonu */
.header-right-wrap { display: flex; align-items: center; }

/* Sipariş Ver butonu menü ul'ünden bağımsız, sağda ayrı duruyor */
.header-order-standalone { margin-left: 24px; flex-shrink: 0; }
.header-order-li { display: flex; align-items: center; margin-left: 14px; }

/* Sipariş Ver — sade menü linki (transparent, sadece yazı + ok) */
.header-order-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
    padding: 8px 22px !important;
    border-radius: 50px !important;
    font-family: var(--font-body);
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px;
    text-decoration: none !important;
    transition: 0.2s ease;
    white-space: nowrap;
}

.header-order-btn:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

/* UIkit SVG ikonu beyaz olsun (varsayılan stroke="#000" override) */
.header-order-btn svg,
.header-order-btn svg line,
.header-order-btn svg polyline,
.header-order-btn svg path,
.header-order-btn svg circle {
    stroke: currentColor !important;
    fill: none !important;
}

/* Mobil offcanvas Sipariş Ver linki */
.mobile-order-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 0 !important;
}

/* Hamburger renk */
.site-header .uk-navbar-toggle {
    color: var(--dark) !important;
}

/* UIkit navbar-dropdown genel override */
.uk-navbar-dropdown {
    --uk-position-offset: 28px !important;
    margin-top: 28px !important;
}

/* ===== DROPDOWN (Kurumsal) ===== */
.header-dropdown {
    background: #fff !important;
    border-radius: 0 0 8px 8px !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1) !important;
    padding: 16px 20px !important;
    border-top: 2px solid var(--primary);
    min-width: 200px;
}

.header-dropdown .uk-nav a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text) !important;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.15s ease;
}

.header-dropdown .uk-nav a:hover {
    color: var(--primary) !important;
}

.header-dropdown .uk-nav a span[uk-icon] { color: var(--primary); }

/* ===== MEGA DROPDOWN (Ürünlerimiz) ===== */
.header-mega-dropdown {
    background: #fff !important;
    border-radius: 0 0 8px 8px !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1) !important;
    padding: 30px !important;
    border-top: 2px solid var(--primary);
}

.mega-cat-card {
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none !important;
}

.mega-cat-card:hover {
    background: var(--cream);
    transform: translateY(-4px);
}

.mega-cat-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--light-bg);
}

.mega-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

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

.mega-cat-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
}

.mega-cat-title {
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--dark) !important;
    margin: 0 !important;
}

.mega-cat-card:hover .mega-cat-title { color: var(--primary) !important; }

.mega-dropdown-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.mega-all-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary) !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mega-all-link:hover { gap: 10px; }

/* ===== MOBİL MENÜ ===== */
.mobile-menu-bar {
    background: var(--dark) !important;
    padding: 30px 24px;
}

.mobile-menu-bar .uk-offcanvas-close { color: #fff; }

.mobile-logo { margin-bottom: 30px; }
.mobile-logo img { height: 50px; filter: brightness(0) invert(1); }
.mobile-logo span { font-family: var(--font-heading); font-size: 24px; color: #fff; }

.mobile-menu-bar .uk-nav-default > li > a {
    color: rgba(255,255,255,0.7) !important;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
}

.mobile-menu-bar .uk-nav-default > li > a:hover,
.mobile-menu-bar .uk-nav-default > li.uk-active > a {
    color: #fff !important;
}

.mobile-menu-bar .uk-nav-sub a {
    color: rgba(255,255,255,0.5) !important;
    font-size: 14px;
}

.mobile-menu-bar .uk-nav-sub a:hover { color: var(--primary) !important; }

.mobile-menu-bar .uk-nav-parent-icon > .uk-parent > a::after {
    color: rgba(255,255,255,0.3);
}

.mobile-menu-cta { margin-top: 30px; }

/* ===== HERO VIDEO ===== */
.hero-section { position: relative; overflow: hidden; }

.hero-video-wrap {
    position: relative;
    height: 85vh;
    min-height: 550px;
    max-height: 800px;
    overflow: hidden;
}

.hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.45) 100%);
    z-index: 1;
}

.hero-video-content {
    position: absolute; inset: 0; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
}

.hero-video-inner { max-width: 700px; padding: 0 20px; }

.hero-video-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px; font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 18px;
}

.hero-video-title {
    font-family: var(--font-heading);
    font-size: 58px; font-weight: 700;
    color: #fff; line-height: 1.1;
    margin-bottom: 20px;
}

.hero-video-title em { font-style: italic; color: var(--primary-light); }

.hero-video-desc {
    font-size: 17px; font-weight: 300;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px; line-height: 1.7;
}

.hero-video-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--primary); color: #fff !important;
    padding: 15px 40px; border: none;
    border-radius: var(--radius);
    font-weight: 600; font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(253,139,59,0.3);
    text-decoration: none !important;
}

.hero-video-btn:hover {
    background: #fff; color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
}

.hero-scroll-indicator {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%); z-index: 3;
    display: flex; flex-direction: column;
    align-items: center; gap: 6px;
    color: rgba(255,255,255,0.5);
    font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Slider fallback */
.hero-slider .swiper-slide { position: relative; height: 620px; overflow: hidden; }
.hero-slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%); }

.hero-content {
    position: relative; z-index: 2; height: 100%;
    display: flex; flex-direction: column; justify-content: center;
    max-width: 580px;
}

.hero-subtitle { font-size: 13px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--primary-light); margin-bottom: 20px; }
.hero-title { font-family: var(--font-heading); font-size: 54px; font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 28px; }

.hero-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--primary); color: #fff;
    padding: 14px 40px; border: none;
    border-radius: var(--radius);
    font-weight: 600; font-size: 14px;
    transition: var(--transition); width: fit-content;
}

.hero-btn:hover { background: #fff; color: var(--primary); }

.hero-default { min-height: 520px; display: flex; align-items: center; position: relative; }
.hero-default::before { content: ''; position: absolute; inset: 0; background: var(--dark); }
.hero-default .uk-container { position: relative; z-index: 2; }

.hero-pagination .swiper-pagination-bullet { width: 10px; height: 10px; background: rgba(255,255,255,0.3); opacity: 1; }
.hero-pagination .swiper-pagination-bullet-active { background: var(--primary); width: 30px; border-radius: 5px; }

/* ===== SECTION ===== */
.section { padding: 100px 0; }

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

.section-tag {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 4px;
    color: var(--primary); margin-bottom: 12px; display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px; font-weight: 600;
    color: var(--dark); margin-bottom: 14px;
}

.section-title em { font-style: italic; color: var(--primary); }

.section-desc {
    font-size: 16px; color: var(--text-light);
    max-width: 540px; margin: 0 auto; line-height: 1.8; font-weight: 300;
}

.section-line {
    width: 60px; height: 3px;
    background: var(--primary);
    margin: 20px auto 0;
    border-radius: 3px;
}

.bg-light { background: var(--cream) !important; }

/* ===== ÜRÜN KARTI ===== */
.product-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 100%;
    display: flex; flex-direction: column;
}

.product-card:hover { transform: translateY(-8px); box-shadow: 0 1.5rem 2rem rgba(15,38,102,0.14); }

.product-card-img { position: relative; overflow: hidden; aspect-ratio: 1/1; background: var(--light-bg); }

.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }

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

.product-badge {
    position: absolute; top: 16px; left: 16px;
    background: var(--primary); color: #fff;
    font-size: 11px; font-weight: 700;
    padding: 5px 16px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 0.5px;
}

.product-card-body { padding: 22px 20px; flex: 1; display: flex; flex-direction: column; text-align: center; }

.product-category { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); margin-bottom: 6px; }

.product-card-title { font-family: var(--font-heading); font-size: 22px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.product-card-title a { color: inherit; }
.product-card-title a:hover { color: var(--primary); }

.product-card-desc { font-size: 13px; color: var(--text-light); font-weight: 300; line-height: 1.6; }

.product-price { margin-top: auto; padding-top: 14px; display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.price-current { font-size: 20px; font-weight: 700; color: var(--primary); }
.price-old { font-size: 14px; color: var(--text-muted); text-decoration: line-through; }
.price-unit { font-size: 12px; font-weight: 500; color: var(--text-muted); margin-left: 3px; }
.price-note { font-size: 13px; font-weight: 500; color: var(--text-muted); background: var(--light-bg); padding: 3px 10px; border-radius: 50px; }

/* ===== KATEGORİ KARTI ===== */
.category-card {
    position: relative; overflow: hidden;
    border-radius: var(--radius-xl);
    aspect-ratio: 3/4; display: block;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.category-card:hover { transform: translateY(-6px); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.category-card:hover img { transform: scale(1.1); }

.category-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
    display: flex; align-items: flex-end; padding: 28px;
    transition: var(--transition);
}

.category-card:hover .category-card-overlay {
    background: linear-gradient(to top, rgba(253,139,59,0.8) 0%, rgba(253,139,59,0.15) 55%);
}

.category-card-content h4 { font-family: var(--font-heading); color: #fff; font-size: 26px; font-weight: 600; margin-bottom: 4px; }
.category-card-content span { color: rgba(255,255,255,0.85); font-size: 13px; }

/* ===== SAYFA BANNER ===== */
.page-banner { background: var(--cream); padding: 55px 0 50px; }

.page-banner h1 { font-family: var(--font-heading); font-size: 42px; font-weight: 600; color: var(--dark); margin-bottom: 12px; }

.breadcrumb-custom { display: flex; align-items: center; list-style: none; padding: 0; margin: 0; }
.breadcrumb-custom li { font-size: 13px; color: var(--text-muted); }
.breadcrumb-custom li a { color: var(--text-light); }
.breadcrumb-custom li a:hover { color: var(--primary); }
.breadcrumb-custom li + li::before { content: '/'; margin: 0 10px; color: var(--border); }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.6); }
.footer-top { padding: 80px 0 60px; }
.footer-brand { margin-bottom: 20px; }
.footer-logo { height: 60px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }

.footer-logo-text { font-family: var(--font-heading); font-size: 26px; font-weight: 600; color: #fff; }

.footer-about { font-size: 14px; line-height: 1.9; margin-bottom: 20px; color: rgba(255,255,255,0.45); font-weight: 300; }

.footer-social { display: flex; gap: 8px; }

.footer-social a {
    width: 38px; height: 38px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4);
    transition: var(--transition-fast);
}

.footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

.footer-title {
    font-family: var(--font-body);
    font-size: 16px; font-weight: 600;
    color: #fff; margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 14px; font-weight: 300; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.branch-item { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.branch-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.branch-item h6 { color: #fff; font-family: var(--font-body); font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.branch-item p { font-size: 13px; margin-bottom: 2px; color: rgba(255,255,255,0.4); font-weight: 300; }
.branch-item span[uk-icon] { color: var(--primary); margin-right: 4px; }
.branch-item a { color: rgba(255,255,255,0.45); }
.branch-item a:hover { color: var(--primary); }

.footer-contact { list-style: none; padding: 0; margin: 0 0 20px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 14px; align-items: flex-start; }
.footer-contact li span[uk-icon] { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,0.45); font-weight: 300; }
.footer-contact li a:hover { color: var(--primary); }

.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.copyright { font-size: 13px; margin: 0; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-bottom-links a:hover { color: var(--primary); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px;
    width: 56px; height: 56px; background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    z-index: 999; transition: var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.45); }

/* ===== SCROLL TOP ===== */
.scroll-top {
    position: fixed; bottom: 96px; right: 28px;
    width: 44px; height: 44px;
    border-radius: var(--radius);
    background: var(--dark); color: #fff !important;
    display: flex; align-items: center; justify-content: center;
    z-index: 998; opacity: 0; visibility: hidden;
    transform: translateY(16px); transition: var(--transition);
}

.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--primary); }

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background: var(--primary); color: #fff; border: none;
    padding: 14px 40px; border-radius: var(--radius);
    font-weight: 600; font-size: 14px;
    transition: var(--transition);
    display: inline-flex; align-items: center; gap: 10px;
}

.btn-primary-custom:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }

.btn-secondary-custom {
    background: var(--primary); color: #fff; border: none;
    padding: 14px 40px; border-radius: var(--radius);
    font-weight: 600; font-size: 14px;
    transition: var(--transition);
    display: inline-flex; align-items: center; gap: 10px;
}

.btn-secondary-custom:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }

.btn-outline-custom {
    background: transparent; color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 38px; border-radius: var(--radius);
    font-weight: 600; font-size: 14px;
    transition: var(--transition);
    display: inline-flex; align-items: center; gap: 10px;
}

.btn-outline-custom:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* ===== BRANCH CARD ===== */
.branch-card {
    background: #fff; border-radius: var(--radius-xl);
    padding: 40px 30px; text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition); height: 100%;
}

.branch-card:hover { transform: translateY(-8px); box-shadow: 0 1.5rem 2rem rgba(15,38,102,0.14); }

.branch-card-icon {
    width: 64px; height: 64px; background: var(--cream);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; color: var(--primary); font-size: 24px;
    transition: var(--transition);
}

.branch-card:hover .branch-card-icon { background: var(--primary); color: #fff; }

.branch-card h4 { font-family: var(--font-heading); font-size: 24px; font-weight: 600; margin-bottom: 10px; }
.branch-address { font-size: 14px; color: var(--text-light); margin-bottom: 14px; line-height: 1.7; font-weight: 300; }
.branch-phone { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: 15px; }
.branch-phone:hover { color: var(--primary-dark); }
.branch-hours { font-size: 13px; color: var(--text-muted); margin-top: 8px; font-weight: 300; }

/* ===== SIDEBAR ===== */
.sidebar-widget { background: #fff; border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow-card); margin-bottom: 24px; }
.widget-title { font-family: var(--font-heading); font-size: 24px; font-weight: 600; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--border-light); }

.category-list { list-style: none; padding: 0; margin: 0; }
.category-list li { margin-bottom: 4px; }
.category-list a { display: flex; justify-content: space-between; padding: 12px 16px; color: var(--text); font-size: 14px; border-radius: var(--radius); transition: var(--transition-fast); }
.category-list a:hover, .category-list a.active { background: var(--cream); color: var(--primary); font-weight: 600; }
.category-list a span { background: var(--border-light); padding: 2px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; color: var(--text-light); }
.category-list a.active span, .category-list a:hover span { background: var(--primary); color: #fff; }

/* ===== LOADER ===== */
.page-loader {
    position: fixed; inset: 0; background: #fff;
    display: flex; align-items: center; justify-content: center;
    z-index: 99999; transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-spinner { width: 44px; height: 44px; border: 2px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 959px) {
    .header-main .uk-navbar-left { flex: 1; justify-content: center; }
    .header-main .uk-navbar-right.uk-hidden\@m { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); }
    .hero-video-title { font-size: 40px; }
    .hero-video-wrap { height: 70vh; min-height: 400px; }
    .section { padding: 70px 0; }
    .section-title { font-size: 34px; }
    .footer-top { padding: 50px 0 30px; }
}

@media (max-width: 639px) {
    .hero-video-title { font-size: 32px; }
    .hero-video-wrap { height: 60vh; min-height: 350px; }
    .hero-video-desc { font-size: 15px; }
    .section-title { font-size: 28px; }
    .page-banner h1 { font-size: 30px; }
    .section { padding: 50px 0; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== BOOTSTRAP UYUMLULUK YARDIMCILARI ===== */
.text-muted { color: var(--text-muted) !important; }
.text-danger { color: var(--danger) !important; }
.img-fluid { max-width: 100%; height: auto; }
.rounded { border-radius: var(--radius); }
