/* HotelSatinalma Premium Style System */
:root {
    --primary-color: #0066ff;
    --primary-hover: #0052cc;
    --secondary-color: #001a33;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --bg-light: #f8fafc;
    --container-max: 1300px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Outfit', sans-serif; background: var(--white); color: var(--text-dark); line-height: 1.6; }
a { text-decoration: none; transition: 0.3s; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 20px; }

.main-header {
    height: 85px;
    background: #fff;
    border-bottom: none;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.main-header.header-scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: 0 4px 15px rgba(0,0,0,0.05); }

.mobile-menu-btn { display: none; background: transparent; border: none; color: inherit; font-size: 24px; cursor: pointer; padding: 0; margin-left: auto; }
.mobile-dropdown { display: none; }

.header-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 220px 1fr 400px;
    align-items: center;
    gap: 30px;
}

.logo { display: flex; align-items: center; gap: 10px; font-size: 24px; font-weight: 800; color: var(--secondary-color); white-space: nowrap; }
.logo-icon-wrapper {
    width: 45px;
    height: 45px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    border-radius: 6px;
    mix-blend-mode: multiply;
}
.logo-icon-wrapper img {
    height: 75px;
    margin-top: -12px;
}
.logo-text { display: flex; align-items: center; }
.logo-accent { color: var(--primary-color); }

/* Search Bar Center */
.header-search {
    background: #f1f5f9;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 5px 5px 5px 20px;
    border: 1px solid transparent;
}

.header-search:focus-within {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.1);
}

.search-input-wrap { display: flex; align-items: center; gap: 10px; flex: 1; }
.search-input-wrap i { color: var(--text-muted); font-size: 14px; }
.search-input-wrap input { border: none; background: transparent; outline: none; width: 100%; font-size: 14px; font-family: inherit; }

