:root {
    --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
    --ana: #111;
    --vurgulu: #ff4d6d;
}

body {
    font-family: var(--font-sans);
    background-color: #f7f7f7;
    color: #111;
}

.top-banner {
    width: 100%;
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 1050;
}

.top-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.top-banner p {
    line-height: 1.4;
}

@media (max-width: 768px) {
    .top-banner {
        font-size: 0.75rem;
        padding: 8px 0;
    }
    
    .top-banner a {
        display: block;
        margin-top: 4px;
    }
}

.hero {
    background: linear-gradient(135deg, #ffe4ec 0%, #f7f7f7 100%);
    border-radius: 24px;
}

.urun-kart {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 24px;
}

.urun-kart:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.08);
}

.fiyat {
    font-size: 1.4rem;
    font-weight: 600;
}

.eski-fiyat {
    text-decoration: line-through;
    color: #999;
}

.favori-aktif {
    color: var(--vurgulu);
    border-color: var(--vurgulu) !important;
    background-color: rgba(255, 77, 109, 0.1) !important;
}

.favori-aktif:hover {
    background-color: rgba(255, 77, 109, 0.2) !important;
    border-color: var(--vurgulu) !important;
    color: var(--vurgulu) !important;
}

.badge-vitrin {
    background-color: #fff;
    color: var(--ana);
    border-radius: 999px;
    padding: 4px 14px;
    font-size: 0.8rem;
    font-weight: 600;
}

.rapor-kutu {
    border-radius: 20px;
    background: #111;
    color: #fff;
    padding: 20px;
}

.hikayeler-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hikayeler-scroll::-webkit-scrollbar {
    display: none;
}

.hikaye-item {
    transition: transform 0.3s ease;
    padding: 5px;
}

.hikaye-item:hover {
    transform: scale(1.08);
}

.hikaye-item:hover .hikaye-resim {
    border-color: #ff1744;
    box-shadow: 0 4px 12px rgba(255, 77, 109, 0.3);
}

.hikaye-avatar {
    display: inline-block;
}

.hikaye-resim {
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.urun-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

.urun-scroll::-webkit-scrollbar {
    height: 6px;
}

.urun-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.urun-scroll::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.urun-scroll::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

.z-2 {
    z-index: 2;
}

.urun-kart img {
    transition: transform 0.3s ease;
}

.urun-kart:hover img {
    transform: scale(1.05);
}

/* Üye Paneli Stilleri */
.hesabim-sidebar {
    position: sticky;
    top: 100px;
}

@media (max-width: 991px) {
    .hesabim-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
}

.dropdown-menu {
    padding: 0.5rem 0;
}

.dropdown-item {
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateX(4px);
}

/* Responsive Header */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    header form {
        width: 100%;
        margin: 0 !important;
        order: 3;
    }
    
    header .d-flex.gap-3 {
        width: 100%;
        justify-content: space-between;
        order: 2;
    }
    
    .dropdown-menu {
        width: 100%;
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: 1px solid #dee2e6;
        margin-top: 0.5rem;
    }
}

/* Form Stilleri */
.form-control-lg.rounded-pill {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.btn.rounded-pill {
    transition: all 0.3s ease;
}

.btn.rounded-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Card Stilleri */
.card.rounded-4 {
    border: none;
    transition: all 0.3s ease;
}

.card.rounded-4:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Table Responsive */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.875rem;
    }
    
    .table th,
    .table td {
        padding: 0.5rem;
    }
}

/* Modal Stilleri */
.modal-content.rounded-4 {
    border: none;
}

.modal-header.border-0 {
    padding-bottom: 0;
}

.modal-footer.border-0 {
    padding-top: 0;
}

/* Nav Link Stilleri */
.nav-link.rounded-pill {
    transition: all 0.2s ease;
}

.nav-link.rounded-pill:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

.nav-link.active.rounded-pill {
    font-weight: 600;
}

/* Badge Stilleri */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
}

/* Alert Stilleri */
.alert {
    border-radius: 1rem;
    border: none;
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Favori Button */
.favori-btn {
    transition: all 0.2s ease;
}

.favori-btn:hover {
    transform: scale(1.1);
}

/* Adres Card */
.card.border {
    transition: all 0.3s ease;
}

.card.border:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Stats Cards */
.bg-primary.bg-opacity-10,
.bg-success.bg-opacity-10,
.bg-warning.bg-opacity-10 {
    transition: all 0.3s ease;
}

.bg-primary.bg-opacity-10:hover,
.bg-success.bg-opacity-10:hover,
.bg-warning.bg-opacity-10:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Sayfa İçeriği */
.sayfa-icerik {
    line-height: 1.8;
}

.sayfa-icerik h2,
.sayfa-icerik h3,
.sayfa-icerik h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sayfa-icerik p {
    margin-bottom: 1rem;
}

.sayfa-icerik ul,
.sayfa-icerik ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.sayfa-icerik a {
    color: var(--vurgulu);
    text-decoration: none;
}

.sayfa-icerik a:hover {
    text-decoration: underline;
}

