/* ========================================
   MODERN AUTH BUTTONS - GOLD BLACK LUXURY
   ======================================== */

/* Modern Auth Buttons Container */
.modern-auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Base Modern Auth Button */
.modern-auth-btn {
    position: relative;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
}

.modern-auth-btn .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modern-auth-btn .btn-icon {
    width: 18px;
    height: 18px;
}

.modern-auth-btn .btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Login Button - Gold Black Style */
.modern-auth-btn-login {
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid var(--gold-dark);
    color: var(--gold-light);
}

.modern-auth-btn-login:hover {
    background: rgba(30, 30, 30, 0.95);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3),
                inset 0 0 15px rgba(255, 215, 0, 0.05);
    transform: translateY(-1px);
}

.modern-auth-btn-login:hover .btn-glow {
    opacity: 1;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

/* Register Button - Gold Gradient */
.modern-auth-btn-register {
    background: var(--gradient-gold);
    border: 2px solid var(--gold-dark);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
                inset 0 1px 3px rgba(255, 255, 255, 0.3);
    animation: goldPulseGlow 2s ease infinite;
}

.modern-auth-btn-register:hover {
    background: linear-gradient(135deg, #FFF4CC 0%, #FFD700 50%, #F4C430 100%);
    border-color: var(--gold-primary);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(255, 215, 0, 0.5),
                inset 0 1px 5px rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
    animation: none;
}

.modern-auth-btn-register:hover .btn-glow {
    opacity: 1;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

/* Gold Pulse Animation */
@keyframes goldPulseGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
                    0 0 15px rgba(255, 215, 0, 0.2),
                    inset 0 1px 3px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4),
                    0 0 25px rgba(255, 215, 0, 0.4),
                    inset 0 1px 3px rgba(255, 255, 255, 0.3);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .modern-auth-buttons {
        gap: 8px;
    }
    
    .modern-auth-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .modern-auth-btn .btn-icon {
        width: 16px;
        height: 16px;
    }
}

/* ========================================
   GÜNCEL ADRES BANNER - GOLD BLACK
   ======================================== */

.site-address-banner {
    background: linear-gradient(135deg, 
                rgba(20, 20, 20, 0.95) 0%, 
                rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--gold-dark);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
                inset 0 1px 3px rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.site-address-banner:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7),
                0 0 30px rgba(255, 215, 0, 0.2),
                inset 0 1px 3px rgba(255, 215, 0, 0.15);
}

.site-address-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3),
                inset 0 1px 3px rgba(255, 255, 255, 0.3);
}

.site-address-text {
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

.site-address-link {
    color: #000;
    background: var(--gradient-gold);
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--gold-dark);
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
                inset 0 1px 3px rgba(255, 255, 255, 0.3);
}

.site-address-link:hover {
    background: linear-gradient(135deg, #FFF4CC 0%, #FFD700 100%);
    border-color: var(--gold-primary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4),
                0 0 25px rgba(255, 215, 0, 0.5),
                inset 0 1px 5px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .site-address-banner {
        padding: 12px 16px;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .site-address-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .site-address-text,
    .site-address-link {
        font-size: 13px;
    }
    
    .site-address-link {
        padding: 6px 14px;
    }
}

/* ========================================
   FOOTER PAYMENT ICONS - SMOOTH HOVER (FIXED)
   ======================================== */

.payment-row img {
    height: 32px !important;
    width: auto !important;
    opacity: 0.7 !important;
    filter: brightness(0) saturate(100%) invert(76%) sepia(52%) saturate(544%) hue-rotate(3deg) brightness(102%) contrast(101%) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: scale(1) !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
}

.payment-row img:hover {
    opacity: 1 !important;
    filter: brightness(0) saturate(100%) invert(88%) sepia(96%) saturate(1676%) hue-rotate(359deg) brightness(104%) contrast(101%) !important;
    transform: scale(1.12) translateY(-3px) !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
}

/* ========================================
   PAYMENT ICONS - OVERRIDE GOLD-BLACK-LUXURY-THEME
   ======================================== */

/* Mor renk ve kare sorununu çöz - gold-black-luxury-theme.css'i override et */
.footer-payments .payment-row img {
    height: 32px !important;
    width: auto !important;
    opacity: 0.7 !important;
    filter: brightness(0) saturate(100%) invert(76%) sepia(52%) saturate(544%) hue-rotate(3deg) brightness(102%) contrast(101%) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: scale(1) translateY(0) !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.footer-payments .payment-row img:hover {
    opacity: 1 !important;
    filter: brightness(0) saturate(100%) invert(88%) sepia(96%) saturate(1676%) hue-rotate(359deg) brightness(104%) contrast(101%) !important;
    transform: scale(1.12) translateY(-3px) !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .footer-payments .payment-row img {
        height: 26px !important;
    }
}

@media (max-width: 480px) {
    .footer-payments .payment-row img {
        height: 22px !important;
    }
}
/* ========================================
   PROMO BANNERS - 2x2 GRID MOBILE
   ======================================== */

.promo-banners-section {
    padding: 20px 0;
    background: transparent;
}

.promo-banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.promo-banner-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 215, 0, 0.2);
}

.promo-banner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
                rgba(255, 215, 0, 0.05) 0%, 
                transparent 50%, 
                rgba(255, 215, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.promo-banner-item:hover::before {
    opacity: 1;
}

.promo-banner-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4),
                0 0 0 2px rgba(255, 215, 0, 0.4);
}

