/* Celya Butik - Warm Gold Elegant Theme - 2026 */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Celya Butik - Warm Gold Palette */
    --primary: #8B6F47;
    /* Warm Brown/Gold */
    --primary-light: #C9A96E;
    /* Light Gold */
    --primary-dark: #5C4A2E;
    /* Koyu Kahve */

    --accent: #D4B96A;
    /* Gold Accent */
    --accent-hover: #C9A96E;
    /* Hover Gold */
    --accent-text: #6B5635;
    /* Koyu Gold Yazı */

    --secondary: #F5EFE6;
    /* Pastel Bej */
    --secondary-hover: #E8DCCC;

    --danger: #e57373;
    --success: #81c784;
    --warning: #F4D03F;

    /* Backgrounds */
    --bg-body: #FDF9F3;
    /* Sıcak Krem Arka Plan */
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.95);
    --bg-input: #F5EFE6;

    /* Text */
    --text-main: #3D3229;
    /* Koyu Kahve Yazı */
    --text-muted: #8B7D6B;
    --text-light: #C9B99A;
    --text-white: #ffffff;

    /* UI Elements */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;

    --shadow-sm: 0 4px 10px rgba(139, 111, 71, 0.05);
    --shadow-md: 0 8px 20px rgba(139, 111, 71, 0.08);
    --shadow-lg: 0 15px 35px rgba(139, 111, 71, 0.12);

    --header-height: 85px;
    --mobile-nav-height: 70px;
}

/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Hide scrollbar broadly */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    display: none;
    width: 0;
    background: transparent;
}

html {
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    scrollbar-width: none;
    background-color: #F5EFE6;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    padding-top: var(--header-height);
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    position: relative;
    /* Mobile nav padding is handled in media queries */
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    outline: none;
}

/* UTILITIES */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--accent);
    color: var(--accent-text);
    box-shadow: 0 4px 15px rgba(212, 185, 106, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.4);
}

.btn-dark {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
}

.btn-dark:hover {
    background: var(--primary-light);
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.4);
}

/* HEADER & NAVBAR */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

@media (max-width: 768px) {
    .main-header {
        height: 65px;
    }

    body {
        padding-top: 65px;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* LOGO STYLING */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    text-decoration: none;
}

.logo-icon-box {
    width: 42px;
    height: 42px;
    background: var(--primary);
    /* Siyah değil Mavi */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-5deg);
    box-shadow: 0 4px 10px rgba(139, 111, 71, 0.3);
}

.logo-icon-box i {
    color: var(--accent);
    font-size: 1.25rem;
    transform: rotate(5deg);
    /* İkonu düzelt */
}

/* HERO SLIDER & PREMIUM EFFECTS */
.hero {
    position: relative;
    background: linear-gradient(135deg, #8B6F47 0%, #5C4A2E 100%);
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Shine Effect for Banner */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-25deg);
    animation: bannerShine 6s infinite;
    z-index: 5;
    pointer-events: none;
}

