@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Apple SD Gothic Neo', sans-serif;
    background: #fff;
    color: #333;
}

/* Top Bar */
.top-bar {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.top-links a {
    color: #666;
    text-decoration: none;
    margin-left: 15px;
}

.top-links a:hover {
    color: #4285f4;
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: grid;
    grid-template-columns: auto 150px 1fr auto;
    gap: 20px;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: rgb(255, 128, 0);
    text-decoration: none;
}

.search-container {
    position: relative;
}

.search-box {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 2px solid #4285f4;
    border-radius: 5px;
    font-size: 14px;
}

.search-box:focus {
    outline: none;
    border-color: #1a73e8;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #4285f4;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 500;
}

.search-btn:hover {
    background: #1a73e8;
}

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    position: relative;
}

.header-btn-icon {
    font-size: 24px;
    margin-bottom: 3px;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #ff4444;
    color: white;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: bold;
}

/* Hamburger Menu Button */
.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover .hamburger-line {
    background: #4285f4;
}

/* Category Dropdown */
.category-dropdown {
    position: relative;
    display: inline-block;
}

.category-dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    background: white;
    width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    z-index: 1000;
    padding: 8px 0;
    max-height: 500px;
    overflow-y: auto;
}

.category-dropdown:hover .category-dropdown-menu {
    display: block;
}

.category-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent;
}

/* Category Item */
.category-dropdown-item {
    position: relative;
}

.category-main-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}

.category-dropdown-item:hover > .category-main-link {
    background: #f8f9fa;
}

.category-icon {
    font-size: 20px;
    width: 24px;
    flex-shrink: 0;
    text-align: center;
}

.category-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.category-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.category-count {
    font-size: 12px;
    color: #999;
}

.submenu-arrow {
    font-size: 16px;
    color: #999;
    transition: all 0.2s;
    flex-shrink: 0;
    margin-left: auto;
}

.category-dropdown-item.has-submenu:hover .submenu-arrow {
    color: #4285f4;
}

/* Submenu - JavaScript ile konumlandırılacak */
/* Submenu - JavaScript ile konumlandırılacak */
.category-submenu {
    display: none;
    position: fixed;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 1002;
    margin-left: -1px; /* Boşluğu kapat */
}

.submenu-item {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    white-space: nowrap;
    border-left: 3px solid transparent;
}

.submenu-item:hover {
    background: #f8f9fa;
    color: #4285f4;
    border-left-color: #4285f4;
    padding-left: 23px;
}

/* User Dropdown */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.2s;
}

.user-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: white;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    z-index: 1000;
    padding: 8px 0;
}

.user-dropdown:hover .user-dropdown-menu {
    display: block;
}

.user-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 12px;
    background: transparent;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

.logout-item {
    color: #dc3545;
    font-weight: 500;
}

.logout-item:hover {
    background: #fff5f5;
}

.dropdown-divider {
    margin: 8px 0;
    border: none;
    border-top: 1px solid #e9ecef;
}

.user-dropdown form {
    margin: 0;
}

/* Category Nav */
.category-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.category-nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
    justify-content: center;
    overflow-x: auto;
}

.category-nav-content::-webkit-scrollbar {
    display: none;
}

