@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #ff6b00; /* Canlı oto bakım teması turuncu */
    --primary-hover: #e05e00;
    --primary-light: rgba(255, 107, 0, 0.1);
    --secondary: #0f172a; /* Gece mavisi / koyu slate */
    --secondary-light: #1e293b;
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-main: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.85);
    --border-color: #e2e8f0;
    --success: #10b981;
    --danger: #ef4444;
    --white: #ffffff;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* --- HEADER / NAV BAR --- */
.header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white);
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon-btn {
    position: relative;
    color: var(--white);
    font-size: 20px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
}

.cart-icon-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--secondary);
}

.admin-link-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
}

.admin-link-btn:hover {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}

/* Site Logo Resmi */
.site-logo-img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

/* Hamburger Menü Butonu (Gizli Varsayılan) */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--primary);
}

/* Drawer Header ve Elementleri Varsayılan Gizleme */
.nav-drawer-header {
    display: none;
}

.search-form-mobile {
    display: none;
}

.drawer-footer-actions {
    display: none;
}


/* --- HERO SLIDER --- */
.slider-container {
    position: relative;
    height: 480px;
    width: 100%;
    overflow: hidden;
    background-color: var(--secondary);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.5) 50%, rgba(15,23,42,0.2) 100%);
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

.slide-content {
    position: relative;
    z-index: 20;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    color: var(--white);
}

.slide-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.2s;
}

.slide-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 30px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.4s;
}

.slide.active .slide-title,
.slide.active .slide-desc {
    transform: translateY(0);
    opacity: 1;
}

.slide-btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
    transform: scale(1);
}

.slide-btn:hover {
    background-color: var(--primary-hover);
    transform: scale(1.03);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary);
    width: 28px;
    border-radius: 6px;
}

/* --- MAIN CONTAINER --- */
.main-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    min-height: 500px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* --- PRODUCT GRID --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* --- 3-Grid HomePage Custom layout --- */
.home-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .home-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .home-product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 0, 0.3);
}

.product-image-container {
    position: relative;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    background-color: #f1f5f9;
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--danger);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
    line-height: 1.4;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: auto;
}

.original-price {
    font-size: 16px;
    text-decoration: line-through;
    color: var(--text-muted);
}

.current-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary);
}

.discounted .current-price {
    color: var(--danger);
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.35);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--border-color);
    color: var(--secondary);
}

.btn-outline:hover {
    border-color: var(--secondary);
    background-color: var(--secondary);
    color: var(--white);
}

/* --- CATALOG LAYOUT (PRODUCTS PAGE) --- */
.catalog-container {
    display: flex;
    gap: 30px;
}

@media (max-width: 768px) {
    .catalog-container {
        flex-direction: column;
    }
}

.sidebar {
    width: 280px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
    }
}

.filter-box {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 90px;
}

.filter-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
}

.filter-item a:hover, .filter-item.active a {
    background-color: var(--primary-light);
    color: var(--primary);
}

.catalog-content {
    flex-grow: 1;
}

/* --- PRODUCT DETAIL PAGE --- */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

.detail-img-box {
    background: #f1f5f9;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 450px;
}

.detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info {
    display: flex;
    flex-direction: column;
}

.detail-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.detail-price-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    background: var(--bg-main);
    padding: 15px 25px;
    border-radius: var(--radius-sm);
    width: fit-content;
}

.detail-desc {
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.7;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.qty-btn-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.qty-input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 48px;
}

.qty-btn {
    background: transparent;
    border: none;
    width: 40px;
    height: 100%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.qty-btn:hover {
    background-color: var(--border-color);
}

.qty-input {
    width: 50px;
    height: 100%;
    border: none;
    border-left: 2px solid var(--border-color);
    border-right: 2px solid var(--border-color);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    outline: none;
}

/* --- CROSS SELL SECTION --- */
.cross-sell-section {
    margin-top: 50px;
}

/* --- SHOPPING CART PAGE --- */
.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.cart-layout > * {
    min-width: 0;
}

@media (max-width: 992px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
    .cart-layout > * {
        min-width: 0;
        width: 100%;
        overflow: hidden;
    }
}

.cart-items-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Dinamik Kargo Barem Barı */
.shipping-progress-container {
    background: var(--primary-light);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 24px;
}

.shipping-progress-text {
    font-weight: 600;
    color: var(--secondary);
    font-size: 15px;
    margin-bottom: 12px;
}

.shipping-progress-text strong {
    color: var(--primary);
}

.shipping-progress-bar-bg {
    background-color: rgba(226, 232, 240, 0.8);
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.shipping-progress-bar {
    background: linear-gradient(90deg, var(--primary) 0%, #ff8c00 100%);
    height: 100%;
    width: 0%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 5px;
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive table {
    width: 100%;
    min-width: 550px;
}

.cart-upsell-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    text-align: left;
    padding: 12px 10px;
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 14px;
}

.cart-table td {
    padding: 20px 10px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background-color: #f1f5f9;
}

.cart-item-title {
    font-weight: 600;
    color: var(--secondary);
}

.cart-remove-btn {
    color: var(--danger);
    cursor: pointer;
    font-weight: 500;
    font-size: 13px;
    background: transparent;
    border: none;
}

.cart-remove-btn:hover {
    text-decoration: underline;
}

.cart-summary-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 90px;
}

.summary-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-main);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid var(--border-color);
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
}

