/* ============================================
   POL&MAT AUTO DESIGN - ANA STİL DOSYASI
   Renk Paleti: Kirli Beyaz + Altın + Koyu Füme
   ============================================ */

:root {
    --bg-body: #FAFAFA;
    --bg-white: #ffffff;
    --bg-cream: #F5F4F0;
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --bg-card: #ffffff;
    --bg-card-hover: #f9f9f9;
    --text-dark: #1A1A1A;
    --text-white: #ffffff;
    --text-gray: #555555;
    --text-light-gray: #888888;
    --gold: #D4AF37;
    --gold-hover: #C5A028;
    --gold-light: #F4E4B8;
    --gold-dark: #B8942A;
    --wa-green: #25d366;
    --border-color: #E8E8E8;
    --border-light: #E0E0E0;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.87, 0, 0.13, 1);
    
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.35);
}

/* ============ RESET ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    cursor: pointer;
    font-family: var(--font-primary);
    border: none;
    outline: none;
}

input, select, textarea {
    font-family: var(--font-primary);
    outline: none;
}

ul {
    list-style: none;
}

/* ============ LOADER ============ */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: transform 0.8s cubic-bezier(0.87, 0, 0.13, 1);
}

#page-loader.hidden {
    transform: translateY(-100%);
}

.loader-logo {
    margin-bottom: 30px;
}

.loader-logo-img {
    width: auto;
    height: 120px;
    object-fit: contain;
    animation: loaderLogoPulse 1.5s infinite ease-in-out;
}

@keyframes loaderLogoPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.85; }
}

.loader-bar {
    width: 250px;
    height: 3px;
    background: #333333;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loader-bar-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--gold);
    box-shadow: 0 0 15px var(--gold);
    animation: loaderAnimation 1.2s infinite ease-in-out;
}

@keyframes loaderAnimation {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 3%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1000;
    transition: var(--transition-normal);
    background: var(--bg-dark);
    border-bottom: 2px solid var(--gold);
}

.navbar.scrolled {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 3%;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    border-bottom: 3px solid var(--gold);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition-fast);
    margin-right: auto;
}

.navbar-logo:hover {
    opacity: 0.85;
}

.logo-img {
    width: auto;
    height: 60px;
    object-fit: contain;
    transition: var(--transition-normal);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 4px;
}

.logo-brand {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #fff;
}

.logo-brand span {
    color: var(--gold);
}

.logo-slogan {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
}

.navbar.scrolled .logo-img {
    height: 50px;
}

.navbar-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0 auto;
}

.navbar-links a {
    color: #cccccc;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition-fast);
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-fast);
}

.navbar-links a:hover,
.navbar-links a.active {
    color: var(--gold);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.navbar-design-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--gold);
    padding: 10px 18px;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.navbar-design-btn:hover {
    background: var(--gold-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* Navbar Sepet Butonu */
.navbar-cart-btn {
    position: relative;
    background: transparent;
    color: #fff;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
    cursor: pointer;
}

.navbar-cart-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    transform: scale(1.1);
}

.navbar-cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--gold);
    color: var(--text-dark);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============ KULLANICI BUTONLARI ============ */
.navbar-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 18px;
    border-radius: 8px;
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.navbar-login-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.navbar-register-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    border: 2px solid var(--gold);
    color: var(--text-dark);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.navbar-register-btn:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.user-name {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.user-name i {
    color: var(--gold);
    margin-right: 5px;
}

.user-logout {
    color: #ff4444;
    font-size: 14px;
    transition: var(--transition-fast);
}

.user-logout:hover {
    transform: scale(1.2);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--bg-dark);
    padding: 80px 5% 40px;
    border-top: 3px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1350px;
    margin: 0 auto;
}

