/**
 * PRO V1 THEME - MASTER STYLESHEET
 * Inspired by edirnecicekci.com Pro V1 Design
 * Typography: Quicksand
 */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700;800&display=swap');

:root {
    --pro-primary: var(--theme-primary, #059669);
    --pro-primary-dark: var(--theme-dark, #047857);
    --pro-primary-light: var(--theme-light, #ecfdf5);
    --pro-primary-soft: var(--theme-soft, #d1fae5);
    --pro-border: var(--theme-border, #e2e8f0);
    --pro-text: #1e293b;
    --pro-text-muted: #64748b;
    --pro-bg: #ffffff;
    --pro-radius: 14px;
    --pro-radius-lg: 18px;
    --pro-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --pro-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --pro-shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    color: var(--pro-text) !important;
    background-color: #f8fafc !important;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   1. TOP BAR & DUYURU ŞERİDİ
   ========================================================================== */
.pro-top-bar {
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
    font-weight: 600;
    color: var(--pro-text-muted);
    padding: 8px 0;
}

.pro-top-bar a {
    color: var(--pro-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pro-top-bar a:hover {
    color: var(--pro-primary);
}

.pro-duyuru-bar {
    background: linear-gradient(135deg, var(--pro-primary-dark) 0%, var(--pro-primary) 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 0;
    text-align: center;
    letter-spacing: 0.2px;
}

.pro-duyuru-bar i {
    margin-right: 8px;
    color: #fef08a;
}

/* ==========================================================================
   2. HEADER MAIN (LOGO, ARAMA, BÖLGE, AKSİYONLAR)
   ========================================================================== */
.pro-header-main {
    background: #ffffff;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.pro-logo {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1.1;
}

.pro-logo img {
    max-height: 56px;
    max-width: 280px;
    width: auto;
    object-fit: contain;
    display: block;
}

.pro-logo-text {
    background: linear-gradient(135deg, var(--pro-primary-dark), var(--pro-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Typewriter Arama Kutusu */
.pro-search-box {
    position: relative;
    width: 100%;
}

.pro-search-box .input-group {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 9999px;
    padding: 3px 6px 3px 18px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
}

.pro-search-box .input-group:focus-within {
    border-color: var(--pro-primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(var(--theme-shadow-rgb, 5, 150, 105), 0.12);
}

.pro-search-input {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    padding: 8px 0 !important;
    flex: 1;
}

.pro-search-input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.pro-search-btn {
    width: 38px;
    height: 38px;
    border-radius: 50% !important;
    background: var(--pro-primary) !important;
    color: #ffffff !important;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.pro-search-btn:hover {
    transform: scale(1.05);
    background: var(--pro-primary-dark) !important;
}

/* Teslimat Bölge Seçici */
.pro-bolge-btn {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    width: 100%;
}

.pro-bolge-btn:hover {
    border-color: var(--pro-primary);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.pro-bolge-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--pro-primary-light);
    color: var(--pro-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.pro-bolge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.pro-bolge-label {
    font-size: 10.5px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pro-bolge-val {
    font-size: 13.5px;
    font-weight: 800;
    color: #0f172a;
}

/* Header Aksiyonları (Bildirim, Favori, Sepet, Üyelik) */
.pro-actions-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.pro-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #334155;
    text-decoration: none;
    position: relative;
    font-size: 11px;
    font-weight: 700;
    gap: 3px;
    transition: color 0.2s ease;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.pro-action-item:hover {
    color: var(--pro-primary);
}

.pro-action-icon {
    position: relative;
    font-size: 20px;
    line-height: 1;
}

.pro-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #ef4444;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(239, 68, 68, 0.4);
    border: 2px solid #ffffff;
}

.pro-badge.pulse {
    animation: proBadgePulse 1.8s infinite;
}

@keyframes proBadgePulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1.08); box-shadow: 0 0 0 7px rgba(239, 68, 68, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Bildirim Paneli Açılır Menü */
.pro-notif-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: -40px;
    width: 340px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
    border: 1px solid #e2e8f0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    animation: proMenuSlide 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.pro-notif-dropdown.show {
    display: block;
}

@keyframes proMenuSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.pro-notif-header {
    background: #f8fafc;
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pro-notif-header h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pro-notif-list {
    max-height: 320px;
    overflow-y: auto;
}

.pro-notif-item {
    padding: 14px 18px;
    border-bottom: 1px solid #f8fafc;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: background 0.15s ease;
    text-align: left;
}

.pro-notif-item:hover {
    background: #f8fafc;
}

.pro-notif-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--pro-primary-light);
    color: var(--pro-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* ==========================================================================
   3. KATEGORİ MENÜ NAVİGASYONU (MASAÜSTÜ)
   ========================================================================== */
.pro-main-nav {
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 2px solid #eef2f6;
    box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.04);
    padding: 7px 0;
    position: relative;
    z-index: 900;
}

.pro-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    flex-wrap: wrap;
}

.pro-nav-item {
    position: relative;
}

.pro-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    font-size: 14.5px;
    font-weight: 700;
    color: #334155;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 9999px;
    border: 1.5px solid transparent;
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.pro-nav-link i:first-child {
    font-size: 16px;
    color: var(--pro-primary);
    transition: transform 0.25s ease;
}

.pro-nav-arrow {
    font-size: 10px;
    opacity: 0.6;
    transition: transform 0.25s ease;
    margin-left: 2px;
}

.pro-nav-link:hover {
    color: var(--pro-primary);
    background: var(--pro-primary-light);
    border-color: rgba(22, 101, 52, 0.12);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.pro-nav-link:hover i:first-child {
    transform: scale(1.2) rotate(6deg);
}

.pro-nav-item:hover .pro-nav-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* Aktif Kategori / Sayfa Durumu */
.pro-nav-item.active .pro-nav-link {
    background: var(--pro-primary);
    color: #ffffff !important;
    border-color: var(--pro-primary);
    box-shadow: 0 4px 14px rgba(22, 101, 52, 0.28);
    transform: translateY(-1px);
    font-weight: 800;
}

.pro-nav-item.active .pro-nav-link i {
    color: #ffffff !important;
}

.pro-nav-item.active .pro-nav-arrow {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Dropdown Açılır Kategori Menüsü */
.pro-nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 230px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 45px -8px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    z-index: 1050;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    margin-top: 6px;
}

/* Görünmez hover köprüsü: Fare buton ile menü arasında geçerken menünün kaybolmasını kesinlikle engeller */
.pro-nav-dropdown::after {
    content: '';
    position: absolute;
    top: -16px;
    left: -10px;
    right: -10px;
    height: 20px;
    background: transparent;
}

.pro-nav-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-left: 1px solid #e2e8f0;
    border-top: 1px solid #e2e8f0;
    z-index: 1;
}

.pro-nav-item:hover .pro-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.pro-dropdown-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13.5px;
    font-weight: 700;
    color: #334155;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.18s ease;
    position: relative;
    z-index: 2;
}

.pro-dropdown-link i {
    font-size: 16px;
    transition: transform 0.18s ease;
}

.pro-dropdown-link:hover {
    background: var(--pro-primary-light);
    color: var(--pro-primary);
    padding-left: 19px;
}

.pro-dropdown-link:hover i {
    transform: translateX(3px);
}

@media (max-width: 1200px) {
    .pro-nav-link {
        padding: 8px 12px;
        font-size: 13.5px;
        gap: 6px;
    }
    .pro-nav-list {
        gap: 4px;
    }
}

/* ==========================================================================
   4. 3'LÜ PRO BANNER ŞERİDİ (BUKETLER, SEVGİLİYE ÖZEL, ORKİDELER)
   ========================================================================== */
.pro-banner-section {
    margin: 30px 0 45px 0;
}

.pro-banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .pro-banner-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.pro-banner-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    background: #3e2723;
}

.pro-banner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.pro-banner-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pro-banner-card:hover img {
    transform: scale(1.04);
}

/* ==========================================================================
   5. STORY KATEGORİ HALKALARI (DOĞAL STİL)
   ========================================================================== */
.pro-story-section {
    margin: 25px 0 40px 0;
    position: relative;
}

.pro-story-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
    overflow-x: auto;
    padding: 10px 4px 18px 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.pro-story-wrapper::-webkit-scrollbar {
    display: none;
}

.pro-story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
    width: 82px;
    transition: transform 0.2s ease;
}

.pro-story-item:hover {
    transform: translateY(-4px);
}

.pro-story-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--pro-primary), #38bdf8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.pro-story-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #ffffff;
    border: 2px solid #ffffff;
}

.pro-story-name {
    font-size: 11.5px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* ==========================================================================
   6. 5'Lİ PRO VİTRİN VE ÜRÜN KARTLARI (EDİRNE TARZI 3:4 ORAN)
   ========================================================================== */
.pro-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 16px;
}

.pro-section-title-wrap h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px 0;
    letter-spacing: -0.3px;
}

.pro-section-title-wrap p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* 5'li Grid */
.pro-product-grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 16px !important;
    margin-bottom: 45px !important;
}

@media (max-width: 1200px) {
    .pro-product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 15px !important;
    }
}

@media (max-width: 992px) {
    .pro-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }
}

@media (max-width: 768px) {
    .pro-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }
}

/* Pro Ürün Kartı */
.pro-card {
    background: #ffffff;
    border-radius: var(--pro-radius);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
}

.pro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: var(--pro-primary);
}

.pro-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding-top: 0;
    overflow: hidden;
    background: #ffffff;
}

