/* Sayfa içi stillerden taşınanlar - overrides.css */

/* Mobilde hero resmi görünsün, hero yazıları gizlensin */
@media (max-width: 767px) {
    .hero-section { 
        position: relative !important;
        width: 100% !important;
        min-height: auto !important;
        overflow: visible !important;
        padding-top: 0;
        padding-bottom: 0;
    }
    .hero-section .hero-content {
        display: none !important;
    }
    .hero-section .hero-images {
        display: block !important;
        position: static !important;
        width: 100% !important;
        height: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: visible !important;
    }
    .hero-section .hero-people { 
        display: block !important;
        position: static !important;
        width: 100% !important;
        height: auto !important;
    }
    .hero-section .hero-people img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: cover;
        margin: 0 !important;
        padding: 0 !important;
    }
    .hero-section .hero-shape,
    .hero-section .hero-shape-2,
    .hero-section .overlay {
        display: none !important;
    }
    .hero-section .row > .col-xl-8 { display: none !important; }
    .hero-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
    }
    .header + .hero-section { margin-top: 0 !important; }
}

/* Footer ögeleri */
.footer-items .footer-item .icon i {
    font-size: 24px;
    color: var(--rr-color-theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}
.footer-items .footer-item .content .title {
    font-size: 16px;
    font-weight: 600;
    color: var(--rr-color-heading-primary);
    margin-bottom: 5px;
    line-height: 1.2;
}
.footer-items .footer-item .content span {
    font-size: 14px;
    color: var(--rr-color-text-body);
    line-height: 1.4;
    display: block;
}
@media (max-width: 1200px) {
    .footer-items { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .footer-items .footer-item { grid-template-columns: 30px 1fr; grid-gap: 12px; }
    .footer-items .footer-item .icon i { font-size: 20px; width: 30px; height: 30px; }
    .footer-items .footer-item .content .title { font-size: 15px; }
    .footer-items .footer-item .content span { font-size: 13px; }
}
@media (max-width: 768px) {
    .footer-items { grid-template-columns: 1fr; gap: 15px; padding: 20px; }
    .footer-items .footer-item { grid-template-columns: 25px 1fr; grid-gap: 10px; }
    .footer-items .footer-item .icon i { font-size: 18px; width: 25px; height: 25px; }
    .footer-items .footer-item .content .title { font-size: 14px; }
    .footer-items .footer-item .content span { font-size: 12px; }
}

/* Ürün Fotoğrafları Responsive */
.shop-item .shop-thumb { height: 350px; }
.shop-item .shop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 1200px) { .shop-item .shop-thumb { height: 300px; } }
@media (max-width: 992px) { .shop-item .shop-thumb { height: 280px; } }
@media (max-width: 768px) {
    .shop-item .shop-thumb {
        height: 400px; background-color: #f8f9fa; display: flex; align-items: center; justify-content: center;
    }
    .shop-item .shop-thumb img {
        object-fit: contain; object-position: center; width: 100%; height: 100%;
    }
}
@media (max-width: 576px) {
    .shop-item .shop-thumb { height: 350px; background-color: #f8f9fa; display: flex; align-items: center; justify-content: center; }
    .shop-item .shop-thumb img { object-fit: contain; object-position: center; width: 100%; height: 100%; }
}
@media (max-width: 480px) {
    .shop-item .shop-thumb { height: 300px; background-color: #f8f9fa; display: flex; align-items: center; justify-content: center; }
    .shop-item .shop-thumb img { object-fit: contain; object-position: center; width: 100%; height: 100%; }
}

/* Mobil header logo ve hamburger hizalama */
@media (max-width: 767px) {
    .header-logo.mobile-logo { display:block !important; text-align:left !important; margin-bottom:0 !important; }
    .header-logo.mobile-logo img { max-width: 140px !important; height:auto !important; width:auto !important; max-height: 50px !important; }
    .primary-header-inner { flex-direction: row !important; align-items: center !important; justify-content: space-between !important; padding: 12px 16px !important; }
    .header-right-wrap { width:auto !important; justify-content:flex-end !important; margin-top:0 !important; }
    .header-menu-wrap { width:auto !important; justify-content:flex-start !important; }
}
@media (max-width: 414px) {
    .header-logo.mobile-logo img { max-width: 120px !important; max-height: 45px !important; }
    .primary-header-inner { padding: 10px 14px !important; }
}
@media (max-width: 375px) {
    .header-logo.mobile-logo img { max-width: 110px !important; max-height: 40px !important; }
    .primary-header-inner { padding: 9px 12px !important; }
}
@media (max-width: 320px) {
    .header-logo.mobile-logo img { max-width: 100px !important; max-height: 35px !important; }
    .primary-header-inner { padding: 8px 10px !important; }
}