.footer-logo {
    width: auto;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-col p {
    color: #bbbbbb;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col > a {
    color: #bbbbbb;
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
}

.footer-col > a:hover {
    color: var(--gold);
    transform: translateX(3px);
}

.footer-col i {
    width: 16px;
    text-align: center;
    font-size: 12px;
}

/* ============ ÖDEME LOGOLARI ============ */
.footer-payment-logos {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-payment-logos img {
    height: 24px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    opacity: 0.75;
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.footer-payment-logos img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .footer-payment-logos {
        gap: 8px;
    }
    
    .footer-payment-logos img {
        height: 20px;
        max-width: 48px;
    }
}

/* ============ SOSYAL MEDYA İKONLARI ============ */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    margin: 0;
    background: #000000;
    cursor: pointer;
}

.footer-social .social-instagram {
    color: #E1306C !important;
}

.footer-social .social-instagram:hover {
    background: #E1306C !important;
    border-color: #E1306C !important;
    color: #000000 !important;
    transform: translateY(-3px);
}

.footer-social .social-whatsapp {
    color: #25d366 !important;
}

.footer-social .social-whatsapp:hover {
    background: #25d366 !important;
    border-color: #25d366 !important;
    color: #000000 !important;
    transform: translateY(-3px);
}

.footer-social .social-email {
    color: #1d4ed8 !important;
}

.footer-social .social-email:hover {
    background: #1d4ed8 !important;
    border-color: #1d4ed8 !important;
    color: #000000 !important;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 12px;
    color: #777;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* ============ ÇEREZ BANNER ============ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: #fff;
    padding: 15px 20px;
    z-index: 9999;
    border-top: 3px solid var(--gold);
    display: none;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.3);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.cookie-banner-content p {
    font-size: 13px;
    margin: 0;
    flex: 1;
    color: #e0e0e0;
}

.cookie-banner-content a {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner-content a:hover {
    color: #FFD700;
}

.cookie-banner-content button {
    background: var(--gold);
    color: var(--text-dark);
    border: none;
    padding: 10px 30px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    font-size: 13px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cookie-banner-content button:hover {
    background: var(--gold-hover);
    color: #fff;
    transform: scale(1.05);
}

/* ============ ÇEREZ AYARLARI POPUP ============ */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.cookie-settings-panel {
    position: relative;
    z-index: 100000;
    background: var(--bg-white);
    border-radius: 20px;
    max-width: 560px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease;
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 2px solid var(--gold);
}

.cookie-settings-header h3 {
    font-size: 18px;
    font-weight: 900;
    color: var(--text-dark);
}

.cookie-settings-header h3 i {
    color: var(--gold);
    margin-right: 10px;
}

.cookie-settings-close {
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-settings-close:hover {
    color: #ff4444;
    transform: rotate(90deg);
}

.cookie-settings-body {
    padding: 24px;
}

.cookie-settings-body > p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-option {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.cookie-option-header span {
    font-size: 14px;
    color: var(--text-dark);
}

.cookie-badge {
    font-size: 10px;
    font-weight: 800;
    color: #15a015;
    background: #e8f5e9;
    padding: 4px 12px;
    border-radius: 20px;
}

.cookie-option p {
    font-size: 12px;
    color: var(--text-gray);
    margin: 0;
}

/* Cookie Toggle Switch */
.cookie-switch {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.cookie-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-switch input:checked + .cookie-slider {
    background: var(--gold);
}

.cookie-switch input:checked + .cookie-slider::before {
    transform: translateX(20px);
}

.cookie-settings-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 24px 24px;
    border-top: 1px solid var(--border-color);
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cookie-btn-secondary {
    background: var(--bg-body);
    color: var(--text-gray);
}

.cookie-btn-secondary:hover {
    background: var(--border-color);
}

.cookie-btn-primary {
    background: var(--gold);
    color: var(--text-dark);
}

.cookie-btn-primary:hover {
    background: var(--gold-hover);
    color: #fff;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .cookie-settings-panel {
        width: 95%;
        border-radius: 14px;
    }
    
    .cookie-settings-header {
        padding: 16px 18px;
    }
    
    .cookie-settings-header h3 {
        font-size: 16px;
    }
    
    .cookie-settings-body {
        padding: 18px;
    }
    
    .cookie-settings-footer {
        padding: 12px 18px 18px;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

/* ============ ORTAK BUTONLAR ============ */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--text-dark);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: var(--gold-hover);
    color: #fff;
}

/* ============ SECTION ORTAK ============ */
.section-padding {
    padding: 80px 5%;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============ ANİMASYONLAR ============ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-hover);
}

/* ============ SEPET MODALİ ============ */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
}

.cart-modal.open {
    display: block;
}

.cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.cart-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90%;
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    z-index: 10000;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid var(--gold);
}

.cart-header h3 {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-dark);
}

.cart-close {
    background: transparent;
    font-size: 20px;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition-fast);
}