.promo-banner-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.promo-banner-image {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.3s ease;
}

.promo-banner-item:hover .promo-banner-image {
    filter: brightness(1.05);
}

/* Glow effect on hover - ince */
.promo-banner-item::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, 
                #FFD700, 
                #F4C430, 
                #FFD700, 
                #DAA520);
    background-size: 300% 300%;
    border-radius: 16px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    animation: bannerGlow 3s ease infinite;
}

.promo-banner-item:hover::after {
    opacity: 0.3;
}

@keyframes bannerGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .promo-banners-grid {
        gap: 12px;
    }
}

@media (max-width: 992px) {
    .promo-banners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .promo-banners-section {
        padding: 15px 0;
    }
}

@media (max-width: 768px) {
    .promo-banners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .promo-banner-item {
        border-radius: 14px;
    }
    
    .promo-banner-item::after {
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .promo-banners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .promo-banner-item {
        border-radius: 12px;
    }
    
    .promo-banner-item::after {
        border-radius: 12px;
    }
    
    .promo-banners-section {
        padding: 12px 0;
    }
}

/* Touch device optimization */
@media (hover: none) and (pointer: coarse) {
    .promo-banner-item:active {
        transform: scale(0.98);
    }
    
    .promo-banner-item:active::after {
        opacity: 0.5;
    }
}



/* ========================================
   MOBILE ONLY ADDRESS BANNER (Index Page)
   ======================================== */

/* Desktop'ta Slider Boyutunda Banner */
@media (min-width: 769px) {
    .mobile-only-address-banner {
        display: block;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%);
        border: 2px solid rgba(255, 215, 0, 0.25);
        border-radius: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 
                    0 0 40px rgba(255, 215, 0, 0.15);
        margin: 30px auto 20px;
        padding: 0;
        width: 100%;
    }
    
    .mobile-address-compact {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        padding: 18px 30px;
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .mobile-address-compact i {
        color: #FFD700;
        font-size: 24px;
        flex-shrink: 0;
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    }
    
    .mobile-address-compact span {
        color: rgba(255, 255, 255, 0.85);
        font-weight: 600;
        white-space: nowrap;
        font-size: 16px;
    }
    
    .mobile-address-compact a {
        color: #FFD700;
        text-decoration: none;
        font-weight: 700;
        padding: 8px 20px;
        background: rgba(255, 215, 0, 0.12);
        border-radius: 10px;
        border: 2px solid rgba(255, 215, 0, 0.35);
        transition: all 0.3s ease;
        white-space: nowrap;
        font-size: 15px;
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    }
    
    .mobile-address-compact a:hover {
        background: rgba(255, 215, 0, 0.2);
        border-color: rgba(255, 215, 0, 0.6);
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
    }
}

/* Desktop'ta da görünür */
.mobile-only-address-banner {
    display: block;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(15, 15, 15, 0.9) 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    margin: 0;
    padding: 0;
}

.mobile-address-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.mobile-address-compact i {
    color: #FFD700;
    font-size: 16px;
    flex-shrink: 0;
}

.mobile-address-compact span {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    white-space: nowrap;
}

.mobile-address-compact a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 700;
    padding: 5px 12px;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.25);
    transition: all 0.2s ease;
    white-space: nowrap;
    font-size: 13px;
}

.mobile-address-compact a:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: scale(1.02);
}

/* Sadece Mobile'de görünür - STATIK (sticky değil) */
@media (max-width: 768px) {
    .mobile-only-address-banner {
        display: block;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(15, 15, 15, 0.9) 100%);
        border-bottom: 1px solid rgba(255, 215, 0, 0.15);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        margin: 0;
        padding: 0;
    }
    
    .mobile-address-compact {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 6px 10px;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.85);
    }
    
    .mobile-address-compact i {
        color: #FFD700;
        font-size: 11px;
        flex-shrink: 0;
    }
    
    .mobile-address-compact span {
        color: rgba(255, 255, 255, 0.75);
        font-weight: 500;
        white-space: nowrap;
    }
    
    .mobile-address-compact a {
        color: #FFD700;
        text-decoration: none;
        font-weight: 700;
        padding: 3px 8px;
        background: rgba(255, 215, 0, 0.08);
        border-radius: 5px;
        border: 1px solid rgba(255, 215, 0, 0.25);
        transition: all 0.2s ease;
        white-space: nowrap;
        font-size: 9px;
    }
    
    .mobile-address-compact a:active {
        background: rgba(255, 215, 0, 0.15);
        transform: scale(0.97);
    }
}

@media (max-width: 480px) {
    .mobile-address-compact {
        font-size: 9px;
        padding: 5px 8px;
        gap: 4px;
    }
    
    .mobile-address-compact i {
        font-size: 10px;
    }
    
    .mobile-address-compact a {
        font-size: 8px;
        padding: 2px 6px;
    }
}

@media (max-width: 380px) {
    .mobile-address-compact {
        font-size: 8px;
        padding: 4px 6px;
        gap: 3px;
    }
    
    .mobile-address-compact span {
        font-size: 7px;
    }
    
    .mobile-address-compact a {
        font-size: 7px;
        padding: 2px 5px;
    }
}