.search-divider { width: 1px; height: 25px; background: #cbd5e1; margin: 0 15px; }

.search-submit {
    width: 45px; height: 45px; background: var(--primary-color); color: #fff;
    border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* Header Right Buttons */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.lang-toggle {
    display: flex;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    margin-right: 15px;
}

.lang-toggle a { color: #94a3b8; }
.lang-toggle a.active { color: var(--primary-color); }

.btn-auth-buyer {
    padding: 10px 18px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 13px;
}

.btn-auth-supplier {
    padding: 10px 18px;
    border-radius: 50px;
    background: var(--secondary-color);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 4px 10px rgba(0, 26, 51, 0.2);
}

/* Typography Premium Polish */
h1, h2, h3 { 
    letter-spacing: -0.03em; 
    font-weight: 800;
}

/* Header Right Buttons - Premium Auth Group */
.auth-group {
    display: flex;
    gap: 10px;
}

.btn-login-outline, .btn-register-outline {
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s;
}

.btn-login-outline:hover, .btn-register-outline:hover {
    background: #f8fafc;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.v-line-small {
    width: 1px;
    height: 15px;
    background: #cbd5e1;
    margin: 0 5px;
}

.btn-sales-login {
    background: #ff6600;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.25);
}

.btn-sales-login:hover {
    background: #e65c00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.35);
    color: #fff;
}

.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-swiper {
    height: 650px; /* Slayt yüksekliği */
    width: 100%;
}

.swiper-slide.hero {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

/* Slider Navigasyon Butonları */
.swiper-button-next, .swiper-button-prev {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px);
    border-radius: 50%;
    color: #fff !important;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color) !important;
}

@media (max-width: 768px) {
    .hero-swiper { height: 450px; }
}

.hero-overlay { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: rgba(0,0,0,0.45); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 { 
    font-size: 52px; 
    font-weight: 800; 
    margin-bottom: 20px; 
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero p { 
    font-size: 20px; 
    opacity: 0.95; 
    font-weight: 400;
    margin-bottom: 35px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Resimdeki Hızlı Linkler Bölümü */
.hero-quick-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-quick-links a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

.hero-quick-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-quick-links i {
    font-size: 18px;
    opacity: 0.8;
}

/* Kategoriler Başlık Bölümü (Resimdeki Gibi) */
.section-header { 
    text-align: center; 
    margin-bottom: 80px; 
    padding-top: 20px;
}

.section-header h2 { 
    font-size: 44px; 
    font-weight: 800; 
    margin-bottom: 15px; 
    color: var(--secondary-color); 
    letter-spacing: -2px; /* Resimdeki gibi daha sıkı ve tok */
}

.section-header p { 
    font-size: 19px; 
    color: var(--text-muted); 
    font-weight: 400;
    opacity: 0.9;
}

.categories-section { 
    padding: 120px 0; 
    background-color: #fff; 
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.cat-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    cursor: pointer;
}

.cat-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.1); 
    border-color: var(--primary-color); 
}

.cat-icon {
    width: 75px; height: 75px; 
    border-radius: 20px; 
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; color: #fff;
    transition: transform 0.4s;
}

.cat-card:hover .cat-icon {
    transform: scale(1.1);
}

.cat-card h3 { 
    font-size: 15px; /* Resimdeki yazı boyutu */
    font-weight: 700; 
    margin-bottom: 5px;
    color: #333; /* Resimdeki yazı rengi */
}

.cat-card span { 
    font-size: 12px; 
    font-weight: 500;
    color: #94a3b8;
    display: block;
}

.cat-card:hover span {
    color: var(--primary-color);
}

/* VIP Dark Footer Styling */
.dark-footer {
    background: #111;
    color: #a0a0a0;
    padding: 60px 0 30px;
    margin-top: 100px;
    border-top: none;
}
.footer-badge-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}
.gold-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, #cba153, transparent);
    width: 30%;
    opacity: 0.5;
}
.badge-glow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #cba153;
    color: #cba153;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 0 15px rgba(203, 161, 83, 0.4), inset 0 0 10px rgba(203, 161, 83, 0.2);
    text-shadow: 0 0 5px rgba(203, 161, 83, 0.8);
}
.footer-text-center {
    text-align: center;
    font-size: 14px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
.footer-links-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}
.gold-text {
    color: #cba153;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}
.footer-links-center a {
    color: #a0a0a0;
    font-size: 15px;
    transition: color 0.3s;
}
.footer-links-center a:hover {
    color: #cba153;
}
.footer-social-center {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}
.footer-social-center a {
    width: 45px;
    height: 45px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cba153;
    font-size: 18px;
    transition: all 0.3s;
}
.footer-social-center a:hover {
    background: #cba153;
    color: #111;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(203, 161, 83, 0.2);
}
.footer-bottom-center {
    text-align: center;
    font-size: 13px;
    color: #666;
    border-top: 1px solid #222;
    padding-top: 25px;
    margin-bottom: 40px;
}
.footer-logo-bottom {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: #555;
    opacity: 0.5;
}
.footer-logo-bottom .logo-accent {
    color: #777;
}

/* Floating Action Buttons */
.fab-btn {
    position: fixed;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}
.fab-btn:hover { transform: scale(1.1); color: #fff; }
.left-fab { left: 20px; background: #ff6600; } /* SatisPro Orange */
.right-fab { right: 20px; background: #25D366; } /* WhatsApp Green */

@media (max-width: 1200px) {
    .header-inner { grid-template-columns: 200px 1fr auto; gap: 15px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 991px) {
    .main-header { height: auto; padding: 15px 0; }
    .header-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 15px; }
    
    .header-search { flex: 1 1 100%; order: 3; display: flex; justify-content: space-between; }
    .header-search form { display: flex; width: 100%; flex-wrap: wrap; }
    
    .header-right { order: 2; display: flex; align-items: center; gap: 10px; }
    
    .category-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .hero h1 { font-size: 40px; }
    
    .auth-group { display: flex; gap: 10px; }
    .btn-login-outline, .btn-register-outline { padding: 6px 12px; font-size: 13px; }
    
    .container-header { justify-content: space-between; flex-wrap: wrap; }
    .search-bar-header { flex: 1 1 100%; order: 3; margin-top: 15px; display: flex; }
}

@media (max-width: 768px) {
    /* Safe Mobile Sticky Header without arbitrary padding gaps */
    body { padding-top: 0; }
    .main-header { padding: 12px 15px; height: auto; position: sticky; top: 0; width: 100%; z-index: 1000; box-sizing: border-box; background: var(--primary-color) !important; box-shadow: 0 4px 10px rgba(0,0,0,0.1); border: none; }
    .header-inner { display: grid; grid-template-columns: auto 1fr auto; grid-template-areas: "left center right" "search search search"; gap: 12px; align-items: center; }
    
    .logo { grid-area: center; color: #fff; font-size: 22px; text-align: center; margin: 0 auto; display: block; }
    .logo-accent { color: #fff; }
    .logo .dot { display: none; }
    
    .mobile-menu-btn { display: block; grid-area: right; color: #fff; padding: 5px; }
    
    /* Mobile Dropdown styles */
    .mobile-dropdown {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: #fff;
        padding: 15px 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        gap: 12px;
        z-index: 1001;
        border-top: 1px solid #f1f5f9;
    }
    .mobile-dropdown.active { display: flex; }
    .mobile-dropdown a { display: block; text-align: center; padding: 12px; border-radius: 8px; font-weight: 700; color: #333; text-decoration: none; }
    .mobile-dropdown a.btn-login-outline { background: #f1f5f9; border: none; }
    .mobile-dropdown a.btn-register-outline { background: var(--primary-color); color: #fff; border: none; }
    .mobile-dropdown hr { border: none; border-top: 1px solid #e2e8f0; margin: 5px 0; }
    .mobile-dropdown a.primary { background: #fff; border: 2px solid var(--primary-color); color: var(--primary-color); }

    .header-right { grid-area: left; display: block; }
    .auth-group { display: none; }
    .v-line-small { display: none; }
    
    /* Open in App style button - Mobile */
    .premium-actions a.btn-sales-login {
        background: #ff6600 !important;
        border: none;
        color: #fff !important;
        padding: 7px 14px;
        border-radius: 6px;
        box-shadow: 0 4px 10px rgba(255,102,0,0.3);
        font-size: 12px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    /* Yelp Style unified search bar */
    .header-search { 
        grid-area: search;
        background: #fff; 
        padding: 5px 10px; 
        border-radius: 6px; 
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        display: flex;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
    .header-search form { display: flex; width: 100%; align-items: center; flex-direction: row; gap: 0; margin: 0; padding: 0; }
    
    .search-input-wrap { flex: 1; display: flex; align-items: center; background: transparent; padding: 0; border: none; border-radius: 0; }
    .search-input-wrap i.fa-search { color: #555; font-size: 15px; margin-right: 8px; margin-left: 5px; display: block; }
    .search-input-wrap input { font-size: 15px; color: #333; width: 100%; padding: 8px 0; }
    .search-input-wrap input::placeholder { color: #888; }
    
    .search-input-wrap:nth-child(3) { display: none; }
    .search-divider { display: none; }
    .search-submit { display: none; }
    
    /* YELP STYLE CATEGORY GRID - REVISED FOR 3 COLUMNS */
    .categories-section { padding: 25px 0 35px; border-bottom: 8px solid #f1f5f9; background: #fff; }
    .section-title { margin-bottom: 30px; }
    .section-title h2 { font-size: 18px; text-align: left; margin-bottom: 5px; }
    .section-title p { display: none; } 
    
    .category-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 20px 10px !important; }
    
    .cat-card {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .cat-card:hover { transform: none; box-shadow: none; border: none; }
    .cat-card::before { display: none; }
    
    .cat-icon {
        width: 55px !important;
        height: 55px !important;
        margin: 0 auto 10px auto !important;
        border-radius: 50% !important; /* Circular icons */
        font-size: 24px !important;
        box-shadow: none !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .cat-card h3 {
        font-size: 13px !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
        color: #333 !important;
        margin: 0 !important;
        width: 100%;
        text-align: center;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .cat-card span { display: none !important; }
    
    /* Other mobile resets */
    .hero { height: auto; padding: 60px 0; margin-top: 0; }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 16px; }
    
    .supplier-grid { grid-template-columns: 1fr; }
}

/* Results Page & Sidebar Layout */
.results-page { background: #f8fafc; padding: 40px 0; min-height: 80vh; }
.results-container { display: flex; gap: 30px; }

.filters-sidebar { width: 300px; flex-shrink: 0; }
.filter-group { background: #fff; border: 1px solid var(--border-color); border-radius: 16px; padding: 25px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.filter-group h3 { font-size: 16px; font-weight: 800; color: var(--secondary-color); margin-bottom: 20px; border-bottom: 1px solid #f1f5f9; padding-bottom: 10px; }

.filter-list { display: flex; flex-direction: column; gap: 12px; }
.filter-list li label { display: flex; align-items: center; justify-content: space-between; font-size: 14px; color: var(--text-dark); cursor: pointer; font-weight: 500; }
.filter-list li input[type="checkbox"] { width: 18px; height: 18px; border-radius: 4px; margin-right: 12px; accent-color: var(--primary-color); cursor: pointer; }
.filter-list li span { color: var(--text-muted); font-size: 12px; background: #f1f5f9; padding: 2px 8px; border-radius: 50px; }

.filter-select { width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 8px; font-family: inherit; font-size: 14px; outline: none; background: #f8fafc; }

/* Results Main Area */
.results-content { flex: 1; }
.results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; background: #fff; padding: 20px 25px; border-radius: 16px; border: 1px solid var(--border-color); }
.results-header h2 { font-size: 20px; font-weight: 700; color: var(--secondary-color); }

.results-sort { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.results-sort select { border: none; font-weight: 700; color: var(--primary-color); outline: none; cursor: pointer; background: transparent; }

/* Horizontal Result Cards */
.results-list { display: flex; flex-direction: column; gap: 20px; }
.result-card { background: #fff; border: 1px solid var(--border-color); border-radius: 20px; display: flex; overflow: hidden; transition: all 0.3s; position: relative; }
.result-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-color); }

.result-img { width: 260px; height: 200px; flex-shrink: 0; position: relative; }
.result-img img { width: 100%; height: 100%; object-fit: cover; }

.result-details { flex: 1; padding: 25px; display: flex; flex-direction: column; }
.result-title-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.result-title-row h3 a { font-size: 20px; font-weight: 800; color: var(--secondary-color); }
.result-title-row h3 a:hover { color: var(--primary-color); }

.badge-featured { background: #ffcc00; color: #000; font-size: 10px; font-weight: 800; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; letter-spacing: 0.5px; }

.result-rating { color: var(--accent-color); font-size: 14px; margin-bottom: 12px; display: flex; align-items: center; gap: 5px; }
.result-rating span { color: var(--text-muted); font-size: 13px; font-weight: 400; }

.result-meta { font-size: 13px; color: var(--primary-color); font-weight: 700; margin-bottom: 8px; }
.result-desc { color: var(--text-muted); font-size: 14px; line-height: 1.5; margin-bottom: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.result-tags { display: flex; gap: 10px; }
.result-tags span { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: #10b981; background: #ecfdf5; padding: 5px 12px; border-radius: 50px; }

.result-actions { width: 160px; padding: 25px; border-left: 1px solid #f1f5f9; display: flex; flex-direction: column; justify-content: center; gap: 10px; background: #fbfcfd; }
.btn-result-view { background: var(--primary-color); color: #fff; text-align: center; padding: 12px; border-radius: 10px; font-weight: 700; font-size: 14px; }
.btn-icon-link { background: #fff; border: 1px solid var(--border-color); color: var(--text-dark); text-align: center; padding: 10px; border-radius: 10px; font-size: 16px; }
.btn-icon-link:hover { background: #f8fafc; color: var(--primary-color); border-color: var(--primary-color); }

@media (max-width: 991px) {
    .results-container { flex-direction: column; }
    .filters-sidebar { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
    .filter-group { margin-bottom: 0; }
}

@media (max-width: 768px) {
    .filters-sidebar { grid-template-columns: 1fr; }
    .result-card { flex-direction: column; }
    .result-img { width: 100%; height: 180px; }
    .result-actions { width: 100%; border-left: none; border-top: 1px solid #f1f5f9; flex-direction: row; }
    .btn-result-view { flex: 1; }
}

/* Supplier Profile Page Header Ultra Premium */
.supplier-profile-page { background: #f8fafc; padding-bottom: 80px; }

.profile-header-wrap { background: #fff; border-bottom: 1px solid var(--border-color); margin-bottom: 30px; }
.profile-cover { height: 260px; position: relative; overflow: hidden; }
.profile-cover img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6) blur(2px); }

/* Supplier Profile Header - Precise Match */
.profile-main-info { 
    position: relative; 
    margin-top: -100px; /* Logoyu yukarı taşıyan ayar */
    background: #fff; 
    border-radius: 4px; /* Resimdeki gibi çok hafif kavis */
    padding: 40px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    border: 1px solid #f1f5f9;
    z-index: 10;
}

.profile-info-flex { 
    display: flex; 
    align-items: flex-start; 
    gap: 40px; 
}

.profile-logo-wrap { 
    width: 140px; height: 140px; 
    background: #fff; 
    border-radius: 0; /* Resimdeki gibi kare form */
    padding: 15px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); 
    flex-shrink: 0;
    margin-top: -80px; /* Resimdeki taşma efekti */
}

.profile-logo-wrap .logo-box { 
    width: 100%; height: 100%; 
    background: #0066ff; 
    color: #fff; 
    display: flex; align-items: center; justify-content: center; 
    font-size: 48px; font-weight: 700; 
}

.profile-title-area { flex: 1; }
.profile-title-area h2 { 
    font-size: 34px; 
    font-weight: 800; 
    color: #1a202c; 
    display: flex; align-items: center; gap: 12px; 
    margin-bottom: 8px;
}

.fa-circle-check { color: #007bff; font-size: 22px; }

.profile-rating-simple { 
    display: flex; align-items: center; gap: 6px; 
    color: #2d3748; font-size: 14px; font-weight: 700;
    margin-bottom: 20px;
}
.profile-rating-simple i { color: #2d3748; }
.profile-rating-simple span { color: #718096; font-weight: 400; }

.profile-badges-row { display: flex; gap: 8px; margin-top: 20px; }
.p-badge { 
    background: #edf2f7; 
    color: #718096; 
    font-size: 12px; font-weight: 600; 
    padding: 8px 18px; 
    border-radius: 50px; 
    display: flex; align-items: center; gap: 6px; 
}

.profile-actions-row { 
    display: flex; 
    gap: 12px; 
    margin-top: 100px; /* Butonları aşağı hizalamak için */
}

.btn-p-call { background: #001a33; color: #fff; padding: 12px 30px; border-radius: 4px; font-size: 15px; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.btn-p-whatsapp { background: #1ed760; color: #fff; padding: 12px 30px; border-radius: 4px; font-size: 15px; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.btn-p-quote { background: #0066ff; color: #fff; padding: 12px 30px; border-radius: 4px; font-size: 15px; font-weight: 800; }

/* Tabs Navigation */
.profile-tabs-wrap { border-bottom: 1px solid var(--border-color); background: #fff; }
.profile-tabs { display: flex; }
.p-tab { padding: 18px 25px; color: var(--text-muted); font-weight: 700; font-size: 15px; position: relative; cursor: pointer; transition: 0.3s; }
.p-tab:hover { color: var(--primary-color); }
.p-tab.active { color: var(--primary-color); }
.p-tab.active::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 3px; background: var(--primary-color); }

/* Content Layout (2-Column) */
.profile-grid-container { padding-top: 30px; }
.profile-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; }

.p-content-section { background: #fff; border: 1px solid var(--border-color); border-radius: 20px; padding: 40px; margin-bottom: 30px; box-shadow: var(--shadow-sm); }
.section-title-p { font-size: 20px; font-weight: 800; color: var(--secondary-color); margin-bottom: 25px; display: flex; align-items: center; gap: 15px; }
.section-title-p::before { content: ''; width: 4px; height: 25px; background: var(--primary-color); border-radius: 10px; }

.p-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 30px 0; }
.p-feature-box { background: #f8fafc; padding: 30px; border-radius: 16px; display: flex; gap: 20px; border: 1px solid #f1f5f9; }
.p-feature-icon { width: 50px; height: 50px; background: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary-color); font-size: 24px; box-shadow: var(--shadow-sm); flex-shrink: 0; }
.p-feature-text h4 { font-size: 16px; font-weight: 700; margin-bottom: 5px; color: var(--secondary-color); }
.p-feature-text p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.p-locations-list { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.p-location-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--text-dark); }
.p-location-item i { color: var(--primary-color); font-size: 12px; }

/* Sidebar Cards */
.sidebar-sticky-wrap { position: sticky; top: 110px; }
.sidebar-card { background: #fff; border: 1px solid var(--border-color); border-radius: 20px; padding: 30px; margin-bottom: 30px; box-shadow: var(--shadow-sm); }
.sidebar-card h4 { font-size: 18px; font-weight: 800; margin-bottom: 25px; color: var(--secondary-color); }

.work-hours { display: flex; flex-direction: column; gap: 15px; }
.hour-row { display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; color: var(--text-dark); }
.hour-row span:last-child { color: var(--text-muted); font-weight: 500; }
.hour-row.today { color: var(--primary-color); }
.hour-row.closed span:last-child { color: #ef4444; font-weight: 800; }

.p-map-box { background: #f1f5f9; height: 180px; border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; cursor: pointer; transition: 0.3s; margin-bottom: 20px; color: var(--text-muted); }
.p-map-box i { font-size: 32px; }
.p-map-box:hover { background: #e2e8f0; color: var(--primary-color); }
.p-address-text { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 15px; }
.btn-directions { color: var(--primary-color); font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 5px; }

@media (max-width: 1200px) {
    .profile-info-flex { flex-direction: column; align-items: flex-start; }
    .profile-actions-row { margin-top: 0; padding-top: 10px; width: 100%; }
    .profile-grid { grid-template-columns: 1fr; }
    .sidebar-sticky-wrap { position: static; }
}
@media (max-width: 768px) {
    .profile-header-wrap { padding-bottom: 20px; }
    .profile-logo-wrap { width: 100px; height: 100px; }
    .profile-logo-wrap .logo-box { font-size: 28px; }
    .profile-title-area h2 { font-size: 24px; }
    .profile-actions-row { flex-direction: column; }
    .p-features-grid, .p-locations-list { grid-template-columns: 1fr; }
}