.cart-close:hover {
    color: #ff4444;
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 10px;
    background: #fafafa;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1A1A1A;
}

.cart-item-price {
    font-size: 15px;
    font-weight: 900;
    color: #B8942A;
    margin-bottom: 8px;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    color: #1A1A1A;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: #D4AF37;
    color: #fff;
    border-color: #D4AF37;
}

.qty-input {
    width: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 5px;
    background: #ffffff;
    color: #1A1A1A;
}

.remove-item {
    background: transparent;
    color: #ff4444;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.remove-item:hover {
    transform: scale(1.2);
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    display: none;
}

.cart-empty.show {
    display: block;
}

.cart-empty i {
    font-size: 50px;
    color: #ddd;
    margin-bottom: 15px;
}

.cart-empty p {
    color: #888;
    font-size: 14px;
}

.cart-footer {
    padding: 20px;
    border-top: 2px solid var(--gold);
    display: none;
}

.cart-footer.show {
    display: block;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1A1A1A;
}

#cart-total-price {
    font-size: 24px;
    font-weight: 900;
    color: #B8942A;
}

.checkout-btn {
    background: #D4AF37;
    color: #1A1A1A;
    padding: 15px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: #C5A028;
    color: #fff;
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Sepet Düzenleme Butonu */
.cart-item-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.edit-item {
    background: transparent;
    color: var(--gold);
    font-size: 14px;
    cursor: pointer;
    border: none;
    padding: 5px;
    transition: all 0.3s ease;
}

.edit-item:hover {
    transform: scale(1.2);
    color: var(--gold-hover);
}

/* PC'de mobil auth linklerini gizle */
.mobile-auth {
    display: none !important;
}

/* ============ ÇEREZ BANNER RESPONSIVE ============ */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 12px 15px;
    }
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .cookie-banner-content p {
        font-size: 12px;
    }
    .cookie-banner-content button {
        width: 100%;
        padding: 12px;
        font-size: 12px;
    }
}

/* ============ MOBİL RESPONSIVE ============ */
@media (max-width: 968px) {
    .navbar {
        padding: 8px 3%;
        justify-content: space-between;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .logo-brand {
        font-size: 15px;
    }
    
    .logo-slogan {
        font-size: 7px;
    }
    
    .navbar-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition-slow);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        margin: 0;
    }
    
    .navbar-links.active {
        right: 0;
    }
    
    .navbar-links a {
        font-size: 16px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .navbar-design-btn {
        display: none;
    }
    
    .navbar-login-btn,
    .navbar-register-btn {
        display: none;
    }
    
    .user-menu {
        display: none;
    }
    
    .section-padding {
        padding: 60px 5%;
    }
    
    .cart-panel {
        width: 100%;
    }
    
    .footer {
        padding: 60px 5% 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        height: 60px;
    }
    
    .footer-social .social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .mobile-auth {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding-top: 20px;
        border-top: 1px solid #333;
        width: 80%;
    }
    
    .mobile-user-name {
        color: #fff;
        font-size: 14px;
        font-weight: 700;
    }
    
    .mobile-user-name i {
        color: var(--gold);
    }
    
    .mobile-logout {
        color: #ff4444;
        font-size: 14px;
        font-weight: 700;
    }
    
    .mobile-login-btn {
        color: #fff !important;
        font-size: 14px !important;
        font-weight: 700;
        padding: 10px 30px;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 8px;
        text-align: center;
        width: 100%;
    }
    
    .mobile-register-btn {
        color: var(--text-dark) !important;
        font-size: 14px !important;
        font-weight: 900;
        padding: 10px 30px;
        background: var(--gold);
        border-radius: 8px;
        text-align: center;
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-payment-logos {
        justify-content: center;
    }
    
    .footer-payment-logos img {
        height: 22px;
    }
}

@media (max-width: 480px) {
    .footer-payment-logos img {
        height: 18px;
    }
}

