/* Footer İletişim Bilgileri */
.widget.contact-widget {
    display: flex;
    flex-direction: column;
}

/* Top info bar */
#info-bar {
    background: #1a1a1a;
    padding: 7px 0;
    border-bottom: none;
}
#top-bar {
    padding-top: 0 !important;
}
#info-bar .row {
    display: flex;
    align-items: center;
}
#info-bar .contact-info {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    min-width: 0;
    overflow: hidden;
}
#info-bar .contact-info span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-size: 12px;
    color: #bbb;
    margin-right: 20px;
}
#info-bar .contact-info .address-item {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 0;
}
#info-bar .contact-info i { color: #cb2922; margin-right: 5px; }
#info-bar .social-bar {
    display: inline-flex;
    gap: 4px;
    max-width: 160px;
    justify-content: flex-end;
}
#info-bar .social-bar a {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: inline-flex; align-items: center; justify-content: center;
    margin-left: 0;
    line-height: 1;
    transition: background 0.2s;
    flex-shrink: 0;
}
#info-bar .social-bar a:hover { background: #cb2922; }
#info-bar .social-bar i { font-size: 12px; color: #bbb; }
#info-bar .social-bar svg {
    color: #bbb;
    width: 12px;
    height: 12px;
    display: block;
    transform: translateY(0);
}

.header-main-row {
    display: flex;
    align-items: center;
    padding: 14px 0;
}

.header-logo-wrap {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-logo-wrap .site_logo {
    padding: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #aaa;
    line-height: 1.5;
}

.footer-contact-item i {
    color: #cb2922;
    font-size: 14px;
    margin-top: 2px;
    min-width: 14px;
}

.footer-contact-item span {
    flex: 1;
}

/* Footer Sosyal Medya İkonları */
.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social-icon.facebook {
    background: #1877f2;
}

.footer-social-icon.twitter {
    background: #000;
}

.footer-social-icon.linkedin {
    background: #0077b5;
}

.footer-social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer-social-icon i,
.footer-social-icon svg {
    color: #fff;
}

/* Search bar */
.wa-search-bar {
    position: relative;
    display: flex;
    width: 100%;
    background: #f7f7f7;
    border-radius: 8px;
    border: 1.5px solid #eee;
    overflow: hidden;
    transition: border-color 0.2s, background 0.2s;
}
.wa-search-bar:hover, .wa-search-bar:focus-within {
    border-color: #cb2922;
    background: #fff;
}
.wa-search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 58px 10px 14px;
    font-size: 13px;
    outline: none;
}
.wa-search-bar .default-btn {
    position: absolute;
    right: 0;
    top: 0;
    background: #cb2922;
    border: none;
    padding: 0 18px;
    height: 100%;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
}
.wa-search-bar .default-btn:hover { background: #a81f19; }

/* Action buttons */
.header-action-group {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
}

/* Header Social Bar */
.header-social-bar {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-social-link i {
    font-size: 16px;
    color: #666;
    transition: color 0.3s ease;
}

.header-social-link svg {
    color: #666;
    transition: color 0.3s ease;
}

.header-social-link:hover {
    background: #cb2922;
    transform: translateY(-2px);
}

.header-social-link:hover i,
.header-social-link:hover svg {
    color: #fff;
}

.header-action-btn {
    display: flex; flex-direction: column;
    align-items: center; gap: 3px;
    padding: 8px 12px; border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}
.header-action-btn:hover { background: #f7f7f7; }
.header-action-btn i { font-size: 20px; color: #333; }
.header-action-btn span { font-size: 10px; color: #666; }
.header-action-btn:hover i,
.header-action-btn:hover span {
    color: #cb2922 !important;
}
.header-action-btn.cart i { color: #cb2922; }

/* Header Hover Animasyonları */
header .navbar-nav > li > a {
    position: relative;
    padding: 16px 20px;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease;
}

#main-menu .navbar-default .navbar-nav > li > a:hover,
#main-menu .navbar-default .navbar-nav > li > a:focus,
#main-menu .navbar-default .navbar-nav > li.active > a,
#main-menu .navbar-default .navbar-nav > .open > a,
#main-menu .navbar-default .navbar-nav > .open > a:hover,
#main-menu .navbar-default .navbar-nav > .open > a:focus {
    color: #cb2922;
    border-bottom: 2px solid #cb2922;
    animation: none !important;
    animation-name: none !important;
}

.navbar-nav li.dropdown-menu,
.navbar-nav li > ul,
.navbar-nav .dropdown-menu {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Nav badge */
.nav-badge {
    background: #cb2922; color: #fff;
    font-size: 10px; padding: 1px 6px;
    border-radius: 10px; margin-left: 4px;
    vertical-align: middle;
}

/* Logo Hover */
header .navbar-brand {
    transition: transform 0.3s ease;
}

header .navbar-brand:hover {
    transform: scale(1.05);
}

/* Scroll Animasyonu için Header */
header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

/* Tema Renkleri - Genel Vurgular */
.theme-button,
.btn-primary,
.wa-button {
    background: #cb2922 !important;
    border-color: #cb2922 !important;
    transition: all 0.3s ease;
}

.theme-button:hover,
.btn-primary:hover,
.wa-button:hover {
    background: #a01f1a !important;
    border-color: #a01f1a !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(203, 41, 34, 0.3);
}

/* Link Hover Renkleri */
a:hover {
    color: #cb2922;
}


/* Pagination Active */
.pagination .active a {
    background: #cb2922 !important;
    border-color: #cb2922 !important;
}

/* Breadcrumb - Arka plan resmini kaldır */
.page-header {
    background-image: none !important;
    background-color: #f2f2f2 !important;
}

.page-header:before {
    display: none !important;
}

/* Float tabanlı tema: içerik bölümü footer/header altında kaybolmasın */
.page_single,
.brands-page-section,
.pages-section,
.wa-products-main {
    float: left;
    width: 100%;
    clear: both;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.page-header {
    clear: both;
}