@keyframes bannerShine {
    0% {
        left: -150%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
    transform: scale(1.1);
    z-index: 1;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

/* Text Animations inside Slide */
.hero-slide h1 {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s 0.3s ease-out;
}

.hero-slide p {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s 0.5s ease-out;
}

.hero-slide .btn {
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.8s 0.7s ease-out;
}

.hero-slide.active h1,
.hero-slide.active p,
.hero-slide.active .btn {
    transform: translateY(0);
    opacity: 1;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-dot.active {
    background: #D4B96A;
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(212, 185, 106, 0.5);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.logo-text-top {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-text-bottom {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent-hover);
    /* Altın sarısı yerine koyu sarı */
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* HEADER ICONS (Mobile) */
.header-btn {
    background: transparent;
    font-size: 1.35rem;
    color: var(--text-main);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.header-btn:hover {
    background: var(--bg-input);
    color: var(--primary);
}

/* SIDEBAR FIXED (MODERN) */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(139, 111, 71, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1040;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: white;
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-body);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-header h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-menu {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.sidebar-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--text-main);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.2s;
}

.sidebar-menu a i {
    width: 32px;
    height: 32px;
    background: var(--bg-input);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.9rem;
    transition: 0.2s;
}

.sidebar-menu a:hover {
    background: #F5EFE6;
    color: var(--primary);
    transform: translateX(5px);
}

.sidebar-menu a:hover i {
    background: var(--primary);
    color: white;
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
}

/* CARDS & PRODUCTS */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    /* Daha kompakt kartlar */
    gap: 1.5rem;
    padding: 10px;
}

.modern-card {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid #edf2f7;
    transition: 0.3s;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #cbd5e0;
}

.card-image-box {
    width: 100%;
    aspect-ratio: 1/1;
    background: #ffffff;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s;
}

.modern-card:hover .card-image-box img {
    transform: scale(1.08);
}

.card-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #f1f5f8;
}

.card-cat {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 4px;
}

.card-title {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
}

.card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
}

.btn-add-modern {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-input);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.btn-add-modern:hover {
    background: var(--primary);
    color: white;
}

/* FOOTER */
.footer {
    background: var(--primary);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer h4 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
    color: var(--accent);
    transform: translateX(5px);
    display: inline-block;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.payment-methods {
    font-size: 1.5rem;
    gap: 1rem;
    display: flex;
}

/* MOBILE RESPONSIVE */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        height: var(--mobile-nav-height);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        z-index: 990;
        justify-content: space-around;
        align-items: center;
        padding-bottom: env(safe-area-inset-bottom);
    }

    body {
        padding-bottom: calc(var(--mobile-nav-height) + 20px);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-actions {
        display: none !important;
        /* Hide top nav actions on mobile */
    }

    .search-bar {
        display: none;
    }

    .mobile-nav-toggle {
        display: none;
        /* Hide hamburger menu as we have bottom nav */
    }

    .product-detail-layout {
        gap: 1.5rem;
    }

    .product-detail-layout h1 {
        font-size: 1.8rem !important;
    }

    /* Mobile Cart Styles */
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cart-main {
        width: 100%;
    }

    .cart-actions-wrapper {
        width: 100%;
        justify-content: space-between;
        margin-left: 0 !important;
        border-top: 1px solid #f1f5f9;
        padding-top: 1rem;
    }

    .cart-list {
        margin-right: 0;
    }
}

/* Cart Styles */
.cart-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
}

.cart-main {
    display: flex;
    align-items: center;
    flex: 1;
}

.cart-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid #e2e8f0;
}

.cart-info {
    margin-left: 1.5rem;
}

.cart-info h4 {
    margin-bottom: 0.25rem;
}

.cart-info .unit-price {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cart-actions-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 1rem;
}

.qty-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-total {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    min-width: 80px;
    text-align: right;
}

.cart-remove {
    color: var(--danger);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* CUSTOM CONFIRM MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-confirm {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: all 0.3s;
}

.modal-overlay.active .modal-confirm {
    transform: scale(1);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.btn-cancel {
    background: #f1f5f9;
    color: var(--text-main);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
}

.btn-delete {
    background: var(--danger);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(239, 68, 68, 0.3);
}

/* --- MOBILE BOTTOM NAV (APP STYLE) --- */
.mobile-bottom-nav {
    display: none;
    /* Desktopta gizli */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    height: 70px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid #f1f5f9;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    gap: 4px;
    width: 25%;
    height: 100%;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.3rem;
    margin-bottom: 2px;
    transition: transform 0.2s;
}

.mobile-bottom-nav .nav-item.active {
    color: var(--accent);
}

.mobile-bottom-nav .nav-item.active i {
    transform: translateY(-2px);
}

.mobile-bottom-nav .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: white;
    font-size: 0.65rem;
    padding: 2px 5px;
    border-radius: 10px;
    border: 2px solid white;
}

@media (max-width: 900px) {
    .mobile-bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 80px;
        /* İçerik altta kalmasın */
    }
}

/* --- ORDER TIMELINE --- */
.timeline-container {
    margin: 2rem 0;
    padding: 1rem 0;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 100%;
}