.category-item {
    padding: 15px 0;
    white-space: nowrap;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.category-item:hover {
    color: #4285f4;
    border-bottom-color: #4285f4;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #dd3535 0%, #bfad3b 100%);
    color: white;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.hero-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    width: fit-content;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-deals {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.deals-title {
    color: #ff4444;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.deal-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.deal-item:last-child {
    border-bottom: none;
}

.deal-icon {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.deal-info {
    flex: 1;
}

.deal-name {
    color: #333;
    font-size: 13px;
    margin-bottom: 3px;
}

.deal-discount {
    color: #ff4444;
    font-size: 12px;
    font-weight: bold;
}

/* Features Section */
.features-section {
    background: #ffffff;
    padding: 60px 20px;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon-box {
    width: 64px;
    height: 64px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-box {
    background: #4285f4;
    transform: translateY(-5px);
}

.feature-svg {
    width: 32px;
    height: 32px;
    color: #4285f4;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-svg {
    color: #ffffff;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.feature-description {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Section */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.section-subtitle {
    color: #999;
    font-size: 14px;
    margin-top: 5px;
}

.see-more {
    color: #4285f4;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.see-more:hover {
    text-decoration: underline;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: #333;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: #f8f8f8;
    overflow: hidden;
}

.product-image-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image-content .product-icon {
    font-size: 60px;
}

.product-badge-container {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
}

.product-badge {
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    color: white;
    width: fit-content;
}

.badge-new {
    background: #00c73c;
}

.badge-sale {
    background: #ff4444;
}

.badge-best {
    background: #ff9500;
}

.product-info {
    padding: 15px;
}

.product-brand {
    color: #999;
    font-size: 12px;
    margin-bottom: 5px;
}

.product-name {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    min-height: 40px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.rating-stars {
    color: #ffb800;
    font-size: 12px;
}

.rating-count {
    color: #999;
    font-size: 12px;
}

.product-price-container {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 5px;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.product-original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.product-discount-rate {
    color: #ff4444;
    font-size: 14px;
    font-weight: bold;
}

.product-shipping {
    font-size: 12px;
    color: #00c73c;
    font-weight: 500;
}

/* Banner Section */
.banner-section {
    background: #f8f8f8;
    padding: 40px 0;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.promo-banner {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 10px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.promo-banner-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.promo-banner-subtitle {
    font-size: 16px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* Scrollbar */
.category-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.category-dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.category-dropdown-menu::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.category-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Animations */
@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-dropdown:hover .category-dropdown-menu,
.user-dropdown:hover .user-dropdown-menu {
    animation: dropdownSlide 0.2s ease-out;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-deals {
        display: none;
    }
    
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-content {
        grid-template-columns: auto 100px 1fr;
        gap: 10px;
    }

    .header-actions {
        grid-column: 1 / -1;
        justify-content: space-around;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .banner-grid {
        grid-template-columns: 1fr;
    }

    .category-dropdown-menu {
        width: 250px;
    }
    
    .features-section {
        padding: 40px 20px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-item {
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }
    
    .feature-icon-box {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

















/* Notifications Dropdown */
.notifications-dropdown {
    position: relative;
    display: inline-block;
}

.notifications-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #ff4444;
    color: white;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
}

.notifications-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: white;
    width: 380px;
    max-height: 500px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 12px;
    z-index: 1000;
    overflow: hidden;
}

.notifications-dropdown-menu.show {
    display: block;
    animation: dropdownSlide 0.2s ease-out;
}

.notifications-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 12px;
    background: transparent;
}

/* Notifications Header */
.notifications-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.notifications-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.mark-all-read {
    color: #4285f4;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.mark-all-read:hover {
    color: #1a73e8;
    text-decoration: underline;
}

/* Notifications List */
.notifications-list {
    max-height: 400px;
    overflow-y: auto;
}

.notifications-list::-webkit-scrollbar {
    width: 6px;
}

.notifications-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.notifications-list::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 10px;
}

.notifications-list::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

/* No Notifications */
.no-notifications {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #999;
}

.no-notifications-icon {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.no-notifications p {
    font-size: 14px;
    margin: 0;
}

/* Notification Item */
.notification-item {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
    cursor: pointer;
    position: relative;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover {
    background: #f8f9fa;
}

.notification-item.unread {
    background: #f0f7ff;
}

.notification-item.unread::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #4285f4;
}

/* Notification Icon */
.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    background: #f0f0f0;
}

.notification-icon.ORDER {
    background: #e3f2fd;
}

.notification-icon.PROMOTION {
    background: #fff3e0;
}

.notification-icon.SYSTEM {
    background: #f3e5f5;
}

/* Notification Content */
.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
    line-height: 1.4;
}

.notification-message {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notification-time {
    font-size: 12px;
    color: #999;
}

/* Notification Close Button */
.notification-close {
    background: none;
    border: none;
    color: #999;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    flex-shrink: 0;
    line-height: 1;
}

.notification-close:hover {
    background: #f0f0f0;
    color: #666;
}

/* Notifications Footer */
.notifications-footer {
    padding: 12px 20px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
    text-align: center;
}

.view-all-notifications {
    color: #4285f4;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.view-all-notifications:hover {
    color: #1a73e8;
    text-decoration: underline;
}

/* Slide Out Animation */
@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .notifications-dropdown-menu {
        width: 320px;
        right: -20px;
    }
    
    .notification-item {
        padding: 12px 16px;
    }
    
    .notification-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .notifications-header h3 {
        font-size: 15px;
    }
    
    .mark-all-read {
        font-size: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .notifications-dropdown-menu {
        width: calc(100vw - 40px);
        right: -100px;
    }
}





/* ==================== REKLAM ALANLARI ==================== */

/* Hero Slider Reklamlar */
.ad-hero-slider {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.ad-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.ad-slider-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
}

.ad-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.ad-slider-item {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.ad-slider-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.ad-slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.ad-slider-content {
    color: white;
    margin-bottom: 20px;
}

.ad-slider-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.ad-slider-desc {
    font-size: 18px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.ad-sponsor-badge-slider {
    background: rgba(255, 255, 255, 0.95);
    color: #ff6b35;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: fit-content;
}

/* Slider Buttons */
.ad-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 10;
}

.ad-slider-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.ad-prev {
    left: 20px;
}

.ad-next {
    right: 20px;
}

/* Slider Dots */
.ad-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.ad-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.ad-slider-dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Banner Reklamlar */
.ad-banner-section {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.ad-banner-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ad-banner-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.ad-banner-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.ad-banner-link {
    display: block;
    position: relative;
}

.ad-banner-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ad-banner-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #ff6b35;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Sidebar Reklamlar */
.main-with-sidebar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.ad-sidebar {
    position: relative;
}

.ad-sidebar-sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ad-sidebar-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.ad-sidebar-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateX(-3px);
}

.ad-sidebar-link {
    display: block;
    text-decoration: none;
    color: #333;
    position: relative;
}

.ad-sidebar-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ad-sidebar-content {
    padding: 15px;
}

.ad-sidebar-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ad-sidebar-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ad-sponsor-badge-small {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: #ff6b35;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.main-content {
    flex: 1;
}

/* Grid Reklamlar */
.ad-grid-section {
    margin: 40px 0;
}

.ad-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.ad-grid-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.ad-grid-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.ad-grid-link {
    display: block;
    text-decoration: none;
    color: #333;
}

.ad-grid-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: #f8f8f8;
}

.ad-grid-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-sponsor-badge-grid {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: #ff6b35;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.ad-grid-content {
    padding: 15px;
}

.ad-grid-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.ad-grid-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Reklam Responsive */
@media (max-width: 1024px) {
    .main-with-sidebar {
        grid-template-columns: 1fr;
    }
    
    .ad-sidebar {
        display: none;
    }
    
    .ad-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .ad-slider-wrapper {
        height: 250px;
    }
    
    .ad-slider-title {
        font-size: 24px;
    }
    
    .ad-slider-desc {
        font-size: 14px;
    }
    
    .ad-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .ad-prev {
        left: 10px;
    }
    
    .ad-next {
        right: 10px;
    }
    
    .ad-banner-image {
        height: 150px;
    }
    
    .ad-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .ad-slider-wrapper {
        height: 200px;
    }
    
    .ad-grid-container {
        grid-template-columns: 1fr;
    }
}

/* ==================== SIDEBAR FIX ==================== */
.main-content .section {
    max-width: 100%;
    margin: 0;
    padding: 40px 0;
}

.main-content .section:first-child {
    padding-top: 0;
}