.pro-card-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pro-card:hover .pro-card-img-wrap img {
    transform: scale(1.06);
}

.pro-badge-delivery {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ffffff;
    color: var(--pro-primary-dark);
    font-size: 10.5px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.pro-fav-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    color: #64748b;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.2s ease;
    z-index: 2;
}

.pro-fav-btn:hover {
    color: #ef4444;
    transform: scale(1.1);
}

.pro-card-body {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pro-card-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin: 0 0 8px 0;
    min-height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pro-card-title a {
    color: inherit;
    text-decoration: none;
}

.pro-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #f59e0b;
    margin-bottom: 8px;
}

.pro-card-rating span {
    color: #64748b;
    font-weight: 600;
}

.pro-price-wrap {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 10px;
}

.pro-cur-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--pro-primary);
}

.pro-old-price {
    font-size: 11.5px;
    color: #94a3b8;
    text-decoration: line-through;
}

.pro-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 4px;
}

.pro-btn-buy {
    background: var(--pro-primary);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 800;
    padding: 7px 6px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.pro-btn-buy:hover {
    background: var(--pro-primary-dark);
    color: #ffffff;
}

.pro-btn-view {
    background: #f1f5f9;
    color: #334155;
    font-size: 11.5px;
    font-weight: 700;
    padding: 7px 6px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.pro-btn-view:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* "Kendi Çiçeğini Tasarla" Özel Kartı */
.pro-card-custom-design {
    position: relative;
    border-radius: var(--pro-radius);
    overflow: hidden;
    display: block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background: #1e1b4b;
    height: 100%;
    min-height: 280px;
}

.pro-card-custom-design img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.pro-card-custom-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.pro-card-custom-btn {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    z-index: 2;
}

/* ==========================================================================
   7. GÜVEN & AVANTAJLAR ŞERİDİ
   ========================================================================== */
.pro-features-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    margin: 40px 0;
    box-shadow: var(--pro-shadow-sm);
}

.pro-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .pro-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

.pro-feature-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pro-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--pro-primary-light);
    color: var(--pro-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.pro-feature-text h6 {
    margin: 0 0 2px 0;
    font-size: 13.5px;
    font-weight: 800;
    color: #0f172a;
}

.pro-feature-text p {
    margin: 0;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* ==========================================================================
   8. FOOTER & MOBİL SABİT ALT BAR
   ========================================================================== */
.pro-footer {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 55px 0 30px 0;
    margin-top: 60px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.03);
    position: relative;
}

.pro-footer h5 {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
}

.pro-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pro-footer ul li {
    margin-bottom: 9px;
}

.pro-footer ul li a {
    color: #64748b;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    transition: color 0.15s ease;
}

.pro-footer ul li a:hover {
    color: var(--pro-primary);
}

/* Hafif Gölgeli & Seçilen Renk Paletine Uyumlu Alt İmza Barı */
.pro-footer-bottom {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), var(--pro-primary-light));
    border: 1.5px solid rgba(0, 0, 0, 0.05);
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    padding: 14px 24px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
    color: #475569;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pro-footer-bottom:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.pro-sitemap-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #ffffff;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    padding: 6px 16px;
    border-radius: 9999px;
    color: #334155;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.pro-sitemap-badge:hover {
    background: #ffffff;
    border-color: var(--pro-primary);
    color: var(--pro-primary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.pro-sitemap-badge .fa-heart {
    animation: proHeartPulse 1.5s infinite;
}

@keyframes proHeartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

.pro-footer-credit {
    display: inline-flex;
    align-items: center;
}

.pro-footer-credit a {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    padding: 5px 14px;
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.pro-footer-credit a:hover {
    border-color: var(--pro-primary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.pro-footer-credit img {
    height: 20px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .pro-footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 16px;
        gap: 14px;
    }
}

/* Mobil Alt Sabit Navigasyon (Bottom Navigation Bar) */
.pro-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 1040;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.06);
}

@media (min-width: 992px) {
    .pro-bottom-nav {
        display: none !important;
    }
}

.pro-bnav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #64748b;
    font-size: 10.5px;
    font-weight: 700;
    gap: 3px;
    flex: 1;
    position: relative;
}

.pro-bnav-item i {
    font-size: 18px;
}

.pro-bnav-item.active, .pro-bnav-item:hover {
    color: var(--pro-primary);
}
