/* HırdavatPro Modern Theme - 2026 */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Brand Colors */
    --primary: #0f172a;
    /* Dark Navy */
    --primary-light: #1e293b;
    --accent: #f59e0b;
    /* Amber/Gold - Hardware feel */
    --accent-hover: #d97706;
    --danger: #ef4444;
    --success: #10b981;

    /* Backgrounds */
    --bg-body: #f8fafc;
    --bg-card: #ffffff;
    --bg-input: #f1f5f9;

    /* Text */
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;

    /* UI Elements */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --header-height: 80px;
}

/* Reset & Basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    padding-top: var(--header-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

/* REUSABLE UTILITIES */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-dark {
    background: var(--primary);
    color: white;
}

.btn-dark:hover {
    background: var(--primary-light);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* HEADER & NAVBAR */
.main-header {
    background: var(--bg-card);
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-logo i {
    color: var(--accent);
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
    position: relative;
}

.search-bar form {
    position: relative;
    display: flex;
}

.search-bar input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background: var(--bg-input);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.search-bar i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-main);
    gap: 2px;
    position: relative;
}

.nav-item i {
    font-size: 1.25rem;
    color: var(--primary);
    transition: transform 0.2s;
}

.nav-item:hover i {
    transform: translateY(-2px);
    color: var(--accent);
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid white;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    padding: 4rem 0;
    color: white;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* CATEGORIES */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.category-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.category-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

/* ULTRA MODERN CARD */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-image {
    width: 100%;
    height: 250px;
    /* Biraz daha uzun */
    position: relative;
    background: #f8fafc;
    overflow: hidden;
    padding: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Resmi tam doldur */
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-category {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: auto;
}

/* Button Group */
.product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-cart {
    flex: 1;
    background: #f1f5f9;
    color: var(--text-main);
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: 0.2s;
}

.btn-cart:hover {
    background: #e2e8f0;
}

.btn-buy {
    flex: 1;
    background: var(--accent);
    color: var(--primary);
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: 0.2s;
}

.btn-buy:hover {
    background: var(--accent-hover);
}

.sidebar {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-title {
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-muted);
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-list a:hover,
.filter-list a.active {
    color: var(--accent);
    padding-left: 5px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    position: relative;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.campaign-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
    .campaign-badge {
        font-size: 0.65rem;
        padding: 2px 8px;
        right: 5px;
        top: 5px;
    }
}

.product-image {
    width: 100%;
    height: 200px;
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: auto;
    margin-bottom: 1rem;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-input);
    color: var(--text-main);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-to-cart-btn:hover {
    background: var(--primary);
    color: white;
}

/* MOBILE RESPONSIVE */
.mobile-nav-toggle {
    display: none;
}

/* MOBILE BOTTOM NAV */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    height: 60px;
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #e2e8f0;
}

.mobile-bottom-nav .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
    text-decoration: none;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.25rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.mobile-bottom-nav .nav-item.active {
    color: var(--accent);
}

.mobile-bottom-nav .nav-item.active i {
    color: var(--accent);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: white;
    color: var(--text-main);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 300px;
    border-left: 4px solid var(--accent);
    animation: slideIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.success {
    border-color: var(--success);
}

.toast.error {
    border-color: var(--danger);
}

.toast i {
    font-size: 1.25rem;
}

.toast.success i {
    color: var(--success);
}

.toast.error i {
    color: var(--danger);
}

/* PRODUCT DETAIL SPECIFIC */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 900px) {

    .products-layout,
    .product-detail-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 0;
        /* Boşluk oluşturmaması için sıfırlandı */
        margin-bottom: 60px;
        /* İçeriğin nav altında kalmaması için margin kullan */
    }

    .mobile-bottom-nav {
        display: flex;
        bottom: 0;
        margin: 0;
        padding-bottom: env(safe-area-inset-bottom);
        /* iOS Çentik Desteği */
        background: white;
        /* Arka plan rengi */
    }

    .main-header .container {
        padding: 0 1rem;
        justify-content: center;
        /* Center logo */
    }

    .brand-logo {
        font-size: 2rem;
        /* Büyütüldü */
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 0.5rem 0;
        /* Biraz boşluk */
    }

    .hero {
        text-align: center;
        padding: 3rem 0;
        min-height: auto;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: 1.8rem;
        /* Küçültüldü */
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .hero .btn {
        width: 100%;
        /* Butonlar tam genişlik */
        margin-bottom: 0.5rem;
        justify-content: center;
    }

    .hero div[style*="display: flex"] {
        flex-direction: column;
        /* Butonları alt alta al */
        gap: 0.5rem;
    }

    .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(245, 158, 11, 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, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

/* Arkaplan Efekti (Glow) */
.hero-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 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;
    -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: #0f172a;
    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(245, 158, 11, 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(245, 158, 11, 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;
}