/* --- CHECKOUT PAGE --- */
.checkout-layout {
    display: grid;
    grid-template-columns: 1.7fr 1.3fr;
    gap: 30px;
}

@media (max-width: 992px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

.checkout-form-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 15px;
    outline: none;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.checkout-choices {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.choice-box {
    flex: 1;
    border: 2px solid var(--border-color);
    padding: 15px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

.choice-box.active {
    border-color: var(--primary);
    background-color: var(--primary-light);
    color: var(--primary);
}

/* --- CONTACT / ABOUT PAGES --- */
.card-content-box {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 4px;
}

.contact-item-text p {
    color: var(--text-muted);
    font-size: 14px;
}

/* --- FOOTER & CONTACT BUTTONS --- */
.footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 60px 0 20px;
    border-top: 5px solid var(--primary);
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* SAĞ ALT SABİT (FIXED) BUTONLAR */
.fixed-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fixed-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    position: relative;
}

.fixed-btn-whatsapp {
    background-color: #25D366;
    animation: pulse 2s infinite;
}

.fixed-btn-whatsapp:hover {
    background-color: #20ba59;
}

.fixed-btn-phone {
    background-color: #007bff;
    animation: pulse-phone 2s infinite;
    animation-delay: 0.5s;
}

.fixed-btn-phone:hover {
    background-color: #0069d9;
}

/* Kalp Atışı (Pulse) Animasyon Tanımları */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-phone {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.6);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

/* AJAX Toast Bildirim Penceresi */
.toast-msg {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 10000;
    background: var(--secondary);
    color: var(--white);
    padding: 16px 28px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--primary);
    font-weight: 600;
    transform: translateX(200px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-msg.show {
    transform: translateX(0);
    opacity: 1;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .fixed-contact-buttons {
        bottom: 20px;
        right: 20px;
    }
    .fixed-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    .slide-title {
        font-size: 32px;
    }
    .slide-desc {
        font-size: 15px;
    }
}

/* Mobil Uyumlu Header Responsive Düzenlemeler */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .search-form-desktop, .admin-link-btn {
        display: none !important;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: 0;
        width: 290px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: -5px 0 25px rgba(0,0,0,0.5);
        padding: 30px;
        display: flex;
        flex-direction: column;
        z-index: 10000;
        visibility: hidden;
        opacity: 0;
        transform: translate3d(100%, 0, 0);
        transition: transform 0.4s cubic-bezier(0.1, 0.9, 0.2, 1), opacity 0.4s ease, visibility 0.4s;
    }

    .nav-container.open {
        visibility: visible;
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .nav-drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .drawer-title {
        color: var(--white);
        font-size: 20px;
        font-weight: 700;
    }

    .drawer-close {
        background: transparent;
        border: none;
        color: var(--white);
        font-size: 24px;
        cursor: pointer;
        transition: var(--transition);
    }

    .drawer-close:hover {
        color: var(--primary);
    }

    .search-form-mobile {
        display: flex;
        position: relative;
        width: 100%;
        margin-bottom: 25px;
    }

    .search-form-mobile input {
        width: 100%;
        padding: 12px 45px 12px 16px;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(255,255,255,0.15);
        background: rgba(255,255,255,0.06);
        color: var(--white);
        outline: none;
        font-size: 15px;
        transition: var(--transition);
    }

    .search-form-mobile input:focus {
        border-color: var(--primary);
        background: rgba(255,255,255,0.1);
    }

    .search-form-mobile button {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 45px;
        background: transparent;
        border: none;
        color: rgba(255,255,255,0.6);
        font-size: 16px;
        cursor: pointer;
        transition: var(--transition);
    }

    .search-form-mobile button:hover {
        color: var(--primary);
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .nav-link {
        font-size: 18px;
        display: block;
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-link::after {
        display: none;
    }

    .drawer-footer-actions {
        display: block;
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.08);
        width: 100%;
    }

    .admin-link-btn-mobile {
        display: block;
        background: var(--primary);
        color: var(--white);
        padding: 14px 20px;
        border-radius: var(--radius-sm);
        font-size: 15px;
        font-weight: 600;
        text-align: center;
        box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
        transition: var(--transition);
    }

    .admin-link-btn-mobile:hover {
        background: var(--primary-hover);
        transform: translateY(-2px);
    }

    /* Cart Page Mobile Adjustments */
    .cart-table th, .cart-table td {
        padding: 12px 8px;
        font-size: 13px;
    }
    .cart-item-img {
        width: 55px;
        height: 55px;
    }
    .cart-item-title {
        font-size: 13px;
    }
    .cart-items-card {
        padding: 15px;
    }
    .cart-upsell-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .cart-upsell-grid {
        grid-template-columns: 1fr;
    }
}