.steps::before {
    content: '';
    position: absolute;
    top: 25px;
    /* İkonların ortası */
    left: 0;
    right: 0;
    height: 4px;
    background: #e2e8f0;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: white;
    border: 4px solid #e2e8f0;
    border-radius: 50%;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 1.2rem;
    transition: 0.3s;
}

.step-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Aktif ve Tamamlanan Adımlar */
.step.active .step-icon {
    border-color: var(--accent);
    color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(212, 185, 106, 0.2);
}

.step.completed .step-icon {
    border-color: var(--success);
    background: var(--success);
    color: white;
}

/* Progress Bar Doluluğu */
.progress-line {
    position: absolute;
    top: 25px;
    left: 0;
    height: 4px;
    background: var(--success);
    z-index: 1;
    width: 0%;
    /* JS ile dinamik ayarlanır */
    transition: width 0.5s ease;
}

@media (max-width: 600px) {
    .step-text {
        font-size: 0.7rem;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 20px;
    }

    .steps::before,
    .progress-line {
        top: 20px;
    }
}

/* --- MODERN HERO SECTION --- */
.hero-item {
    padding: 6rem 1rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, #8B6F47 0%, #5C4A2E 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 185, 106, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    animation: pulseGlow 10s infinite alternate;
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.hero-title-modern {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.hero-desc-modern {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Buton Grubu */
.hero-btn-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Ana Buton (Alışverişe Başla) */
.btn-hero-primary {
    background: var(--accent);
    color: var(--accent-text);
    font-weight: 700;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 350px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 185, 106, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    text-decoration: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 185, 106, 0.6);
}

/* İkincil Butonlar (Yan Yana) */
.hero-secondary-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 350px;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-decoration: none;
    backdrop-filter: blur(5px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-hero-secondary i {
    font-size: 1.2rem;
    margin-bottom: 2px;
    color: var(--accent);
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.2rem;
        /* Mobilde başlığı küçült */
    }
}

/* SCROLL BUTONUNU TAMAMEN GİZLE */
.scroll-top,
#scrollTop,
button[id="scrollTop"],
button.scroll-top {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* SWEETALERT2 BİLDİRİMLERİ İÇİN GARANTİ */
div:where(.swal2-container) {
    z-index: 999999999 !important;
}

.swal2-popup {
    font-family: 'Inter', sans-serif !important;
}

/* ESKİ TOAST SİSTEMİNİ GİZLE */
.toast,
#toast,
div[id="toast"] {
    display: none !important;
    visibility: hidden !important;
}

/* --- KESİN GÜNCELLEMELER (EN SONDA OLMALI) --- */

/* --- MOBİL MENÜ DÜZELTMESİ (GARANTİ ÇÖZÜM) --- */

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: #8B6F47 !important;
        /* Warm Brown/Gold */
        border-top-left-radius: 25px;
        /* Üst köşeleri yuvarlat */
        border-top-right-radius: 25px;
        box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
        z-index: 99999;
        justify-content: space-around;
        align-items: center;
        padding-bottom: env(safe-area-inset-bottom);
        border-top: 2px solid var(--accent);
        /* İnce Baby Blue Çizgi Detayı */
    }

    .mobile-bottom-nav .nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.5) !important;
        text-decoration: none;
        background: transparent !important;
        height: 100%;
        transition: all 0.3s;
        transform: none !important;
        /* Önceki transformları sıfırla */
        border-radius: 0;
        padding: 0;
        box-shadow: none !important;
        border: none !important;
    }

    .mobile-bottom-nav .nav-item i {
        font-size: 1.5rem;
        margin-bottom: 4px;
        color: inherit !important;
    }

    .mobile-bottom-nav .nav-item span {
        font-size: 0.7rem;
        font-weight: 500;
        display: block !important;
        /* Yazıları geri getir */
    }

    /* Aktif Eleman */
    .mobile-bottom-nav .nav-item.active {
        color: var(--accent) !important;
        /* PEMBE YAZI */
        background: rgba(255, 255, 255, 0.05) !important;
        /* Hafif aydınlık arka plan */
    }

    .mobile-bottom-nav .nav-item.active i {
        color: var(--accent) !important;
        /* PEMBE İKON */
        transform: translateY(-3px);
        text-shadow: 0 0 15px rgba(212, 185, 106, 0.8);
        /* Güçlü parlama */
    }

    /* Body padding update */
    body {
        padding-bottom: 80px;
    }
}

/* 2. SLIDER OPTİMİZASYONU (MOBİL) */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 550px;
        /* Azıcık daha yüksek */
        padding-top: 0;
        align-items: flex-start;
        /* İçeriği yukarı hizala */
    }

    .hero-slide {
        padding-top: 90px;
        justify-content: flex-start;
    }

    .hero h1 {
        font-size: 2.2rem !important;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .btn.btn-primary {
        width: 70%;
        padding: 1rem;
    }

    .slider-dots {
        bottom: 30px;
    }
}

/* 1. SIDEBAR (MOBİL MENÜ) DÜZELTMESİ */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(139, 111, 71, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1040;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    /* Sol kenara sabitle */
    width: 80%;
    /* Genişlik %80 */
    max-width: 300px;
    height: 100vh;
    /* Tam yükseklik */
    background: white;
    z-index: 1050;
    transform: translateX(-100%);
    /* Varsayılan olarak gizle */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.sidebar.active {
    transform: translateX(0);
}

/* Göster */

/* --- MODERN BADGES (Campaigns) --- */
.badge-blue-sm,
.badge-cyan-sm {
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    letter-spacing: 0.3px !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) !important;
    color: white !important;
    display: inline-block;
    line-height: normal;
}

.badge-blue-sm {
    background: linear-gradient(135deg, #D4B96A, #C9A96E) !important;
}

.badge-cyan-sm {
    background: linear-gradient(135deg, #C9A96E, #8B6F47) !important;
}

/* PAYMENT & CARGO OPTIONS STYLING */
.payment-option,
.cargo-option {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 1rem !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    background: white !important;
    margin-bottom: 10px !important;
}

.payment-option:hover,
.cargo-option:hover {
    background: #F5EFE6 !important;
    border-color: #E8DCCC !important;
}

.payment-option input[type="radio"],
.cargo-option input[type="radio"] {
    accent-color: #8B6F47 !important;
    width: 20px !important;
    height: 20px !important;
}

/* Checked State Container */
.payment-option:has(input:checked),
.cargo-option:has(input:checked) {
    border-color: #8B6F47 !important;
    background: #F5EFE6 !important;
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.1) !important;
}

.cargo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.cargo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.cargo-card img {
    height: 30px;
    object-fit: contain;
}

.cargo-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #8B6F47;
}

.option-content {
    flex: 1;
}

/* Mobile Fixes for Payment */
@media (max-width: 768px) {
    .cargo-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 columns on mobile */
    }
}

/* FIXED CAMPAIGN BADGES */
.badge-pink-sm {
    background: linear-gradient(135deg, #D4B96A, #8B6F47) !important;
    color: white !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    letter-spacing: 0.3px !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) !important;
    display: inline-block;
    line-height: normal;
}

.badge-3al2ode {
    background: linear-gradient(135deg, #8B6F47, #5C4A2E) !important;
    color: white !important;
    font-size: 0.65rem !important;
    font-weight: 800 !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 8px rgba(8, 145, 178, 0.3) !important;
    display: inline-block;
    line-height: normal;
}

.badge-cyan-sm {
    background: linear-gradient(135deg, #C9A96E, #8B6F47) !important;
    color: white !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    letter-spacing: 0.3px !important;
    display: inline-block;
    line-height: normal;
}

.badge-narin-discount {
    background: white !important;
    color: #8B6F47 !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    padding: 2px 10px !important;
    border-radius: 4px !important;
    border: 1px solid #D4B96A !important;
    margin: 0 !important;
    display: block !important;
    width: fit-content;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}